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

  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 94 std::vector<object::macho::RelocationEntry> > Relocations;
198 Relocations[SD].push_back(MRE);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 44 // considered to live at for relocations. The same
48 // functions for far relocations like ARM.
117 // For each symbol, keep a list of relocations based on it. Anytime
119 // the relocations get re-resolved.
123 // Relocations to sections already loaded. Indexed by SectionID which is the
126 DenseMap<unsigned, RelocationList> Relocations;
127 // Relocations to external symbols that are not yet resolved.
182 /// Relocations, else store it in the SymbolRelocations.
190 /// \brief Resolves relocations from Relocs list with address from Value.
206 /// \brief Parses the object file relocation and store it to Relocations
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 72 int Relocations;
92 typedef std::vector<COFFRelocation> relocations; typedef in namespace:__anon9043
102 relocations Relocations;
213 , Relocations(0)
236 // if it has relocations pointing at it, keep it
237 if (Relocations > 0) {
238 assert(Section->Number != -1 && "Sections with relocations must be real!");
682 // Turn relocations for temporary symbols into section relocations
    [all...]
ELFObjectWriter.cpp 94 std::vector<ELFRelocationEntry> > Relocations;
266 // Map from a section to the section with the relocations
763 Relocations[Fragment->getParent()].push_back(ERE);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 58 STATISTIC(NumRelos, "Number of relocations applied");
291 /// Relocations - These are the relocations that the function needs, as
293 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...]

Completed in 131 milliseconds