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

12345

/freebsd-13-stable/contrib/llvm-project/lld/include/lld/Common/
H A DTargetOptionsCommandFlags.h19 llvm::Optional<llvm::Reloc::Model> getRelocModelFromCMModel();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFRelocMap.h22 object::RelocationRef Reloc; member in struct:llvm::RelocAddrEntry
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetMachine.cpp50 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
52 return Reloc::PIC_;
59 Optional<Reloc::Model> RM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430TargetMachine.cpp29 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
31 return Reloc::Static;
43 Optional<Reloc::Model> RM,
H A DMSP430TargetMachine.h32 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCTargetMachine.cpp23 static Reloc::Model getRelocModel(Optional<Reloc::Model> RM) {
25 return Reloc::Static;
33 Optional<Reloc::Model> RM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.cpp74 case Reloc::Static:
77 case Reloc::PIC_:
80 case Reloc::DynamicNoPIC:
83 case Reloc::ROPI:
86 case Reloc::RWPI:
89 case Reloc::ROPI_RWPI:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRTargetMachine.cpp39 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
40 return RM.hasValue() ? *RM : Reloc::Static;
46 Optional<Reloc::Model> RM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.h30 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
51 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
62 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
72 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/VE/
H A DVETargetMachine.cpp50 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
52 return Reloc::Static;
71 Optional<Reloc::Model> RM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetMachine.cpp28 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
30 return Reloc::Static;
49 Optional<Reloc::Model> RM,
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DTarget.h24 struct Reloc;
43 virtual void relocateOne(uint8_t *loc, const Reloc &, uint64_t val) const = 0;
57 const Reloc &) = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/
H A DInstrumentationMap.cpp118 for (const object::RelocationRef &Reloc : Section.relocations()) {
120 if (SupportsRelocation && SupportsRelocation(Reloc.getType())) {
121 Expected<uint64_t> ValueOrErr = Reloc.getSymbol()->getValue();
124 Relocs.insert({Reloc.getOffset(), Resolver(Reloc, *ValueOrErr, 0)});
126 } else if (SupportsRelocation && SupportsRelocation(Reloc.getType())) {
127 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend();
129 Expected<uint64_t> ValueOrErr = Reloc.getSymbol()->getValue();
133 Relocs.insert({Reloc.getOffset(), Resolver(Reloc, *ValueOrEr
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.h80 JITTargetMachineBuilder &setRelocationModel(Optional<Reloc::Model> RM) {
86 const Optional<Reloc::Model> &getRelocationModel() const { return RM; }
153 Optional<Reloc::Model> RM;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp71 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc);
85 const RelocationRef &Reloc) {
87 uint64_t RelocType = Reloc.getType();
88 Reloc.getTypeName(RelocTypeName);
89 const wasm::WasmRelocation &WasmReloc = Obj->getWasmRelocation(Reloc);
92 symbol_iterator SI = Reloc.getSymbol();
101 W.printHex("Offset", Reloc.getOffset());
110 OS << W.hex(Reloc.getOffset()) << " " << RelocTypeName << " ";
131 for (const RelocationRef &Reloc : Section.relocations()) {
138 printRelocation(Section, Reloc);
84 printRelocation(const SectionRef &Section, const RelocationRef &Reloc) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetMachine.h44 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
83 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
93 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetMachine.h42 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
78 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
90 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.h40 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
80 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
89 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.h33 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
71 Optional<Reloc::Model> RM,
83 Optional<Reloc::Model> RM,
/freebsd-13-stable/contrib/llvm-project/lld/Common/
H A DTargetOptionsCommandFlags.cpp20 llvm::Optional<llvm::Reloc::Model> lld::getRelocModelFromCMModel() {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DCodeGenOptions.cpp19 RelocationModel = llvm::Reloc::PIC_;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp87 RelocationValueRef Reloc; local
88 Reloc.SymbolName = Name.data();
89 auto I = Stubs.find(Reloc);
99 Stubs[Reloc] = EntryOffset;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveDIType.cpp105 uint32_t Reloc; local
107 Reloc = BPFCoreSharedInfo::BTF_TYPE_ID_LOCAL;
109 Reloc = BPFCoreSharedInfo::BTF_TYPE_ID_REMOTE;
114 std::to_string(Reloc);
H A DBPFTargetMachine.cpp51 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
53 return Reloc::PIC_;
60 Optional<Reloc::Model> RM,
H A DBPFTargetMachine.h27 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,

Completed in 230 milliseconds

12345