Searched refs:Reloc (Results 51 - 75 of 103) sorted by relevance

12345

/freebsd-10.2-release/contrib/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp114 static cl::opt<Reloc::Model>
117 cl::init(Reloc::Default),
119 clEnumValN(Reloc::Default, "default",
121 clEnumValN(Reloc::Static, "static",
123 clEnumValN(Reloc::PIC_, "pic",
125 clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJIT.h103 Reloc::Model RM = Reloc::Default,
97 create(Module *M, std::string *Err, JITMemoryManager *JMM, CodeGenOpt::Level OptLevel = CodeGenOpt::Default, bool GVsWithCode = true, Reloc::Model RM = Reloc::Default, CodeModel::Model CMM = CodeModel::JITDefault) argument
/freebsd-10.2-release/contrib/llvm/include/llvm/Target/
H A DTargetMachine.h203 Reloc::Model getRelocationModel() const;
304 Reloc::Model RM, CodeModel::Model CM,
/freebsd-10.2-release/contrib/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp66 Reloc::Model _RM, MipsTargetMachine *_TM) :
108 UseSmallSection = !IsLinux && (RM == Reloc::Static);
H A DMipsTargetMachine.cpp58 Reloc::Model RM, CodeModel::Model CM,
120 Reloc::Model RM, CodeModel::Model CM,
129 Reloc::Model RM, CodeModel::Model CM,
H A DMipsAsmPrinter.cpp621 Reloc::Model RM = Subtarget->getRelocationModel();
622 if (RM == Reloc::Static && !Subtarget->hasMips64())
679 Reloc::Model RM = Subtarget.getRelocationModel();
680 if (RM == Reloc::PIC_ || RM == Reloc::Default)
682 else if (RM == Reloc::Static)
683 ; // Do nothing for Reloc::Static
H A DMips16HardFloat.cpp245 if (Subtarget.getRelocationModel() == Reloc::PIC_)
405 if (Subtarget.getRelocationModel() != Reloc::PIC_ ) {
419 bool PicMode = Subtarget.getRelocationModel() == Reloc::PIC_;
H A DMipsLongBranch.cpp68 IsPIC(TM.getRelocationModel() == Reloc::PIC_),
190 TM.getRelocationModel() == Reloc::PIC_)))
417 if ((TM.getRelocationModel() == Reloc::PIC_) &&
457 if (TM.getRelocationModel() == Reloc::PIC_) {
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp224 static MCCodeGenInfo *createARMMCCodeGenInfo(StringRef TT, Reloc::Model RM,
228 if (RM == Reloc::Default) {
231 RM = TheTriple.isOSDarwin() ? Reloc::PIC_ : Reloc::DynamicNoPIC;
/freebsd-10.2-release/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXMCTargetDesc.cpp55 StringRef TT, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) {
/freebsd-10.2-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCodeEmitter.cpp98 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
99 MF.getTarget().getRelocationModel() != Reloc::Static) &&
133 assert(TM.getRelocationModel() == Reloc::PIC_);
159 if (TM.getRelocationModel() == Reloc::PIC_) {
H A DPPCSubtarget.cpp155 if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
/freebsd-10.2-release/contrib/llvm/lib/Target/R600/MCTargetDesc/
H A DAMDGPUMCTargetDesc.cpp57 static MCCodeGenInfo *createAMDGPUMCCodeGenInfo(StringRef TT, Reloc::Model RM,
/freebsd-10.2-release/contrib/llvm/lib/MC/
H A DMCObjectFileInfo.cpp84 if (RelocM != Reloc::Static &&
130 if (RelocM == Reloc::Static) {
255 PersonalityEncoding = (RelocM == Reloc::PIC_)
258 LSDAEncoding = (RelocM == Reloc::PIC_)
261 FDEEncoding = (RelocM == Reloc::PIC_)
264 TTypeEncoding = (RelocM == Reloc::PIC_)
268 if (RelocM == Reloc::PIC_) {
293 if (RelocM == Reloc::PIC_) {
314 if (RelocM == Reloc::PIC_) {
329 if (RelocM == Reloc
[all...]
H A DWinCOFFObjectWriter.cpp676 COFFRelocation Reloc; local
678 Reloc.Data.SymbolTableIndex = 0;
679 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
683 Reloc.Symb = coff_symbol->Section->Symbol;
687 Reloc.Symb = coff_symbol;
689 ++Reloc.Symb->Relocations;
691 Reloc.Data.VirtualAddress += Fixup.getOffset();
692 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
697 if (Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32 ||
698 Reloc
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/
H A DARMSubtarget.cpp259 Reloc::Model RelocM) const {
260 if (RelocM == Reloc::Static)
275 if (RelocM == Reloc::PIC_) {
H A DARMTargetMachine.cpp48 Reloc::Model RM, CodeModel::Model CM,
73 Reloc::Model RM, CodeModel::Model CM,
99 Reloc::Model RM, CodeModel::Model CM,
H A DARMInstrInfo.cpp107 if (TM->getRelocationModel() != Reloc::PIC_)
H A DARMSubtarget.h360 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
/freebsd-10.2-release/sys/boot/ia64/ski/
H A Defi_stub.c160 Reloc(void *addr, uint64_t delta) function
176 Reloc(&efi_rttab.rt_gettime, delta);
177 Reloc(&efi_rttab.rt_settime, delta);
/freebsd-10.2-release/contrib/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp285 Reloc::Model RelocModel = Reloc::Default;
288 RelocModel = Reloc::Static;
291 RelocModel = Reloc::PIC_;
294 RelocModel = Reloc::DynamicNoPIC;
/freebsd-10.2-release/contrib/llvm/include/llvm/Support/
H A DTargetRegistry.h87 Reloc::Model RM,
101 Reloc::Model RM,
288 MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM,
345 Reloc::Model RM = Reloc::Default,
894 static MCCodeGenInfo *Allocator(StringRef /*TT*/, Reloc::Model /*RM*/,
1066 Reloc::Model RM,
343 createTargetMachine(StringRef Triple, StringRef CPU, StringRef Features, const TargetOptions &Options, Reloc::Model RM = Reloc::Default, CodeModel::Model CM = CodeModel::Default, CodeGenOpt::Level OL = CodeGenOpt::Default) const argument
/freebsd-10.2-release/contrib/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h195 void InitMCObjectFileInfo(StringRef TT, Reloc::Model RM, CodeModel::Model CM,
359 Reloc::Model RelocM;
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp420 llvm::Reloc::Model RM = llvm::Reloc::Default;
422 RM = llvm::Reloc::Static;
424 RM = llvm::Reloc::PIC_;
428 RM = llvm::Reloc::DynamicNoPIC;
/freebsd-10.2-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp70 Reloc::Model RM,

Completed in 127 milliseconds

12345