brintos

brintos / llvm-project-archived public Read only

0
0
Text · 598 B · a9fb286 Raw
18 lines · plain
1; Test general-dynamic TLS access optimizations.2;3; If we access two different TLS variables, we need two calls to4; __tls_get_offset, but should load _GLOBAL_OFFSET_TABLE only once.5;6; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "__tls_get_offset" | count 27; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "_GLOBAL_OFFSET_TABLE_" | count 18 9@x = thread_local global i32 010@y = thread_local global i32 011 12define i32 @foo() {13  %valx = load i32, ptr @x14  %valy = load i32, ptr @y15  %add = add nsw i32 %valx, %valy16  ret i32 %add17}18