This patch utilizes the -maix-small-local-exec-tls option added in D155544 to produce a faster access sequence for the local-exec TLS model, where loading from the TOC can be avoided. The patch either produces an addi/la with a displacement off of r13 (the thread pointer) when the address is calculated, or it produces an addi/la followed by a load/store when the address is calculated and used for further accesses. This patch also optimizes this sequence a bit more where we can remove the addi/la when the load/store offset is 0. A follow up patch will be posted to account for when the load/store offset is non-zero, and currently in these situations we keep the addi/la that precedes the load/store. Furthermore, this access sequence is only performed for TLS variables that are less than ~32KB in size. Differential Revision: https://reviews.llvm.org/D155600
70 lines
1.9 KiB
LLVM
70 lines
1.9 KiB
LLVM
; RUN: llc -relocation-model=static -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck %s
|
|
target datalayout = "E-m:e-i64:64-n32:64"
|
|
target triple = "powerpc64-unknown-linux-gnu"
|
|
|
|
%struct.cd = type { i64, i64, i64 }
|
|
|
|
@something = dso_local global [33 x i8] c"this is not really code, but...\0A\00", align 1
|
|
@tls_something = dso_local thread_local global %struct.cd zeroinitializer, align 8
|
|
@extern_something = external global %struct.cd
|
|
|
|
; Function Attrs: nounwind
|
|
define dso_local void @foo() #0 {
|
|
entry:
|
|
tail call void @something() #0
|
|
ret void
|
|
|
|
; CHECK-LABEL: @foo
|
|
; CHECK-DAG: addis [[REG1:[0-9]+]], 2, something@toc@ha
|
|
; CHECK-DAG: std 2, 40(1)
|
|
; CHECK-DAG: addi [[REG3:[0-9]+]], [[REG1]], something@toc@l
|
|
; CHECK-DAG: ld [[REG2:[0-9]+]], 0([[REG3]])
|
|
; CHECK-DAG: ld 11, 16([[REG3]])
|
|
; CHECK-DAG: ld 2, 8([[REG3]])
|
|
; CHECK-DAG: mtctr [[REG2]]
|
|
; CHECK: bctrl
|
|
; CHECK: ld 2, 40(1)
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define dso_local void @bar() #0 {
|
|
entry:
|
|
tail call void @tls_something() #0
|
|
ret void
|
|
|
|
; CHECK-LABEL: @bar
|
|
; CHECK-DAG: addis [[REG1:[0-9]+]], 13, tls_something@tprel@ha
|
|
; CHECK-DAG: std 2, 40(1)
|
|
; CHECK-DAG: addi [[REG3:[0-9]+]], [[REG1]], tls_something@tprel@l
|
|
; CHECK-DAG: ld [[REG2:[0-9]+]], tls_something@tprel@l([[REG1]])
|
|
; CHECK-DAG: ld 11, 16([[REG3]])
|
|
; CHECK-DAG: ld 2, 8([[REG3]])
|
|
; CHECK-DAG: mtctr [[REG2]]
|
|
; CHECK: bctrl
|
|
; CHECK: ld 2, 40(1)
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define dso_local void @ext() #0 {
|
|
entry:
|
|
tail call void @extern_something() #0
|
|
ret void
|
|
|
|
; CHECK-LABEL: @ext
|
|
; CHECK-DAG: addis [[REG1:[0-9]+]], 2, [[NAME:[._A-Za-z0-9]+]]@toc@ha
|
|
; CHECK-DAG: std 2, 40(1)
|
|
; CHECK-DAG: ld [[REG3:[0-9]+]], [[NAME]]@toc@l(3)
|
|
; CHECK-DAG: ld [[REG2:[0-9]+]], 0([[REG3]])
|
|
; CHECK-DAG: ld 11, 16([[REG3]])
|
|
; CHECK-DAG: ld 2, 8([[REG3]])
|
|
; CHECK-DAG: mtctr [[REG2]]
|
|
; CHECK: bctrl
|
|
; CHECK: ld 2, 40(1)
|
|
; CHECK: blr
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|
|
|