Displaying 1 result from an estimated 1 matches for "lbbadpcm_coder_0".
2004 Sep 13
2
[LLVMdev] How could I get memory address for each assemble instruction?
...mble *.bc to assemble code by using llvm-dis command, but what I got is like the following. So how could I get the assemble code like objdump? I mean the memory address for each instruction.
Thanks
Qiuyu
llvm-dis:
.text
.align 16
.globl adpcm_coder
.type adpcm_coder, @function
adpcm_coder:
.LBBadpcm_coder_0: # entry
sub %ESP, 116
mov DWORD PTR [%ESP + 12], %ESI
mov %EAX, DWORD PTR [%ESP + 120]
mov %ECX, DWORD PTR [%ESP + 124]
mov %EDX, DWORD PTR [%ESP + 128]
mov %ESI, DWORD PTR [%ESP + 132]
mov DWORD PTR [%ESP], 0
mov DWORD PTR [%ESP + 44], %EAX
mov DWORD PTR [%ESP + 40], %ECX
objdump :
080...