LLVM  8.0.1
AArch64TargetObjectFile.cpp
Go to the documentation of this file.
1 //===-- AArch64TargetObjectFile.cpp - AArch64 Object Info -----------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
11 #include "AArch64TargetMachine.h"
13 #include "llvm/IR/Mangler.h"
14 #include "llvm/MC/MCContext.h"
15 #include "llvm/MC/MCExpr.h"
16 #include "llvm/MC/MCStreamer.h"
17 #include "llvm/MC/MCValue.h"
18 using namespace llvm;
19 using namespace dwarf;
20 
21 void AArch64_ELFTargetObjectFile::Initialize(MCContext &Ctx,
22  const TargetMachine &TM) {
24  InitializeELF(TM.Options.UseInitArray);
25  // AARCH64 ELF ABI does not define static relocation type for TLS offset
26  // within a module. Do not generate AT_location for TLS variables.
27  SupportDebugThreadLocalLocation = false;
28 }
29 
33 }
34 
36  const GlobalValue *GV, unsigned Encoding, const TargetMachine &TM,
37  MachineModuleInfo *MMI, MCStreamer &Streamer) const {
38  // On Darwin, we can reference dwarf symbols with foo@GOT-., which
39  // is an indirect pc-relative reference. The default implementation
40  // won't reference using the GOT, so we need this target-specific
41  // version.
42  if (Encoding & (DW_EH_PE_indirect | DW_EH_PE_pcrel)) {
43  const MCSymbol *Sym = TM.getSymbol(GV);
44  const MCExpr *Res =
47  Streamer.EmitLabel(PCSym);
48  const MCExpr *PC = MCSymbolRefExpr::create(PCSym, getContext());
49  return MCBinaryExpr::createSub(Res, PC, getContext());
50  }
51 
53  GV, Encoding, TM, MMI, Streamer);
54 }
55 
57  const GlobalValue *GV, const TargetMachine &TM,
58  MachineModuleInfo *MMI) const {
59  return TM.getSymbol(GV);
60 }
61 
63  const MCSymbol *Sym, const MCValue &MV, int64_t Offset,
64  MachineModuleInfo *MMI, MCStreamer &Streamer) const {
65  assert((Offset+MV.getConstant() == 0) &&
66  "Arch64 does not support GOT PC rel with extra offset");
67  // On ARM64 Darwin, we can reference symbols with foo@GOT-., which
68  // is an indirect pc-relative reference.
69  const MCExpr *Res =
72  Streamer.EmitLabel(PCSym);
73  const MCExpr *PC = MCSymbolRefExpr::create(PCSym, getContext());
74  return MCBinaryExpr::createSub(Res, PC, getContext());
75 }
76 
78  SmallVectorImpl<char> &OutName, const GlobalValue *GV,
79  const TargetMachine &TM) const {
80  // AArch64 does not use section-relative relocations so any global symbol must
81  // be accessed via at least a linker-private symbol.
82  getMangler().getNameWithPrefix(OutName, GV, /* CannotUsePrivateLabel */ true);
83 }
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx)
Definition: MCExpr.h:323
This class represents lattice values for constants.
Definition: AllocatorList.h:24
This represents an "assembler immediate".
Definition: MCValue.h:40
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:42
MCSymbol * getCFIPersonalitySymbol(const GlobalValue *GV, const TargetMachine &TM, MachineModuleInfo *MMI) const override
int64_t getConstant() const
Definition: MCValue.h:47
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
const MCExpr * getIndirectSymViaGOTPCRel(const MCSymbol *Sym, const MCValue &MV, int64_t Offset, MachineModuleInfo *MMI, MCStreamer &Streamer) const override
Get MachO PC relative GOT entry relocation.
const MCExpr * getTTypeGlobalReference(const GlobalValue *GV, unsigned Encoding, const TargetMachine &TM, MachineModuleInfo *MMI, MCStreamer &Streamer) const override
The mach-o version of this method defaults to returning a stub reference.
Context object for machine code objects.
Definition: MCContext.h:63
static const MCBinaryExpr * createSub(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
Definition: MCExpr.h:546
Streaming machine code generation interface.
Definition: MCStreamer.h:189
MCSymbol * createTempSymbol(bool CanBeUnnamed=true)
Create and return a new assembler temporary symbol with a unique but unspecified name.
Definition: MCContext.cpp:217
MCSymbol * getSymbol(const GlobalValue *GV) const
const MCExpr * getTTypeGlobalReference(const GlobalValue *GV, unsigned Encoding, const TargetMachine &TM, MachineModuleInfo *MMI, MCStreamer &Streamer) const override
The mach-o version of this method defaults to returning a stub reference.
unsigned UseInitArray
UseInitArray - Use .init_array instead of .ctors for static constructors.
This file contains constants used for implementing Dwarf debug support.
TargetOptions Options
Definition: TargetMachine.h:97
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
virtual void EmitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc())
Emit a label for Symbol into the current section.
Definition: MCStreamer.cpp:347
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:59
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable&#39;s name.
Definition: Mangler.cpp:112
void Initialize(MCContext &Ctx, const TargetMachine &TM) override
This method must be called before any actual lowering is done.
void getNameWithPrefix(SmallVectorImpl< char > &OutName, const GlobalValue *GV, const TargetMachine &TM) const override
This class contains meta information specific to a module.