mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
0fc8c68b11
ARM symbol variants are written with parens instead of @ like this: .word __GLOBAL_I_a(target1) This commit adds support for parsing these symbol variants in expressions. We introduce a new flag to MCAsmInfo that indicates the parser should use parens to parse the symbol variant. The expression parser is modified to look for symbol variants using parens instead of @ when the corresponding MCAsmInfo flag is true. The MCAsmInfo parens flag is enabled only for ARM on ELF. By adding this flag to MCAsmInfo, we are able to get rid of redundant ARM-specific symbol variants and use the generic variants instead (e.g. VK_GOT instead of VK_ARM_GOT). We use the new UseParensForSymbolVariant attribute in MCAsmInfo to correctly print the symbol variants for arm. To achive this we need to keep a handle to the MCAsmInfo in the MCSymbolRefExpr class that we can check when printing the symbol variant. Updated Tests: Changed case of symbol variant to match the generic kind. test/CodeGen/ARM/tls-models.ll test/CodeGen/ARM/tls1.ll test/CodeGen/ARM/tls2.ll test/CodeGen/Thumb2/tls1.ll test/CodeGen/Thumb2/tls2.ll PR18080 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196424 91177308-0d34-0410-b5e6-96231b3b80d8
118 lines
3.1 KiB
LLVM
118 lines
3.1 KiB
LLVM
; RUN: llc -march=arm -mtriple=arm-linux-gnueabi < %s | FileCheck -check-prefix=CHECK-NONPIC %s
|
|
; RUN: llc -march=arm -mtriple=arm-linux-gnueabi -relocation-model=pic < %s | FileCheck -check-prefix=CHECK-PIC %s
|
|
|
|
|
|
@external_gd = external thread_local global i32
|
|
@internal_gd = internal thread_local global i32 42
|
|
|
|
@external_ld = external thread_local(localdynamic) global i32
|
|
@internal_ld = internal thread_local(localdynamic) global i32 42
|
|
|
|
@external_ie = external thread_local(initialexec) global i32
|
|
@internal_ie = internal thread_local(initialexec) global i32 42
|
|
|
|
@external_le = external thread_local(localexec) global i32
|
|
@internal_le = internal thread_local(localexec) global i32 42
|
|
|
|
; ----- no model specified -----
|
|
|
|
define i32* @f1() {
|
|
entry:
|
|
ret i32* @external_gd
|
|
|
|
; Non-PIC code can use initial-exec, PIC code has to use general dynamic.
|
|
; CHECK-NONPIC-LABEL: f1:
|
|
; CHECK-NONPIC: external_gd(GOTTPOFF)
|
|
; CHECK-PIC-LABEL: f1:
|
|
; CHECK-PIC: external_gd(TLSGD)
|
|
}
|
|
|
|
define i32* @f2() {
|
|
entry:
|
|
ret i32* @internal_gd
|
|
|
|
; Non-PIC code can use local exec, PIC code can use local dynamic,
|
|
; but that is not implemented, so falls back to general dynamic.
|
|
; CHECK-NONPIC-LABEL: f2:
|
|
; CHECK-NONPIC: internal_gd(TPOFF)
|
|
; CHECK-PIC-LABEL: f2:
|
|
; CHECK-PIC: internal_gd(TLSGD)
|
|
}
|
|
|
|
|
|
; ----- localdynamic specified -----
|
|
|
|
define i32* @f3() {
|
|
entry:
|
|
ret i32* @external_ld
|
|
|
|
; Non-PIC code can use initial exec, PIC should use local dynamic,
|
|
; but that is not implemented, so falls back to general dynamic.
|
|
; CHECK-NONPIC-LABEL: f3:
|
|
; CHECK-NONPIC: external_ld(GOTTPOFF)
|
|
; CHECK-PIC-LABEL: f3:
|
|
; CHECK-PIC: external_ld(TLSGD)
|
|
}
|
|
|
|
define i32* @f4() {
|
|
entry:
|
|
ret i32* @internal_ld
|
|
|
|
; Non-PIC code can use local exec, PIC code can use local dynamic,
|
|
; but that is not implemented, so it falls back to general dynamic.
|
|
; CHECK-NONPIC-LABEL: f4:
|
|
; CHECK-NONPIC: internal_ld(TPOFF)
|
|
; CHECK-PIC-LABEL: f4:
|
|
; CHECK-PIC: internal_ld(TLSGD)
|
|
}
|
|
|
|
|
|
; ----- initialexec specified -----
|
|
|
|
define i32* @f5() {
|
|
entry:
|
|
ret i32* @external_ie
|
|
|
|
; Non-PIC and PIC code will use initial exec as specified.
|
|
; CHECK-NONPIC-LABEL: f5:
|
|
; CHECK-NONPIC: external_ie(GOTTPOFF)
|
|
; CHECK-PIC-LABEL: f5:
|
|
; CHECK-PIC: external_ie(GOTTPOFF)
|
|
}
|
|
|
|
define i32* @f6() {
|
|
entry:
|
|
ret i32* @internal_ie
|
|
|
|
; Non-PIC code can use local exec, PIC code use initial exec as specified.
|
|
; CHECK-NONPIC-LABEL: f6:
|
|
; CHECK-NONPIC: internal_ie(TPOFF)
|
|
; CHECK-PIC-LABEL: f6:
|
|
; CHECK-PIC: internal_ie(GOTTPOFF)
|
|
}
|
|
|
|
|
|
; ----- localexec specified -----
|
|
|
|
define i32* @f7() {
|
|
entry:
|
|
ret i32* @external_le
|
|
|
|
; Non-PIC and PIC code will use local exec as specified.
|
|
; CHECK-NONPIC-LABEL: f7:
|
|
; CHECK-NONPIC: external_le(TPOFF)
|
|
; CHECK-PIC-LABEL: f7:
|
|
; CHECK-PIC: external_le(TPOFF)
|
|
}
|
|
|
|
define i32* @f8() {
|
|
entry:
|
|
ret i32* @internal_le
|
|
|
|
; Non-PIC and PIC code will use local exec as specified.
|
|
; CHECK-NONPIC-LABEL: f8:
|
|
; CHECK-NONPIC: internal_le(TPOFF)
|
|
; CHECK-PIC-LABEL: f8:
|
|
; CHECK-PIC: internal_le(TPOFF)
|
|
}
|