Lines Matching refs:Section
99 Allocation &Section = UnmappedSections[i];
100 if (Section.IsCode) {
101 unsigned Size = Section.MB.size();
102 unsigned Align = Section.Alignment;
106 // section.
108 // Save off the address of the new section and allocate its space.
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
116 Allocation &Section = UnmappedSections[i];
117 if (!Section.IsCode) {
118 unsigned Size = Section.MB.size();
119 unsigned Align = Section.Alignment;
123 // section.
125 // Save off the address of the new section and allocate its space.
126 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
136 // Map the section addresses so relocations will get updated in the local
157 const Allocation &Section = I->second;
158 if (Section.IsCode) {
159 if (!Target->loadCode(RemoteAddr, Section.MB.base(), Section.MB.size()))
161 DEBUG(dbgs() << " loading code: " << Section.MB.base()
164 if (!Target->loadData(RemoteAddr, Section.MB.base(), Section.MB.size()))
166 DEBUG(dbgs() << " loading data: " << Section.MB.base()