HomeSort by: relevance | last modified time | path
    Searched defs:SectionID (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
SymbolSize.h 22 unsigned SectionID;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 29 unsigned SectionID;
46 // When a module is loaded we save the SectionID of the EH frame section
64 RelocationEntry getRelocationEntry(unsigned SectionID,
78 return RelocationEntry(SectionID, Offset, RelType, 0, IsPCRel, Size);
83 processScatteredVANILLA(unsigned SectionID, relocation_iterator RelI,
90 /// representing a (SectionID, Offset) pair.
132 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; }
RuntimeDyldImpl.h 119 /// SectionID - the section this relocation points to.
120 unsigned SectionID;
154 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
159 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
165 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
171 : SectionID(id), Offset(offset), RelType(type),
182 : SectionID(id), Offset(offset), RelType(type),
192 unsigned SectionID = 0;
199 return SectionID == Other.SectionID && Offset == Other.Offset &
    [all...]
RuntimeDyld.cpp 147 // symbol for the relocation is located. The SectionID in the relocation
305 unsigned SectionID = AbsoluteSymbolSection;
308 << " SID: " << SectionID
313 SymbolTableEntry(SectionID, Addr, *JITSymFlags);
334 unsigned SectionID;
337 SectionID = *SectionIDOrErr;
342 << " SID: " << SectionID
347 SymbolTableEntry(SectionID, SectOffset, *JITSymFlags);
377 unsigned SectionID = 0;
380 SectionID = *SectionIDOrErr
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 192 SectionInfo(StringRef Name, sys::MemoryBlock MB, unsigned SectionID)
193 : Name(std::string(Name)), MB(std::move(MB)), SectionID(SectionID) {}
196 unsigned SectionID = ~0U;
203 unsigned SectionID,
206 unsigned SectionID, StringRef SectionName,
209 /// If non null, records subsequent Name -> SectionID mappings.
262 StringRef SectionName, unsigned SectionID) {
270 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID));
272 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID));
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 654 Optional<MBBSectionID> SectionID;
684 if (parseSectionID(SectionID))
717 if (SectionID.hasValue()) {
718 MBB->setSectionID(SectionID.getValue());

Completed in 26 milliseconds