LLVM  8.0.1
X86TargetObjectFile.h
Go to the documentation of this file.
1 //===-- X86TargetObjectFile.h - X86 Object Info -----------------*- C++ -*-===//
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 
10 #ifndef LLVM_LIB_TARGET_X86_X86TARGETOBJECTFILE_H
11 #define LLVM_LIB_TARGET_X86_X86TARGETOBJECTFILE_H
12 
15 
16 namespace llvm {
17 
18  /// X86_64MachoTargetObjectFile - This TLOF implementation is used for Darwin
19  /// x86-64.
21  public:
23  unsigned Encoding,
24  const TargetMachine &TM,
25  MachineModuleInfo *MMI,
26  MCStreamer &Streamer) const override;
27 
28  // getCFIPersonalitySymbol - The symbol that gets passed to
29  // .cfi_personality.
31  const TargetMachine &TM,
32  MachineModuleInfo *MMI) const override;
33 
34  const MCExpr *getIndirectSymViaGOTPCRel(const MCSymbol *Sym,
35  const MCValue &MV, int64_t Offset,
36  MachineModuleInfo *MMI,
37  MCStreamer &Streamer) const override;
38  };
39 
40  /// This implemenatation is used for X86 ELF targets that don't
41  /// have a further specialization.
43  public:
45  PLTRelativeVariantKind = MCSymbolRefExpr::VK_PLT;
46  }
47 
48  /// Describe a TLS variable address within debug info.
49  const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const override;
50  };
51 
52  /// X86FreeBSDTargetObjectFile - This implementation is used for FreeBSD
53  /// on x86 and x86-64.
55  void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
56  };
57 
58  /// This implementation is used for Fuchsia on x86-64.
60  void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
61  };
62 
63  /// X86LinuxNaClTargetObjectFile - This implementation is used for linux and
64  /// Native Client on x86 and x86-64.
66  void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
67  };
68 
69  /// This implementation is used for Solaris on x86/x86-64.
71  void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
72  };
73 
74 } // end namespace llvm
75 
76 #endif
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
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.
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
Context object for machine code objects.
Definition: MCContext.h:63
void Initialize(MCContext &Ctx, const TargetMachine &TM) override
This method must be called before any actual lowering is done.
This implementation is used for Fuchsia on x86-64.
Streaming machine code generation interface.
Definition: MCStreamer.h:189
This implementation is used for Solaris on x86/x86-64.
X86_64MachoTargetObjectFile - This TLOF implementation is used for Darwin x86-64. ...
X86FreeBSDTargetObjectFile - This implementation is used for FreeBSD on x86 and x86-64.
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.
This implemenatation is used for X86 ELF targets that don't have a further specialization.
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:59
virtual const MCExpr * getDebugThreadLocalSymbol(const MCSymbol *Sym) const
Create a symbol reference to describe the given TLS variable when emitting the address in debug info...
This class contains meta information specific to a module.
X86LinuxNaClTargetObjectFile - This implementation is used for linux and Native Client on x86 and x86...