Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / tls-03.ll
blobc82939f79bf5225906ebf3f60c07493853f97606
1 ; Test general-dynamic TLS accesses.
3 ; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | FileCheck %s -check-prefix=CHECK-MAIN
4 ; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | FileCheck %s -check-prefix=CHECK-CP
6 @x = thread_local global i32 0
8 ; Call __tls_get_offset to retrieve the symbol's TLS offset.
9 define ptr@foo() {
10 ; CHECK-CP: .LCP{{.*}}:
11 ; CHECK-CP: .quad x@TLSGD
13 ; CHECK-MAIN-LABEL: foo:
14 ; CHECK-MAIN-DAG: larl %r12, _GLOBAL_OFFSET_TABLE_
15 ; CHECK-MAIN-DAG: lgrl %r2, .LCP{{.*}}
16 ; CHECK-MAIN: brasl %r14, __tls_get_offset@PLT:tls_gdcall:x
17 ; CHECK-MAIN: ear [[HIGH:%r[0-5]]], %a0
18 ; CHECK-MAIN: sllg [[TP:%r[0-5]]], [[HIGH]], 32
19 ; CHECK-MAIN: ear [[TP]], %a1
20 ; CHECK-MAIN: agr %r2, [[TP]]
21 ; CHECK-MAIN: br %r14
22   ret ptr@x