Lines Matching refs:SectionID
89 unsigned SectionID;
120 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
125 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
130 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
136 : SectionID(id), Offset(offset), RelType(type), in RelocationEntry()
146 unsigned SectionID;
150 RelocationValueRef() : SectionID(0), Offset(0), Addend(0), in RelocationValueRef()
154 return SectionID == Other.SectionID && Offset == Other.Offset &&
158 if (SectionID != Other.SectionID)
159 return SectionID < Other.SectionID;
172 : JITSymbolBase(JITSymbolFlags::None), Offset(0), SectionID(0) {} in SymbolTableEntry()
174 SymbolTableEntry(unsigned SectionID, uint64_t Offset, JITSymbolFlags Flags) in SymbolTableEntry() argument
175 : JITSymbolBase(Flags), Offset(Offset), SectionID(SectionID) {} in SymbolTableEntry()
177 unsigned getSectionID() const { return SectionID; } in getSectionID()
182 unsigned SectionID; variable
269 uint64_t getSectionLoadAddress(unsigned SectionID) const { in getSectionLoadAddress() argument
270 return Sections[SectionID].LoadAddress; in getSectionLoadAddress()
273 uint8_t *getSectionAddress(unsigned SectionID) const { in getSectionAddress() argument
274 return (uint8_t *)Sections[SectionID].Address; in getSectionAddress()
334 void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID);
357 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
420 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);