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

References

tools/lld/ELF/LinkerScript.cpp
   58   if (sec)
   59     return alignTo(sec->getOffset(val) + getOutputSectionVA(sec),
   59     return alignTo(sec->getOffset(val) + getOutputSectionVA(sec),
   65   if (sec)
   66     return sec->getOffset(0) + getOutputSectionVA(sec);
   66     return sec->getOffset(0) + getOutputSectionVA(sec);
   74   if (alignment == 1 && !sec)
  166   SectionBase *sec = value.isAbsolute() ? nullptr : value.sec;
  180   uint64_t symValue = value.sec ? 0 : value.getValue();
  318     cmd->sym->section = v.sec;
tools/lld/ELF/LinkerScript.h
   47   bool isAbsolute() const { return forceAbsolute || sec == nullptr; }
tools/lld/ELF/ScriptParser.cpp
  143   if (a.sec == nullptr || (a.forceAbsolute && !b.isAbsolute()))
  151   return {a.sec, a.forceAbsolute, a.getSectionOffset() + b.getValue(), a.loc};
  158   return {a.sec, false, a.getSectionOffset() - b.getValue(), a.loc};
  163   return {a.sec, a.forceAbsolute,
  169   return {a.sec, a.forceAbsolute,