Home
last modified time | relevance | path

Searched refs:doGC (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/lld/COFF/
H A DDriver.cpp1742 bool doGC = debug == DebugKind::None || args.hasArg(OPT_profile); in linkerMain() local
1754 doGC = true; in linkerMain()
1756 doGC = false; in linkerMain()
1793 icfLevel = doGC ? ICFLevel::All : ICFLevel::None; in linkerMain()
1794 config->doGC = doGC; in linkerMain()
1906 !config->doGC && config->doICF == ICFLevel::None && in linkerMain()
1947 if (config->incremental && config->doGC) { in linkerMain()
2430 if (config->doGC) { in linkerMain()
H A DConfig.h110 bool doGC = true; member
H A DChunks.cpp57 live = !file->ctx.config.doGC || !isCOMDAT(); in SectionChunk()
H A DInputFiles.cpp942 : InputFile(ctx, ImportKind, m), live(!ctx.config.doGC), thunkLive(live) {} in ImportFile()