reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  235     if (section_sp) {
  236       if (section_sp->IsFake()) {
  239         updateSectionLoadAddress(section_sp->GetChildren(), target,
  246         const lldb::addr_t slide_amount = lower - section_sp->GetFileAddress();
  247         section_sp->Slide(slide_amount, false);
  248         section_sp->GetChildren().Slide(-slide_amount, false);
  249         section_sp->SetByteSize(upper - lower);
  251         vmaddrheuristic += 2 << section_sp->GetLog2Align();
  253         if (section_sp->GetFileAddress() > vmaddrheuristic)
  254           lower = section_sp->GetFileAddress();
  256           lower = symbolfile_addr + section_sp->GetFileOffset();
  257           section_sp->SetFileAddress(symbolfile_addr +
  258                                      section_sp->GetFileOffset());
  260         target.SetSectionLoadAddress(section_sp, lower, true);
  261         uint64_t upper = lower + section_sp->GetByteSize();
  267         vmaddrheuristic += section_sp->GetByteSize();