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 79 /// SectionID - the section this relocation points to.
80 unsigned SectionID;
93 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {}
98 /// the section to which the relocation points (represented by a SectionID).
101 unsigned SectionID;
110 unsigned SectionID;
113 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
129 // referenced in the code by means of their index in this list - SectionID.
133 // Keep a map of sections from object file to the SectionID which
138 // symbol name to a (SectionID, offset in section) pair
    [all...]
RuntimeDyld.cpp 121 unsigned SectionID = findOrEmitSection(*obj, *si, IsCode, LocalSections);
122 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
125 << " SID: " << SectionID
127 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
143 unsigned SectionID = 0;
150 // If it's the first relocation in this section, find its SectionID
152 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
153 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
158 RI.SectionID = SectionID;
    [all...]

Completed in 2614 milliseconds