teja tamboli
2013-Mar-08 03:39 UTC
[LLVMdev] Tool to convert to backend assembly instruction file
Hello, I am looking for tool to convert file from either (.s) bytecode or (.bc) bitcode to .asm file. Basically assembly instruction file for my x86 backend. I think so we can use llvm-objdump. However I am not able to figure out its exact options. Could you please tell me how to do that? -- Thanks, Teja -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130307/fd63a141/attachment.html>
Chris Cadwallader
2013-Mar-08 18:50 UTC
[LLVMdev] Tool to convert to backend assembly instruction file
Teja, Your mention of .s being bytecode confuses me, but if you're asking how to lower a bitcode (.bc) or IR file (.ll) to assembly (.s) than llc is the tool you are looking for. llc -O2 path/to/bitcode/input.bc -o output.s -Chris On Mar 7, 2013, at 10:39 PM, teja tamboli wrote:> Hello, > > I am looking for tool to convert file from either (.s) bytecode or (.bc) bitcode to .asm file. Basically assembly instruction file for my x86 backend. I think so we can use llvm-objdump. However I am not able to figure out its exact options. Could you please tell me how to do that? > > -- > Thanks, > Teja > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
teja tamboli
2013-Mar-09 00:04 UTC
[LLVMdev] Tool to convert to backend assembly instruction file
Hi Chris, I am looking for assembly low level machine instruction file. So, input file can be either IR bytecode or executable bit code file and I want output as low level machine instruction file. Assembly file having instructions like mov, push, pop, add, sub etc etc. Command which can take LLVM specific bytecode or bitcode as input and generates assembly file in the output. Thanks, Teja On Fri, Mar 8, 2013 at 10:50 AM, Chris Cadwallader <ccadwallader at arxan.com>wrote:> Teja, > > Your mention of .s being bytecode confuses me, but if you're asking how to > lower a bitcode (.bc) or IR file (.ll) to assembly (.s) than llc is the > tool you are looking for. > > llc -O2 path/to/bitcode/input.bc -o output.s > > -Chris > > On Mar 7, 2013, at 10:39 PM, teja tamboli wrote: > > > Hello, > > > > I am looking for tool to convert file from either (.s) bytecode or > (.bc) bitcode to .asm file. Basically assembly instruction file for my x86 > backend. I think so we can use llvm-objdump. However I am not able to > figure out its exact options. Could you please tell me how to do that? > > > > -- > > Thanks, > > Teja > > _______________________________________________ > > LLVM Developers mailing list > > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > >-- Regards, Teja -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130308/dab8d8de/attachment.html>
Seemingly Similar Threads
- [LLVMdev] Tool to convert to backend assembly instruction file
- [LLVMdev] Tool to convert to backend assembly instruction file "llc"
- [LLVMdev] Function permutation at IR bytecode level
- [LLVMdev] Inserting dead code in IR byte code
- [LLVMdev] Generating IR bytecode files of httpd source code