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

References

tools/lld/ELF/InputFiles.cpp
  475   this->sections.resize(sections.size());
  505   this->sections.resize(size);
  510     if (this->sections[i] == &InputSection::discarded)
  533       this->sections[i] = &InputSection::discarded;
  541       this->sections[i] = &InputSection::discarded;
  565           this->sections[i] = createInputSection(sec);
  574         this->sections[secIndex] = &InputSection::discarded;
  586       this->sections[i] = createInputSection(sec);
  591     if (this->sections[i] == &InputSection::discarded)
  600     if (sec.sh_link < this->sections.size())
  601       linkSec = this->sections[sec.sh_link];
  605     InputSection *isec = cast<InputSection>(this->sections[i]);
  767   if (idx >= this->sections.size())
  769   InputSectionBase *target = this->sections[idx];
  848       this->sections[sec.sh_info] = target;
  999     if (secIdx >= this->sections.size())
 1002     InputSectionBase *sec = this->sections[secIdx];
 1447   sections.push_back(section);
tools/lld/ELF/InputFiles.h
   83     return sections;