Displaying 3 results from an estimated 3 matches for "bf2000bd".
2013 Nov 19
0
[LLVMdev] switching ARM modes and integrated-as
On Nov 18, 2013, at 6:18 PM, Greg Fitzgerald <garious at gmail.com> wrote:
> Does the integrated assembler in the ARM backend support switching
> between ARM and Thumb modes in the same file?
Yes.
> I'm having trouble with
> the following assembly:
>
> .thumb_func
> @ Enter ARM mode
> adr r3, 1f
> bx r3
> .align 4
That .align is probably not
2013 Nov 19
2
[LLVMdev] switching ARM modes and integrated-as
Does the integrated assembler in the ARM backend support switching
between ARM and Thumb modes in the same file? I'm having trouble with
the following assembly:
.thumb_func
@ Enter ARM mode
adr r3, 1f
bx r3
.align 4
.code 32
1: push {r7}
mov r7, r12
svc 0x0
pop {r7}
@ Enter thumb mode
adr r3, 2f+1
bx r3
.code 16
2:
bx lr
As a standalone .s file, GNU-as
2013 Nov 19
3
[LLVMdev] switching ARM modes and integrated-as
....edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Makefile
Type: application/octet-stream
Size: 599 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131119/bf2000bd/attachment.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: c.ii
Type: application/octet-stream
Size: 744 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131119/bf2000bd/attachment-0001.obj>