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

References

tools/lld/ELF/LinkerScript.cpp
  129   if (val < dot && inSec)
  135     expandOutputSection(val - dot);
  137   dot = val;
  733   uint64_t start = isTbss ? dot + ctx->threadBssOffset : dot;
  733   uint64_t start = isTbss ? dot + ctx->threadBssOffset : dot;
  738     ctx->threadBssOffset = end - dot;
  740     dot = end;
  807     dot = 0;
  812     dot = ctx->memRegion->curPos;
  821   if (ctx->memRegion && ctx->memRegion->curPos < dot)
  822     expandMemoryRegion(ctx->memRegion, dot - ctx->memRegion->curPos,
  828     ctx->lmaOffset = sec->lmaExpr().getValue() - dot;
  831     ctx->lmaOffset = mr->curPos - dot;
  853       cmd->addr = dot;
  855       cmd->size = dot - cmd->addr;
  861       cmd->offset = dot - ctx->outSec->addr;
  862       dot += cmd->size;
 1086     dot = config->imageBase.getValueOr(0);
 1089     dot = target->getImageBase();
 1090     Out::elfHeader->addr = dot;
 1091     Out::programHeaders->addr = dot + Out::elfHeader->size;
 1092     dot += getHeaderSize();
 1103       cmd->addr = dot;
 1105       cmd->size = dot - cmd->addr;
 1165       return {ctx->outSec, false, dot - ctx->outSec->addr, loc};
tools/lld/ELF/LinkerScript.h
  267   uint64_t getDot() { return dot; }