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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCheckerImpl.h 37 uint64_t SectionID;
64 void registerSection(StringRef FilePath, unsigned SectionID);
65 void registerStubMap(StringRef FilePath, unsigned SectionID,
RuntimeDyldMachO.h 30 unsigned SectionID;
47 // When a module is loaded we save the SectionID of the EH frame section
65 RelocationEntry getRelocationEntry(unsigned SectionID,
79 return RelocationEntry(SectionID, Offset, RelType, 0, IsPCRel, Size);
84 unsigned SectionID, relocation_iterator RelI,
90 /// representing a (SectionID, Offset) pair.
131 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; }
RuntimeDyldChecker.cpp 799 unsigned SectionID = SectionInfo->SectionID;
803 getRTDyld().Sections[SectionID].getAddress()));
805 Addr = getRTDyld().Sections[SectionID].getLoadAddress();
823 unsigned SectionID = SectionInfo->SectionID;
838 getRTDyld().Sections[SectionID].getAddress());
841 uint64_t SectionBase = getRTDyld().Sections[SectionID].getLoadAddress();
863 StringRef FilePath, unsigned SectionID) {
865 const SectionEntry &Section = getRTDyld().Sections[SectionID];
    [all...]
RuntimeDyldImpl.h 127 /// SectionID - the section this relocation points to.
128 unsigned SectionID;
159 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
164 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
169 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
175 : SectionID(id), Offset(offset), RelType(type),
185 unsigned SectionID;
189 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
193 return SectionID == Other.SectionID && Offset == Other.Offset &
    [all...]
RuntimeDyld.cpp 98 // symbol for the relocation is located. The SectionID in the relocation
188 unsigned SectionID = AbsoluteSymbolSection;
191 << " SID: " << SectionID << " Offset: "
195 SymbolTableEntry(SectionID, SectOffset, RTDyldSymFlags);
210 unsigned SectionID = findOrEmitSection(Obj, *SI, IsCode, LocalSections);
213 << " SID: " << SectionID << " Offset: "
217 SymbolTableEntry(SectionID, SectOffset, RTDyldSymFlags);
229 unsigned SectionID = 0;
243 SectionID =
245 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n")
    [all...]
  /external/llvm/lib/Object/
SymbolSize.cpp 24 unsigned SectionID;
29 if (A->SectionID != B->SectionID)
30 return A->SectionID - B->SectionID;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOARM.h 37 const SectionEntry &Section = Sections[RE.SectionID];
53 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
65 return processHALFSECTDIFFRelocation(SectionID, RelI, Obj,
68 return processScatteredVANILLA(SectionID, RelI, Obj, ObjSectionToID);
73 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
88 addRelocationForSection(RE, Value.SectionID);
96 const SectionEntry &Section = Sections[RE.SectionID];
162 void finalizeSection(const ObjectFile &Obj, unsigned SectionID,
169 Section, SectionID);
179 SectionEntry &Section = Sections[RE.SectionID];
    [all...]
RuntimeDyldMachOI386.h 34 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
47 return processSECTDIFFRelocation(SectionID, RelI, Obj,
50 return processScatteredVANILLA(SectionID, RelI, Obj, ObjSectionToID);
54 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
77 addRelocationForSection(RE, Value.SectionID);
85 const SectionEntry &Section = Sections[RE.SectionID];
114 void finalizeSection(const ObjectFile &Obj, unsigned SectionID,
120 populateJumpTable(cast<MachOObjectFile>(Obj), Section, SectionID);
123 Section, SectionID);
128 processSECTDIFFRelocation(unsigned SectionID, relocation_iterator RelI
    [all...]

Completed in 79 milliseconds