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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 59 unsigned SectionID; // Section the relocation is contained in.
67 : SectionID(id), Offset(offset), Data(data), Addend(addend) {}
73 unsigned SectionID;
82 unsigned SectionID;
85 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
104 // Keep a map of sections from object file to the SectionID which
109 // resolved, their addresses are stored here as a SectionID/Offset pair.
123 // Relocations to sections already loaded. Indexed by SectionID which is the
125 // SectionID/Offset in the relocation itself.
152 uint8_t *getSectionAddress(unsigned SectionID) {
    [all...]
RuntimeDyld.cpp 118 unsigned SectionID =
124 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
127 << " SID: " << SectionID
130 SymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
146 unsigned SectionID = 0;
153 // If it's first relocation in this section, find its SectionID
155 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
156 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
161 RI.SectionID = SectionID;
    [all...]

Completed in 32 milliseconds