Lines Matching refs:SectionID
122 unsigned SectionID;
153 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
158 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
163 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
169 : SectionID(id), Offset(offset), RelType(type), in RelocationEntry()
179 unsigned SectionID;
183 RelocationValueRef() : SectionID(0), Offset(0), Addend(0), in RelocationValueRef()
187 return SectionID == Other.SectionID && Offset == Other.Offset &&
191 if (SectionID != Other.SectionID)
192 return SectionID < Other.SectionID;
205 : JITSymbolBase(JITSymbolFlags::None), Offset(0), SectionID(0) {} in SymbolTableEntry()
207 SymbolTableEntry(unsigned SectionID, uint64_t Offset, JITSymbolFlags Flags) in SymbolTableEntry() argument
208 : JITSymbolBase(Flags), Offset(Offset), SectionID(SectionID) {} in SymbolTableEntry()
210 unsigned getSectionID() const { return SectionID; } in getSectionID()
215 unsigned SectionID; variable
299 uint64_t getSectionLoadAddress(unsigned SectionID) const { in getSectionLoadAddress() argument
300 return Sections[SectionID].getLoadAddress(); in getSectionLoadAddress()
303 uint8_t *getSectionAddress(unsigned SectionID) const { in getSectionAddress() argument
304 return Sections[SectionID].getAddress(); in getSectionAddress()
372 void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID);
395 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
470 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);