search for: bb1_7

Displaying 2 results from an estimated 2 matches for "bb1_7".

Did you mean: bb1_1
2010 Jan 28
2
[LLVMdev] llc generated machine assembly code for NASM
...; %while ; Loop Depth 1 ; Loop Header ; Inner Loop cmp DWORD PTR [_gv], 0 je $BB1_7 $BB1_3: ; %whilebody ; Loop Depth 1 ; Loop Header is BB1_2 ; Inner...
2006 Oct 18
0
[LLVMdev] emitting jump tables
I am currently able to emit jump tables, but I cannot use then because I cant figure out how to add its address to the constant pool. For example, if I have the jump table ------------------------------------- .JTI1_0: .word .BB1_6 .word .BB1_7 .word .BB1_1 .word .BB1_2 ------------------------------------- the address ".JTI1_0" must be in a constant pool: --------------------------------- .xyz .word .JTI1_0 .... ldr r1, .xyz add r0, r0, r1 ldr r0, [r0] bx r0 --------------------------------- I inten...