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

  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 100 std::vector<MachO::any_relocation_info> > Relocations;
217 Relocations[SD].push_back(MRE);
  /external/llvm/include/llvm/Object/
COFFYAML.h 53 std::vector<Relocation> Relocations;
ELFYAML.h 101 std::vector<Relocation> Relocations;
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 66 std::vector<COFFYAML::Relocation> Relocations;
67 for (const auto &Reloc : Section.relocations()) {
74 Relocations.push_back(Rel);
76 Sec.Relocations = Relocations;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 63 /// relocations (like ARM).
67 /// for calculating relocations in some object formats (like MachO).
77 /// RelocationEntry - used to represent relocations internally in the dynamic
198 // For each symbol, keep a list of relocations based on it. Anytime
200 // the relocations get re-resolved.
204 // Relocations to sections already loaded. Indexed by SectionID which is the
207 DenseMap<unsigned, RelocationList> Relocations;
209 // Relocations to external symbols that are not yet resolved. Symbols are
220 // sections containing relocations should be. Defaults to 'false'.
317 /// \brief Resolves relocations from Relocs list with address from Value
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 105 const auto &Relocations = RelocMap[Section];
106 for (const auto &Relocation : Relocations) {
327 for (const RelocationRef &Reloc : S.relocations())
330 // Sort relocations by address.
484 // relocations and size of the code.
541 uint32_t Offset = 8; // Skip relocations.
623 ListScope D(W, "Relocations");
624 for (const RelocationRef &Reloc : Sec.relocations())
653 ListScope D(W, "Relocations");
663 for (const RelocationRef &Reloc : Section.relocations()) {
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 58 STATISTIC(NumRelos, "Number of relocations applied");
289 /// Relocations - These are the relocations that the function needs, as
291 std::vector<MachineRelocation> Relocations;
398 Relocations.push_back(MR);
826 if (!Relocations.empty()) {
828 NumRelos += Relocations.size();
830 // Resolve the relocations to concrete pointers.
831 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
832 MachineRelocation &MR = Relocations[i]
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 69 int Relocations;
89 typedef std::vector<COFFRelocation> relocations; typedef in namespace:__anon5446
99 relocations Relocations;
197 , Relocations(0)
220 // if it has relocations pointing at it, keep it
221 if (Relocations > 0) {
222 assert(Section->Number != -1 && "Sections with relocations must be real!");
765 // Turn relocations for temporary symbols into section relocations
    [all...]
ELFObjectWriter.cpp 152 Relocations;
236 // Map from a section to the section with the relocations
767 // only handle section relocations to mergeable sections if using RELA.
772 // Most TLS relocations use a got, so they need the symbol. Even those that
828 // In general, ELF has no relocations for -B. It can only represent (A + C)
886 Relocations[FixupSection].push_back(Rec);
900 Relocations[FixupSection].push_back(Rec);
    [all...]

Completed in 114 milliseconds