Lines Matching refs:Section
17 const SectionEntry &Section = Sections[RE.SectionID]; in resolveRelocation() local
19 resolveMIPSO32Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend); in resolveRelocation()
21 resolveMIPSN32Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend, in resolveRelocation()
24 resolveMIPSN64Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend, in resolveRelocation()
34 const SectionEntry &Section = Sections[RE.SectionID]; in evaluateRelocation() local
35 Value = evaluateMIPS64Relocation(Section, RE.Offset, Value, RE.RelType, in evaluateRelocation()
45 const SectionEntry &Section = Sections[RE.SectionID]; in applyRelocation() local
46 applyMIPSRelocation(Section.getAddressWithOffset(RE.Offset), Value, in applyRelocation()
54 RuntimeDyldELFMips::evaluateMIPS32Relocation(const SectionEntry &Section, in evaluateMIPS32Relocation() argument
59 << format("%llx", Section.getAddressWithOffset(Offset)) in evaluateMIPS32Relocation()
61 << format("%llx", Section.getLoadAddressWithOffset(Offset)) in evaluateMIPS32Relocation()
79 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
83 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
87 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
91 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
95 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
99 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
103 uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS32Relocation()
110 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in evaluateMIPS64Relocation() argument
114 << format("%llx", Section.getAddressWithOffset(Offset)) in evaluateMIPS64Relocation()
116 << format("%llx", Section.getLoadAddressWithOffset(Offset)) in evaluateMIPS64Relocation()
179 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
183 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
187 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
191 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
195 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
199 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
203 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
207 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset); in evaluateMIPS64Relocation()
267 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in resolveMIPSN32Relocation() argument
270 Section, Offset, Value, Type, Addend, SymOffset, SectionID); in resolveMIPSN32Relocation()
271 applyMIPSRelocation(Section.getAddressWithOffset(Offset), CalculatedValue, in resolveMIPSN32Relocation()
276 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in resolveMIPSN64Relocation() argument
285 int64_t CalculatedValue = evaluateMIPS64Relocation(Section, Offset, Value, in resolveMIPSN64Relocation()
290 CalculatedValue = evaluateMIPS64Relocation(Section, Offset, 0, RelType, in resolveMIPSN64Relocation()
296 CalculatedValue = evaluateMIPS64Relocation(Section, Offset, 0, RelType, in resolveMIPSN64Relocation()
300 applyMIPSRelocation(Section.getAddressWithOffset(Offset), CalculatedValue, in resolveMIPSN64Relocation()
304 void RuntimeDyldELFMips::resolveMIPSO32Relocation(const SectionEntry &Section, in resolveMIPSO32Relocation() argument
308 uint8_t *TargetPtr = Section.getAddressWithOffset(Offset); in resolveMIPSO32Relocation()
312 << Section.getAddressWithOffset(Offset) << " FinalAddress: " in resolveMIPSO32Relocation()
313 << format("%p", Section.getLoadAddressWithOffset(Offset)) in resolveMIPSO32Relocation()
318 Value = evaluateMIPS32Relocation(Section, Offset, Value, Type); in resolveMIPSO32Relocation()