Skip to content

Commit

Permalink
[X86] Fix x86-64 call *foo@tlsdesc(%rax) and support R_386_TLSGOTDESC…
Browse files Browse the repository at this point in the history
… R_386_TLS_DESC_CALL

D18885 emitted 5 bytes for call *foo@tlsdesc(%rax). It should use the
2-byte form instead and let R_X86_64_TLSDESC_CALL apply to the beginning
of the call instruction.

The 2-byte form was deliberately chosen to make ->LE and ->IE relaxation work:

    0:   48 8d 05 00 00 00 00    lea    0x0(%rip),%rax        # 7 <.text+0x7>
                         3: R_X86_64_GOTPC32_TLSDESC     a-0x4
    7:   ff 10                   callq  *(%rax)
                         7: R_X86_64_TLSDESC_CALL        a

=>

    0:   48 c7 c0 fc ff ff ff    mov    $0xfffffffffffffffc,%rax
    7:   66 90                   xchg   %ax,%ax

Also change the symbol type to STT_TLS when VK_TLSCALL or VK_TLSDESC is
seen.

Reviewed By: compnerd

Differential Revision: https://reviews.llvm.org/D62512

llvm-svn: 361910
  • Loading branch information
MaskRay committed May 29, 2019
1 parent 529118f commit 656afe3
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 29 deletions.
2 changes: 2 additions & 0 deletions llvm/lib/MC/MCELFStreamer.cpp
Expand Up @@ -400,6 +400,8 @@ void MCELFStreamer::fixSymbolsInTLSFixups(const MCExpr *expr) {
case MCSymbolRefExpr::VK_INDNTPOFF:
case MCSymbolRefExpr::VK_NTPOFF:
case MCSymbolRefExpr::VK_GOTNTPOFF:
case MCSymbolRefExpr::VK_TLSCALL:
case MCSymbolRefExpr::VK_TLSDESC:
case MCSymbolRefExpr::VK_TLSGD:
case MCSymbolRefExpr::VK_TLSLD:
case MCSymbolRefExpr::VK_TLSLDM:
Expand Down
4 changes: 4 additions & 0 deletions llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
Expand Up @@ -271,6 +271,10 @@ static unsigned getRelocType32(MCContext &Ctx,
assert(Type == RT32_32);
assert(!IsPCRel);
return ELF::R_386_GOTOFF;
case MCSymbolRefExpr::VK_TLSCALL:
return ELF::R_386_TLS_DESC_CALL;
case MCSymbolRefExpr::VK_TLSDESC:
return ELF::R_386_TLS_GOTDESC;
case MCSymbolRefExpr::VK_TPOFF:
assert(Type == RT32_32);
assert(!IsPCRel);
Expand Down
20 changes: 17 additions & 3 deletions llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
Expand Up @@ -524,9 +524,23 @@ void X86MCCodeEmitter::emitMemModRMByte(const MCInst &MI, unsigned Op,
// indirect register encoding, this handles addresses like [EAX]. The
// encoding for [EBP] with no displacement means [disp32] so we handle it
// by emitting a displacement of 0 below.
if (Disp.isImm() && Disp.getImm() == 0 && BaseRegNo != N86::EBP) {
EmitByte(ModRMByte(0, RegOpcodeField, BaseRegNo), CurByte, OS);
return;
if (BaseRegNo != N86::EBP) {
if (Disp.isImm() && Disp.getImm() == 0) {
EmitByte(ModRMByte(0, RegOpcodeField, BaseRegNo), CurByte, OS);
return;
}

// If the displacement is @tlscall, treat it as a zero.
if (Disp.isExpr()) {
auto *Sym = dyn_cast<MCSymbolRefExpr>(Disp.getExpr());
if (Sym && Sym->getKind() == MCSymbolRefExpr::VK_TLSCALL) {
// This is exclusively used by call *a@tlscall(base). The relocation
// (R_386_TLSCALL or R_X86_64_TLSCALL) applies to the beginning.
Fixups.push_back(MCFixup::create(0, Sym, FK_NONE, MI.getLoc()));
EmitByte(ModRMByte(0, RegOpcodeField, BaseRegNo), CurByte, OS);
return;
}
}
}

// Otherwise, if the displacement fits in a byte, encode as [REG+disp8].
Expand Down
26 changes: 0 additions & 26 deletions llvm/test/MC/ELF/relocation-tls.s

This file was deleted.

19 changes: 19 additions & 0 deletions llvm/test/MC/X86/tlsdesc-32.s
@@ -0,0 +1,19 @@
# RUN: llvm-mc -triple i386-pc-linux-musl %s | FileCheck --check-prefix=PRINT %s

# RUN: llvm-mc -filetype=obj -triple i386-pc-linux-musl %s -o %t
# RUN: llvm-readelf -s %t | FileCheck --check-prefix=SYM %s
# RUN: llvm-objdump -dr --no-show-raw-insn %t | FileCheck %s

# PRINT: leal a@tlsdesc(%ebx), %eax
# PRINT-NEXT: calll *a@tlscall(%eax)

# SYM: TLS GLOBAL DEFAULT UND a

# CHECK: 0: leal (%ebx), %eax
# CHECK-NEXT: 00000002: R_386_TLS_GOTDESC a
# CHECK-NEXT: 6: calll *(%eax)
# CHECK-NEXT: 00000006: R_386_TLS_DESC_CALL a

leal a@tlsdesc(%ebx), %eax
call *a@tlscall(%eax)
addl %gs:0, %eax
19 changes: 19 additions & 0 deletions llvm/test/MC/X86/tlsdesc-64.s
@@ -0,0 +1,19 @@
# RUN: llvm-mc -triple x86_64-pc-linux-musl %s | FileCheck --check-prefix=PRINT %s

# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-musl %s -o %t
# RUN: llvm-readelf -s %t | FileCheck --check-prefix=SYM %s
# RUN: llvm-objdump -dr --no-show-raw-insn %t | FileCheck --match-full-lines %s

# PRINT: leaq a@tlsdesc(%rip), %rax
# PRINT-NEXT: callq *a@tlscall(%rax)

# SYM: TLS GLOBAL DEFAULT UND a

# CHECK: 0: leaq (%rip), %rax
# CHECK-NEXT: 0000000000000003: R_X86_64_GOTPC32_TLSDESC a-4
# CHECK-NEXT: 7: callq *(%rax)
# CHECK-NEXT: 0000000000000007: R_X86_64_TLSDESC_CALL a

leaq a@tlsdesc(%rip), %rax
call *a@tlscall(%rax)
addq %fs:0, %rax

0 comments on commit 656afe3

Please sign in to comment.