Searched refs:Reloc (Results 1 - 25 of 103) sorted by relevance

12345

/freebsd-10.1-release/contrib/llvm/include/llvm/MC/
H A DMCCodeGenInfo.h25 Reloc::Model RelocationModel;
36 void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
40 Reloc::Model getRelocationModel() const { return RelocationModel; }
/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCCodeGenInfo.cpp18 void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp43 static bool bindsLocally(const GlobalValue *GV, Reloc::Model RM) {
45 if (RM == Reloc::Static)
52 Reloc::Model RM,
H A DSystemZSubtarget.h63 bool isPC32DBLSymbol(const GlobalValue *GV, Reloc::Model RM,
/freebsd-10.1-release/contrib/llvm/lib/Target/Sparc/
H A DSparcCodeEmitter.cpp53 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
85 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc) const;
86 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
87 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
88 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc) const;
230 unsigned Reloc) const {
231 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
237 emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
239 Reloc, ES, 0, 0));
243 emitConstPoolAddress(unsigned CPI, unsigned Reloc) cons
[all...]
H A DSparcTargetMachine.cpp31 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM,
101 Reloc::Model RM,
H A DSparcTargetMachine.h40 Reloc::Model RM, CodeModel::Model CM,
75 Reloc::Model RM, CodeModel::Model CM,
87 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.cpp56 Reloc::Model RelocM) const {
57 if (RelocM == Reloc::Static)
H A DAArch64Subtarget.h59 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
H A DAArch64TargetMachine.h38 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/Mips/
H A DMipsCodeEmitter.cpp70 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
92 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
94 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
95 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
96 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
97 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc) const;
119 void emitGlobalAddressUnaligned(const GlobalValue *GV, unsigned Reloc,
269 void MipsCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc, argument
271 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
277 unsigned Reloc, in
276 emitGlobalAddressUnaligned(const GlobalValue *GV, unsigned Reloc, int Offset) const argument
[all...]
H A DMipsSubtarget.h125 Reloc::Model RM;
148 const std::string &FS, bool little, Reloc::Model RM,
226 Reloc::Model getRelocationModel() const {return RM;}
H A DMipsTargetMachine.h53 Reloc::Model RM, CodeModel::Model CM,
108 Reloc::Model RM, CodeModel::Model CM,
119 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp36 Reloc::Model RM, CodeModel::Model CM,
60 Reloc::Model RM, CodeModel::Model CM,
81 Reloc::Model RM, CodeModel::Model CM,
89 if (getRelocationModel() == Reloc::Static) {
98 if (getRelocationModel() == Reloc::PIC_)
101 assert(getRelocationModel() == Reloc::DynamicNoPIC);
H A DX86TargetMachine.h40 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM, CodeModel::Model CM,
118 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.h51 const TargetOptions &Options, Reloc::Model RM,
103 Reloc::Model RM, CodeModel::Model CM,
112 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.h43 Reloc::Model RM, CodeModel::Model CM,
83 Reloc::Model RM, CodeModel::Model CM,
94 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCTargetDesc.cpp65 static MCCodeGenInfo *createXCoreMCCodeGenInfo(StringRef TT, Reloc::Model RM,
69 if (RM == Reloc::Default) {
70 RM = Reloc::Static;
/freebsd-10.1-release/contrib/llvm/lib/Target/CppBackend/
H A DCPPTargetMachine.h27 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp69 static MCCodeGenInfo *createHexagonMCCodeGenInfo(StringRef TT, Reloc::Model RM,
75 X->InitMCCodeGenInfo(Reloc::Static, CM, OL);
/freebsd-10.1-release/contrib/llvm/lib/Target/
H A DTargetMachineC.cpp124 LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,
126 Reloc::Model RM;
127 switch (Reloc){
129 RM = Reloc::Static;
132 RM = Reloc::PIC_;
135 RM = Reloc::DynamicNoPIC;
138 RM = Reloc::Default;
122 LLVMCreateTargetMachine(LLVMTargetRef T, const char* Triple, const char* CPU, const char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) argument
/freebsd-10.1-release/contrib/llvm/lib/Target/ARM/
H A DARMTargetMachine.h44 Reloc::Model RM, CodeModel::Model CM,
79 Reloc::Model RM, CodeModel::Model CM,
117 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.1-release/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp72 static MCCodeGenInfo *createAArch64MCCodeGenInfo(StringRef TT, Reloc::Model RM,
76 if (RM == Reloc::Default || RM == Reloc::DynamicNoPIC) {
80 RM = Reloc::Static;
/freebsd-10.1-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430TargetMachine.cpp32 Reloc::Model RM, CodeModel::Model CM,
H A DMSP430TargetMachine.h43 Reloc::Model RM, CodeModel::Model CM,

Completed in 274 milliseconds

12345