mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 06:24:58 +00:00
![Chih-Hung Hsieh](/assets/img/avatar_default.png)
The 'common' section TLS is not implemented. Current C/C++ TLS variables are not placed in common section. DWARF debug info to get the address of TLS variables is not generated yet. clang and driver changes in http://reviews.llvm.org/D10524 Added -femulated-tls flag to select the emulated TLS model, which will be used for old targets like Android that do not support ELF TLS models. Added TargetLowering::LowerToTLSEmulatedModel as a target-independent function to convert a SDNode of TLS variable address to a function call to __emutls_get_address. Added into lib/Target/*/*ISelLowering.cpp to call LowerToTLSEmulatedModel for TLSModel::Emulated. Although all targets supporting ELF TLS models are enhanced, emulated TLS model has been tested only for Android ELF targets. Modified AsmPrinter.cpp to print the emutls_v.* and emutls_t.* variables for emulated TLS variables. Modified DwarfCompileUnit.cpp to skip some DIE for emulated TLS variabls. TODO: Add proper DIE for emulated TLS variables. Added new unit tests with emulated TLS. Differential Revision: http://reviews.llvm.org/D10522 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243438 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
984 B
LLVM
35 lines
984 B
LLVM
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi | \
|
|
; RUN: grep "tbss"
|
|
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi | \
|
|
; RUN: FileCheck %s -check-prefix=CHECK -check-prefix=NOEMU
|
|
; RUN: llc < %s -emulated-tls -march=arm -mtriple=arm-linux-gnueabi | \
|
|
; RUN: FileCheck %s -check-prefix=CHECK -check-prefix=EMU
|
|
|
|
%struct.anon = type { i32, i32 }
|
|
@teste = internal thread_local global %struct.anon zeroinitializer ; <%struct.anon*> [#uses=1]
|
|
|
|
define i32 @main() {
|
|
entry:
|
|
%tmp2 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @teste, i32 0, i32 0), align 8 ; <i32> [#uses=1]
|
|
ret i32 %tmp2
|
|
}
|
|
|
|
; CHECK-LABEL: main:
|
|
; NOEMU-NOT: __emutls_get_address
|
|
|
|
; NOEMU: .section .tbss
|
|
; NOEMU-LABEL: teste:
|
|
; NOEMU-NEXT: .zero 8
|
|
|
|
; CHECK-NOT: __emutls_t.teste
|
|
|
|
; EMU: .align 2
|
|
; EMU-LABEL: __emutls_v.teste:
|
|
; EMU-NEXT: .long 8
|
|
; EMU-NEXT: .long 4
|
|
; EMU-NEXT: .long 0
|
|
; EMU-NEXT: .long 0
|
|
|
|
; CHECK-NOT: teste:
|
|
; CHECK-NOT: __emutls_t.teste
|