31 lines · plain
1;; Test that we don't pad the x86-64 General Dynamic/Local Dynamic TLS code2;; sequence. It uses prefixes to allow linker relaxation. We need to disable3;; prefix or nop padding for it. For simplicity and consistency, disable for4;; Local Dynamic and 32-bit as well.5; RUN: llc -mtriple=i386 -relocation-model=pic -x86-branches-within-32B-boundaries < %s | FileCheck --check-prefixes=CHECK,X86 %s6; RUN: llc -mtriple=x86_64 -relocation-model=pic -x86-branches-within-32B-boundaries < %s | FileCheck --check-prefixes=CHECK,X64 %s7 8@gd = external thread_local global i329@ld = internal thread_local global i32 010 11define i32 @tls_get_addr() {12; CHECK-LABEL: tls_get_addr:13; CHECK: #noautopadding14; X86: leal gd@TLSGD(,%ebx), %eax15; X86: calll ___tls_get_addr@PLT16; X64: data1617; X64: leaq gd@TLSGD(%rip), %rdi18; X64: callq __tls_get_addr@PLT19; CHECK: #autopadding20; CHECK: #noautopadding21; X86: leal ld@TLSLDM(%ebx), %eax22; X86: calll ___tls_get_addr@PLT23; X64: leaq ld@TLSLD(%rip), %rdi24; X64: callq __tls_get_addr@PLT25; CHECK: #autopadding26 %1 = load i32, ptr @gd27 %2 = load i32, ptr @ld28 %3 = add i32 %1, %229 ret i32 %330}31