mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
49d9dc4dd2
U test/CodeGen/ARM/tls2.ll U test/CodeGen/ARM/arm-negative-stride.ll U test/CodeGen/ARM/2009-10-30.ll U test/CodeGen/ARM/globals.ll U test/CodeGen/ARM/str_pre-2.ll U test/CodeGen/ARM/ldrd.ll U test/CodeGen/ARM/2009-10-27-double-align.ll U test/CodeGen/Thumb2/thumb2-strb.ll U test/CodeGen/Thumb2/ldr-str-imm12.ll U test/CodeGen/Thumb2/thumb2-strh.ll U test/CodeGen/Thumb2/thumb2-ldr.ll U test/CodeGen/Thumb2/thumb2-str_pre.ll U test/CodeGen/Thumb2/thumb2-str.ll U test/CodeGen/Thumb2/thumb2-ldrh.ll U utils/TableGen/TableGen.cpp U utils/TableGen/DisassemblerEmitter.cpp D utils/TableGen/RISCDisassemblerEmitter.h D utils/TableGen/RISCDisassemblerEmitter.cpp U Makefile.rules U lib/Target/ARM/ARMInstrNEON.td U lib/Target/ARM/Makefile U lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp U lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp U lib/Target/ARM/AsmPrinter/ARMInstPrinter.h D lib/Target/ARM/Disassembler U lib/Target/ARM/ARMInstrFormats.td U lib/Target/ARM/ARMAddressingModes.h U lib/Target/ARM/Thumb2ITBlockPass.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98640 91177308-0d34-0410-b5e6-96231b3b80d8
76 lines
2.0 KiB
LLVM
76 lines
2.0 KiB
LLVM
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=static | FileCheck %s -check-prefix=DarwinStatic
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic | FileCheck %s -check-prefix=DarwinDynamic
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=pic | FileCheck %s -check-prefix=DarwinPIC
|
|
; RUN: llc < %s -mtriple=arm-linux-gnueabi -relocation-model=pic | FileCheck %s -check-prefix=LinuxPIC
|
|
|
|
@G = external global i32
|
|
|
|
define i32 @test1() {
|
|
%tmp = load i32* @G
|
|
ret i32 %tmp
|
|
}
|
|
|
|
; DarwinStatic: _test1:
|
|
; DarwinStatic: ldr r0, LCPI1_0
|
|
; DarwinStatic: ldr r0, [r0]
|
|
; DarwinStatic: bx lr
|
|
|
|
; DarwinStatic: .align 2
|
|
; DarwinStatic: LCPI1_0:
|
|
; DarwinStatic: .long {{_G$}}
|
|
|
|
|
|
; DarwinDynamic: _test1:
|
|
; DarwinDynamic: ldr r0, LCPI1_0
|
|
; DarwinDynamic: ldr r0, [r0]
|
|
; DarwinDynamic: ldr r0, [r0]
|
|
; DarwinDynamic: bx lr
|
|
|
|
; DarwinDynamic: .align 2
|
|
; DarwinDynamic: LCPI1_0:
|
|
; DarwinDynamic: .long L_G$non_lazy_ptr
|
|
|
|
; DarwinDynamic: .section __DATA,__nl_symbol_ptr,non_lazy_symbol_pointers
|
|
; DarwinDynamic: .align 2
|
|
; DarwinDynamic: L_G$non_lazy_ptr:
|
|
; DarwinDynamic: .indirect_symbol _G
|
|
; DarwinDynamic: .long 0
|
|
|
|
|
|
|
|
; DarwinPIC: _test1:
|
|
; DarwinPIC: ldr r0, LCPI1_0
|
|
; DarwinPIC: LPC1_0:
|
|
; DarwinPIC: ldr r0, [pc, +r0]
|
|
; DarwinPIC: ldr r0, [r0]
|
|
; DarwinPIC: bx lr
|
|
|
|
; DarwinPIC: .align 2
|
|
; DarwinPIC: LCPI1_0:
|
|
; DarwinPIC: .long L_G$non_lazy_ptr-(LPC1_0+8)
|
|
|
|
; DarwinPIC: .section __DATA,__nl_symbol_ptr,non_lazy_symbol_pointers
|
|
; DarwinPIC: .align 2
|
|
; DarwinPIC: L_G$non_lazy_ptr:
|
|
; DarwinPIC: .indirect_symbol _G
|
|
; DarwinPIC: .long 0
|
|
|
|
|
|
|
|
; LinuxPIC: test1:
|
|
; LinuxPIC: ldr r0, .LCPI1_0
|
|
; LinuxPIC: ldr r1, .LCPI1_1
|
|
|
|
; LinuxPIC: .LPC1_0:
|
|
; LinuxPIC: add r0, pc, r0
|
|
; LinuxPIC: ldr r0, [r1, +r0]
|
|
; LinuxPIC: ldr r0, [r0]
|
|
; LinuxPIC: bx lr
|
|
|
|
; LinuxPIC: .align 2
|
|
; LinuxPIC: .LCPI1_0:
|
|
; LinuxPIC: .long _GLOBAL_OFFSET_TABLE_-(.LPC1_0+8)
|
|
; LinuxPIC: .align 2
|
|
; LinuxPIC: .LCPI1_1:
|
|
; LinuxPIC: .long G(GOT)
|