Lines Matching refs:InitSection
110 for (XCOFFYAML::Section &InitSection : InitSections) { in initRelocations()
111 if (!InitSection.Relocations.empty()) { in initRelocations()
114 uint64_t UsedSize = RelSize * InitSection.Relocations.size(); in initRelocations()
118 if (!InitSection.NumberOfRelocations) in initRelocations()
119 InitSection.NumberOfRelocations = InitSection.Relocations.size(); in initRelocations()
122 if (InitSection.FileOffsetToRelocations) { in initRelocations()
123 if (CurrentOffset > InitSection.FileOffsetToRelocations) { in initRelocations()
124 reportOverwrite(CurrentOffset, InitSection.FileOffsetToRelocations, in initRelocations()
126 InitSection.SectionName + " section"); in initRelocations()
129 CurrentOffset = InitSection.FileOffsetToRelocations; in initRelocations()
131 InitSection.FileOffsetToRelocations = CurrentOffset; in initRelocations()
136 Twine(InitSection.SectionName)); in initRelocations()