Lines Matching refs:section_sp

233     SectionSP section_sp(section_list.GetSectionAtIndex(i));  in updateSectionLoadAddress()  local
234 if (section_sp) { in updateSectionLoadAddress()
235 if (section_sp->IsFake()) { in updateSectionLoadAddress()
238 updateSectionLoadAddress(section_sp->GetChildren(), target, in updateSectionLoadAddress()
245 const lldb::addr_t slide_amount = lower - section_sp->GetFileAddress(); in updateSectionLoadAddress()
246 section_sp->Slide(slide_amount, false); in updateSectionLoadAddress()
247 section_sp->GetChildren().Slide(-slide_amount, false); in updateSectionLoadAddress()
248 section_sp->SetByteSize(upper - lower); in updateSectionLoadAddress()
250 vmaddrheuristic += 2 << section_sp->GetLog2Align(); in updateSectionLoadAddress()
252 if (section_sp->GetFileAddress() > vmaddrheuristic) in updateSectionLoadAddress()
253 lower = section_sp->GetFileAddress(); in updateSectionLoadAddress()
255 lower = symbolfile_addr + section_sp->GetFileOffset(); in updateSectionLoadAddress()
256 section_sp->SetFileAddress(symbolfile_addr + in updateSectionLoadAddress()
257 section_sp->GetFileOffset()); in updateSectionLoadAddress()
259 target.SetSectionLoadAddress(section_sp, lower, true); in updateSectionLoadAddress()
260 uint64_t upper = lower + section_sp->GetByteSize(); in updateSectionLoadAddress()
266 vmaddrheuristic += section_sp->GetByteSize(); in updateSectionLoadAddress()
378 SectionSP section_sp(section_list->GetSectionAtIndex(i)); in ReadJITDescriptorImpl() local
379 if (section_sp) { in ReadJITDescriptorImpl()
380 target.GetSectionLoadList().SetSectionUnloaded(section_sp); in ReadJITDescriptorImpl()