Searched defs:Relocations (Results 1 - 15 of 15) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFCodeEmitter.h31 /// Relocations - Record relocations needed by the current function
32 std::vector<MachineRelocation> Relocations; member in class:llvm::ELFCodeEmitter
45 Relocations.push_back(MR);
/external/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h98 llvm::DenseMap<const MCSection *, std::vector<RelAndSymbol>> Relocations; member in class:llvm::MachObjectWriter
218 Relocations[Sec].push_back(P);
/external/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h59 std::vector<Relocation> Relocations; member in struct:llvm::COFFYAML::Section
H A DELFYAML.h140 std::vector<Relocation> Relocations; member in struct:llvm::ELFYAML::RelocationSection
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCMachObjectWriter.h94 std::vector<object::macho::RelocationEntry> > Relocations; member in class:llvm::MachObjectWriter
198 Relocations[SD].push_back(MRE);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h115 StringMap<RelocationList> Relocations; member in class:llvm::RuntimeDyldMachO
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp119 std::vector<COFFYAML::Relocation> Relocations; local
135 Relocations.push_back(Rel);
137 NewYAMLSection.Relocations = Relocations;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DBinaryObject.h34 std::vector<MachineRelocation> Relocations; member in class:llvm::BinaryObject
63 return Relocations;
66 /// hasRelocations - Return true if 'Relocations' is not empty
68 return !Relocations.empty();
345 Relocations.push_back(relocation);
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp103 Relocations; member in class:__anon12726::ELFObjectWriter
149 Relocations.clear();
712 Relocations[&FixupSection].push_back(Rec);
728 Relocations[&FixupSection].push_back(Rec);
954 if (Relocations[&Sec].empty())
1084 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
1232 std::vector<MCSectionELF *> Relocations;
1268 Relocations.push_back(RelSection);
1293 for (MCSectionELF *RelSection : Relocations) {
H A DWinCOFFObjectWriter.cpp75 int Relocations; member in class:__anon12746::COFFSymbol
109 relocations Relocations; member in class:__anon12746::COFFSection
206 Relocations(0), MC(nullptr) {
743 ++Reloc.Symb->Relocations;
800 coff_section->Relocations.push_back(Reloc);
942 if (Sec->Relocations.size() > 0) {
943 bool RelocationsOverflow = Sec->Relocations.size() >= 0xffff;
950 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
959 offset += COFF::RelocationSize * Sec->Relocations.size();
961 for (auto &Relocation : Sec->Relocations) {
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DELFObjectWriter.h115 std::vector<ELFRelocationEntry> > Relocations; member in class:llvm::ELFObjectWriter
H A DWinCOFFObjectWriter.cpp72 int Relocations; member in class:__anon18662::COFFSymbol
102 relocations Relocations; member in class:__anon18662::COFFSection
212 , Relocations(0)
236 if (Relocations > 0) {
694 ++Reloc.Symb->Relocations;
728 coff_section->Relocations.push_back(Reloc);
806 if (Sec->Relocations.size() > 0) {
807 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
810 offset += COFF::RelocationSize * Sec->Relocations.size();
812 for (relocations::iterator cr = Sec->Relocations
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h259 // Relocations to sections already loaded. Indexed by SectionID which is the
262 std::unordered_map<unsigned, RelocationList> Relocations; member in class:llvm::RuntimeDyldImpl
264 // Relocations to external symbols that are not yet resolved. Symbols are
391 /// relocation pairs) and stores it to Relocations or SymbolRelocations
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp207 const auto &Relocations = RelocMap[Section]; local
209 for (const auto &Relocation : Relocations) {
279 const auto &Relocations = RelocMap[Section]; local
280 for (const auto &Relocation : Relocations) {
1127 ListScope D(W, "Relocations");
1153 ListScope D(W, "Relocations");
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp292 /// Relocations - These are the relocations that the function needs, as
294 std::vector<MachineRelocation> Relocations; member in class:__anon18632::JITEmitter
418 Relocations.push_back(MR);
836 if (!Relocations.empty()) {
838 NumRelos += Relocations.size();
841 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
842 MachineRelocation &MR = Relocations[i];
890 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
891 Relocations.size(), MemMgr->getGOTBase());
933 << Relocations
[all...]

Completed in 378 milliseconds