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

  /external/llvm/include/llvm/Object/
COFFYAML.h 48 std::vector<Relocation> Relocations;
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 69 std::vector<COFFYAML::Relocation> Relocations;
79 Relocations.push_back(Rel);
81 Sec.Relocations = Relocations;
  /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/
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
276 /// \brief Resolves relocations from Relocs list with address from Value.
284 /// \brief Parses the object file relocation and stores it to Relocations
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 69 int Relocations;
89 typedef std::vector<COFFRelocation> relocations; typedef in namespace:__anon23689
99 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!");
687 // Turn relocations for temporary symbols into section relocations
    [all...]
ELFObjectWriter.cpp 93 std::vector<ELFRelocationEntry> > Relocations;
268 // Map from a section to the section with the relocations
771 Relocations[Fragment->getParent()].push_back(ERE);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 57 STATISTIC(NumRelos, "Number of relocations applied");
295 /// Relocations - These are the relocations that the function needs, as
297 std::vector<MachineRelocation> Relocations;
404 Relocations.push_back(MR);
821 if (!Relocations.empty()) {
823 NumRelos += Relocations.size();
825 // Resolve the relocations to concrete pointers.
826 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
827 MachineRelocation &MR = Relocations[i]
    [all...]

Completed in 292 milliseconds