[MCJIT] Add support for ARM HALF_DIFF relocations to MCJIT.
[oota-llvm.git] / test / ExecutionEngine / RuntimeDyld / ARM / MachO_ARM_PIC_relocations.s
1 # RUN: llvm-mc -triple=armv7s-apple-ios7.0.0 -relocation-model=pic -filetype=obj -o %T/foo.o %s
2 # RUN: llvm-rtdyld -triple=armv7s-apple-ios7.0.0 -verify -check=%s %/T/foo.o
3
4         .syntax unified
5         .section        __TEXT,__text,regular,pure_instructions
6         .globl  bar
7         .align  2
8 bar:
9 # Check lower 16-bits of section difference relocation
10 # rtdyld-check: decode_operand(insn1, 1) = (foo$non_lazy_ptr-(nextPC+8))[15:0]
11 insn1:
12         movw    r0, :lower16:(foo$non_lazy_ptr-(nextPC+8))
13 # Check upper 16-bits of section difference relocation
14 # rtdyld-check: decode_operand(insn2, 2) = (foo$non_lazy_ptr-(nextPC+8))[31:16]
15 insn2:
16         movt    r0, :upper16:(foo$non_lazy_ptr-(nextPC+8))
17 nextPC:
18         add     r1, r0, r0
19
20 # Check stub generation by referencing a common symbol, 'baz'. Check both the
21 # Content of the stub, and the reference to the stub.
22 # Stub should contain '0xe51ff004' (ldr pc, [pc, #-4]), followed by the target.
23 #
24 # rtdyld-check: *{4}(stub_addr(foo.o, __text, baz)) = 0xe51ff004
25 # rtdyld-check: *{4}(stub_addr(foo.o, __text, baz) + 4) = baz
26 #
27 # rtdyld-check: decode_operand(insn3, 0) = stub_addr(foo.o, __text, baz) - (insn3 + 8)
28 insn3:
29         bl      baz
30         bx      lr
31
32 # Add 'aaa' to the common symbols to make sure 'baz' isn't at the start of the
33 # section. This ensures that we test VANILLA relocation addends correctly.
34         .comm   aaa, 4, 2
35         .comm   baz, 4, 2
36         .comm   foo, 4, 2
37
38 # Check that the symbol pointer section entries are fixed up properly:
39 # rtdyld-check: *{4}foo$non_lazy_ptr = foo
40         .section        __DATA,__nl_symbol_ptr,non_lazy_symbol_pointers
41         .align  2
42 foo$non_lazy_ptr:
43         .indirect_symbol        foo
44         .long   0
45
46 .subsections_via_symbols