HomeSort by relevance Sort by last modified time
    Searched refs:Relocations (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 68 int Relocations;
88 typedef std::vector<COFFRelocation> relocations; typedef in namespace:__anon11566
98 relocations Relocations;
211 , Relocations(0)
234 // if it has relocations pointing at it, keep it
235 if (Relocations > 0) {
236 assert(Section->Number != -1 && "Sections with relocations must be real!");
681 // Turn relocations for temporary symbols into section relocations
    [all...]
MachObjectWriter.cpp 31 Relocations.clear();
794 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
867 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
    [all...]
ELFObjectWriter.cpp 93 std::vector<ELFRelocationEntry> > Relocations;
268 // Map from a section to the section with the relocations
774 Relocations[Fragment->getParent()].push_back(ERE);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 58 STATISTIC(NumRelos, "Number of relocations applied");
296 /// Relocations - These are the relocations that the function needs, as
298 std::vector<MachineRelocation> Relocations;
414 Relocations.push_back(MR);
832 if (!Relocations.empty()) {
834 NumRelos += Relocations.size();
836 // Resolve the relocations to concrete pointers.
837 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
838 MachineRelocation &MR = Relocations[i]
    [all...]
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 101 std::vector<object::macho::RelocationEntry> > Relocations;
217 Relocations[SD].push_back(MRE);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 32 // Resolve the relocations for all symbols we currently know about.
34 // First, resolve relocations associated with external symbols.
37 // Just iterate over the sections we have and resolve all the relocations
41 DEBUG(dbgs() << "Resolving relocations Section #" << i
44 resolveRelocationList(Relocations[i], Addr);
137 // Parse and process relocations
138 DEBUG(dbgs() << "Parse relocations:\n");
321 Relocations[SectionID].push_back(RE);
337 Relocations[Loc->second.first].push_back(RECopy);
387 // Assign an address to a symbol name and resolve all the relocations
    [all...]
RuntimeDyldImpl.h 62 /// relocations (like ARM).
66 /// for calculating relocations in some object formats (like MachO).
75 /// RelocationEntry - used to represent relocations internally in the dynamic
148 // For each symbol, keep a list of relocations based on it. Anytime
150 // the relocations get re-resolved.
154 // Relocations to sections already loaded. Indexed by SectionID which is the
157 DenseMap<unsigned, RelocationList> Relocations;
159 // Relocations to external symbols that are not yet resolved. Symbols are
270 /// \brief Resolves relocations from Relocs list with address from Value.
287 /// \brief Parses the object file relocation and stores it to Relocations
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 70 Relocations("r", cl::desc("Display the relocation entries in the file"));
165 // around to outputting relocations.
242 // Make a list of all the relocations for this section.
253 // Sort relocations by address.
633 DisassembleObject(o, Relocations);
634 if (Relocations && !Disassemble)
721 && !Relocations
  /external/llvm/utils/yaml2obj/
yaml2obj.cpp 715 std::vector<COFF::relocation> Relocations;
    [all...]

Completed in 1297 milliseconds