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 74 /// SectionID - the section this relocation points to.
75 unsigned SectionID;
88 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {}
93 /// the section to which the relocation points (represented by a SectionID).
96 unsigned SectionID;
105 unsigned SectionID;
108 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
124 // referenced in the code by means of their index in this list - SectionID.
128 // Keep a map of sections from object file to the SectionID which
133 // symbol name to a (SectionID, offset in section) pair
    [all...]
RuntimeDyld.cpp 124 unsigned SectionID =
129 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
132 << " SID: " << SectionID
136 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
152 unsigned SectionID = 0;
159 // If it's the first relocation in this section, find its SectionID
161 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
162 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
167 RI.SectionID = SectionID;
    [all...]

Completed in 37 milliseconds