I added my new custom attribute and I can see it on the memory operands of LLVM IR, is there any way to do so on the Machine Code level as well?
相关问题
- I want to read exif info in image in android. I ca
- CMakeList file to generate LLVM bitcode file from
- Is it possible to use the TestCafe .meta object to
- LLVM OPT not giving optimised file as output.
- Python numba / llvmlite on Debian 8 - i can't
相关文章
- How do I append metadata to an image in Matlab?
- What file sytems support Java UserDefinedFileAttri
- Could a Java compiler reorder function calls?
- Why would a compiler generate this assembly?
- Can atomic loads be merged in the C++ memory model
- Forcing GCC to perform loop unswitching of memcpy
- How to clone or create an AST Stmt node of clang?
- GCC optimization levels. Which is better?
No, there isn't.
Metadata is an LLVM-IR thing. It can be consumed by passes and then used to generate something on the machine code level, but you have to do that yourself (or add metadata which is already used by some pass, such as debug information).