#include "COFFLinkerContext.h"
#include "Chunks.h"
#include "Symbols.h"
#include "lld/Common/Timer.h"
#include "llvm/Support/TimeProfiler.h"
namespace lld::coff {
void markLive(COFFLinkerContext &ctx) {
llvm::TimeTraceScope timeScope("Mark live");
ScopedTimer t(ctx.gcTimer);
SmallVector<SectionChunk *, 256> worklist;
for (Chunk *c : ctx.driver.getChunks())
if (auto *sc = dyn_cast<SectionChunk>(c))
if (sc->live && !sc->isDWARF())
worklist.push_back(sc);
auto enqueue = [&](SectionChunk *c) {
if (c->live)
return;
c->live = true;
worklist.push_back(c);
};
std::function<void(Symbol *)> addSym;
auto addImportFile = [&](ImportFile *file) {
file->live = true;
if (file->impchkThunk && file->impchkThunk->exitThunk)
addSym(file->impchkThunk->exitThunk);
};
addSym = [&](Symbol *s) {
Defined *b = s->getDefined();
if (!b)
return;
if (auto *sym = dyn_cast<DefinedRegular>(b)) {
enqueue(sym->getChunk());
} else if (auto *sym = dyn_cast<DefinedImportData>(b)) {
addImportFile(sym->file);
} else if (auto *sym = dyn_cast<DefinedImportThunk>(b)) {
addImportFile(sym->wrappedSym->file);
sym->getChunk()->live = true;
}
};
for (Symbol *b : ctx.config.gcroot)
addSym(b);
while (!worklist.empty()) {
SectionChunk *sc = worklist.pop_back_val();
assert(sc->live && "We mark as live when pushing onto the worklist!");
for (Symbol *b : sc->symbols())
if (b)
addSym(b);
for (SectionChunk &c : sc->children())
enqueue(&c);
if (Defined *entryThunk = sc->getEntryThunk())
addSym(entryThunk);
}
}
}