diff options
author | David Peixotto <dpeixott@codeaurora.org> | 2013-12-19 18:12:36 +0000 |
---|---|---|
committer | David Peixotto <dpeixott@codeaurora.org> | 2013-12-19 18:12:36 +0000 |
commit | e407d093e82b654d214877fecdbf75975a97c635 (patch) | |
tree | ce56821cb41b2ed8964323be9d23574f25f7e6aa /llvm/test/MC/ARM/ldr-pseudo-parse-errors.s | |
parent | e6153933565571e7e142facea5b5ea1a0e408d34 (diff) | |
download | bcm5719-llvm-e407d093e82b654d214877fecdbf75975a97c635.tar.gz bcm5719-llvm-e407d093e82b654d214877fecdbf75975a97c635.zip |
Implement the ldr-pseudo opcode for ARM assembly
The ldr-pseudo opcode is a convenience for loading 32-bit constants.
It is converted into a pc-relative load from a constant pool. For
example,
ldr r0, =0x10001
ldr r1, =bar
will generate this output in the final assembly
ldr r0, .Ltmp0
ldr r1, .Ltmp1
...
.Ltmp0: .long 0x10001
.Ltmp1: .long bar
Sketch of the LDR pseudo implementation:
Keep a map from Section => ConstantPool
When parsing ldr r0, =val
parse val as an MCExpr
get ConstantPool for current Section
Label = CreateTempSymbol()
remember val in ConstantPool at next free slot
add operand to ldr that is MCSymbolRef of Label
On finishParse() callback
Write out all non-empty constant pools
for each Entry in ConstantPool
Emit Entry.Label
Emit Entry.Value
Possible improvements to be added in a later patch:
1. Does not convert load of small constants to mov
(e.g. ldr r0, =0x1 => mov r0, 0x1)
2. Does reuse constant pool entries for same constant
The implementation was tested for ARM, Thumb1, and Thumb2 targets on
linux and darwin.
llvm-svn: 197708
Diffstat (limited to 'llvm/test/MC/ARM/ldr-pseudo-parse-errors.s')
-rw-r--r-- | llvm/test/MC/ARM/ldr-pseudo-parse-errors.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/MC/ARM/ldr-pseudo-parse-errors.s b/llvm/test/MC/ARM/ldr-pseudo-parse-errors.s new file mode 100644 index 00000000000..2e6114d6fe0 --- /dev/null +++ b/llvm/test/MC/ARM/ldr-pseudo-parse-errors.s @@ -0,0 +1,10 @@ +@RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s 2>&1 | FileCheck %s +@RUN: not llvm-mc -triple=armv7-apple-darwin < %s 2>&1 | FileCheck %s + +.text +bar: + mov r0, =0x101 +@ CHECK: error: unexpected token in operand +@ CHECK: mov r0, =0x101 +@ CHECK: ^ + |