HomeSort by relevance Sort by last modified time
    Searched refs:Reloc (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/llvm/include/llvm/MC/
MCCodeGenInfo.h 25 Reloc::Model RelocationModel;
36 void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
40 Reloc::Model getRelocationModel() const { return RelocationModel; }
  /external/llvm/lib/MC/
MCCodeGenInfo.cpp 18 void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/Sparc/
SparcCodeEmitter.cpp 54 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
90 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc) const;
91 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
92 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
93 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc) const;
244 llvm_unreachable("unknown reloc!");
248 unsigned Reloc) const {
249 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
255 emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
257 Reloc, ES, 0, 0))
    [all...]
SparcTargetMachine.h 28 Reloc::Model RM, CodeModel::Model CM,
65 Reloc::Model RM, CodeModel::Model CM,
77 Reloc::Model RM, CodeModel::Model CM,
SparcTargetMachine.cpp 31 Reloc::Model RM, CodeModel::Model CM,
85 Reloc::Model RM,
97 Reloc::Model RM,
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
70 Reloc::Model RM, CodeModel::Model CM,
81 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/SystemZ/
SystemZSubtarget.cpp 55 // Return true if GV binds locally under reloc model RM.
56 static bool bindsLocally(const GlobalValue *GV, Reloc::Model RM) {
58 if (RM == Reloc::Static)
65 Reloc::Model RM,
SystemZTargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
74 const TargetOptions &Options, Reloc::Model RM,
85 Reloc::Model RM, CodeModel::Model CM,
95 const TargetOptions &Options, Reloc::Model RM,
107 const TargetOptions &Options, Reloc::Model RM,
118 Reloc::Model RM, CodeModel::Model CM,
129 Reloc::Model RM, CodeModel::Model CM,
ARMTargetMachine.cpp 51 Reloc::Model RM, CodeModel::Model CM,
75 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM, CodeModel::Model CM,
98 Reloc::Model RM, CodeModel::Model CM,
107 Reloc::Model RM, CodeModel::Model CM,
119 Reloc::Model RM, CodeModel::Model CM,
128 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.h 32 const TargetOptions &Options, Reloc::Model RM,
79 Reloc::Model RM, CodeModel::Model CM,
90 Reloc::Model RM, CodeModel::Model CM,
MipsCodeEmitter.cpp 71 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
93 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
95 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
96 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
97 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
98 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc) const;
312 void MipsCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
314 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
320 emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
322 Reloc, ES, 0, 0))
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 35 const TargetOptions &Options, Reloc::Model RM,
85 Reloc::Model RM, CodeModel::Model CM,
94 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.h 32 Reloc::Model RM, CodeModel::Model CM,
76 Reloc::Model RM, CodeModel::Model CM,
87 Reloc::Model RM, CodeModel::Model CM,
  /frameworks/compile/libbcc/include/bcc/Support/
CompilerConfig.h 51 llvm::Reloc::Model mRelocModel;
96 inline llvm::Reloc::Model getRelocationModel() const
98 inline void setRelocationModel(llvm::Reloc::Model pRelocModel)
  /external/llvm/lib/Target/CppBackend/
CPPTargetMachine.h 27 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 36 Reloc::Model RM, CodeModel::Model CM,
41 if (getRelocationModel() == Reloc::Static) {
50 if (getRelocationModel() == Reloc::PIC_)
53 assert(getRelocationModel() == Reloc::DynamicNoPIC);
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 69 static MCCodeGenInfo *createHexagonMCCodeGenInfo(StringRef TT, Reloc::Model RM,
75 X->InitMCCodeGenInfo(Reloc::Static, CM, OL);
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 44 void printRelocation(const RelocationRef &Reloc);
46 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
253 for (const RelocationRef &Reloc : Section.relocations())
254 printRelocation(Reloc);
288 for (const RelocationRef &Reloc : Section.relocations()) {
295 printRelocation(Reloc);
305 void MachODumper::printRelocation(const RelocationRef &Reloc) {
306 return printRelocation(Obj, Reloc);
310 const RelocationRef &Reloc) {
313 if (error(Reloc.getOffset(Offset))
    [all...]
  /external/llvm/lib/Target/
TargetMachineC.cpp 108 LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,
110 Reloc::Model RM;
111 switch (Reloc){
113 RM = Reloc::Static;
116 RM = Reloc::PIC_;
119 RM = Reloc::DynamicNoPIC;
122 RM = Reloc::Default;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUTargetMachine.h 44 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/include/llvm/Support/
CodeGen.h 24 namespace Reloc {
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/MSP430/
MSP430TargetMachine.cpp 30 Reloc::Model RM, CodeModel::Model CM,
MSP430TargetMachine.h 32 Reloc::Model RM, CodeModel::Model CM,

Completed in 352 milliseconds

1 2 3 4 5 6