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

/external/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.h94 std::vector<object::macho::RelocationEntry> > Relocations; member in class:llvm::MachObjectWriter
198 Relocations[SD].push_back(MRE);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h115 StringMap<RelocationList> Relocations; member in class:llvm::RuntimeDyldMachO
/external/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.h115 std::vector<ELFRelocationEntry> > Relocations; member in class:llvm::ELFObjectWriter
H A DWinCOFFObjectWriter.cpp72 int Relocations; member in class:__anon6756::COFFSymbol
102 relocations Relocations; member in class:__anon6756::COFFSection
212 , Relocations(0)
236 if (Relocations > 0) {
688 ++Reloc.Symb->Relocations;
722 coff_section->Relocations.push_back(Reloc);
800 if (Sec->Relocations.size() > 0) {
801 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
804 offset += COFF::RelocationSize * Sec->Relocations.size();
806 for (relocations::iterator cr = Sec->Relocations
[all...]
/external/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:__anon6726::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 136 milliseconds