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 98 llvm::DenseMap<const MCSection *, std::vector<RelAndSymbol>> Relocations;
218 Relocations[Sec].push_back(P);
  /external/llvm/include/llvm/Object/
COFFYAML.h 59 std::vector<Relocation> Relocations;
ELFYAML.h 140 std::vector<Relocation> Relocations;
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 104 Relocations;
146 Relocations.clear();
569 // only handle section relocations to mergeable sections if using RELA.
574 // Most TLS relocations use a got, so they need the symbol. Even those that
630 // In general, ELF has no relocations for -B. It can only represent (A + C)
707 Relocations[&FixupSection].push_back(Rec);
721 Relocations[&FixupSection].push_back(Rec);
948 if (Relocations[&Sec].empty())
    [all...]
WinCOFFObjectWriter.cpp 75 int Relocations;
99 typedef std::vector<COFFRelocation> relocations; typedef in namespace:__anon17459
109 relocations Relocations;
205 Relocations(0), MC(nullptr) {
622 // away any relocations to functions.
723 // Turn relocations for temporary symbols into section relocations.
738 ++Reloc.Symb->Relocations;
772 // generate the relocations however the rest of the MSVC toolchain i
    [all...]
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 118 std::vector<COFFYAML::Relocation> Relocations;
119 for (const auto &Reloc : ObjSection.relocations()) {
129 Relocations.push_back(Rel);
131 NewYAMLSection.Relocations = Relocations;
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 500 SmallVector<const Value *, 64> Bases, Ptrs, Relocations;
501 getIncomingStatepointGCValues(Bases, Ptrs, Relocations, StatepointSite,
525 for (const Value *V : Relocations) {
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 70 /// relocations (like ARM).
78 /// for calculating relocations in some object formats (like MachO).
123 /// RelocationEntry - used to represent relocations internally in the dynamic
259 // For each symbol, keep a list of relocations based on it. Anytime
261 // the relocations get re-resolved.
265 // Relocations to sections already loaded. Indexed by SectionID which is the
268 std::unordered_map<unsigned, RelocationList> Relocations;
270 // Relocations to external symbols that are not yet resolved. Symbols are
284 // sections containing relocations should be. Defaults to 'false'.
392 /// \brief Resolves relocations from Relocs list with address from Value
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 124 const auto &Relocations = RelocMap[Section];
125 for (const auto &Relocation : Relocations) {
352 for (const RelocationRef &Reloc : S.relocations())
355 // Sort relocations by address.
538 // relocations and size of the code.
594 uint32_t Offset = 6; // Skip relocations.
774 ListScope D(W, "Relocations");
775 for (const RelocationRef &Reloc : Sec.relocations())
800 ListScope D(W, "Relocations");
809 for (const RelocationRef &Reloc : Section.relocations())
    [all...]

Completed in 274 milliseconds