Displaying 2 results from an estimated 2 matches for "classllvm_1_1llvmtargetmachin".
Did you mean:
classllvm_1_1llvmtargetmachine
2013 May 22
1
[LLVMdev] How to write output of a backend to a memory buffer instead of a into a file?
Right now, I am using
TargetMachine::addPassesToEmitFile
<http://llvm.org/docs/doxygen/html/classllvm_1_1LLVMTargetMachine.html#a356929c1f0d202e4a9d3202aff1dbb05>
to write the output of a backend to a file. How can I tell LLVM to write
into a memory buffer instead?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130522/47...
2012 Mar 01
2
[LLVMdev] Is there any way to print assembly code of a function compiled by ExecutionEngine?
Hello!
I'm using LLVM's JIT in my project. Is there any way to view assembly
code of functions it generates without disassembling them from the
memory?