Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DConfig.h45 enum class ICFLevel { None, Safe, All }; enum
209 ICFLevel ICF;
H A DDriver.cpp309 if (Config->ICF != ICFLevel::None) in checkOptions()
537 static ICFLevel getICF(opt::InputArgList &Args) { in getICF()
540 return ICFLevel::None; in getICF()
542 return ICFLevel::Safe; in getICF()
543 return ICFLevel::All; in getICF()
1303 if (Config->ICF == ICFLevel::Safe || !(D->Section->Flags & SHF_EXECINSTR)) in markAddrsig()
1324 if (Config->ICF == ICFLevel::All && Config->IgnoreDataAddressEquality) in findKeepUniqueSections()
1639 if (Config->ICF != ICFLevel::None) { in link()
H A DInputFiles.cpp420 else if (Config->ICF == ICFLevel::Safe) in initializeSections()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DDriver.cpp1154 unsigned ICFLevel = in link() local
1167 ICFLevel = 2; in link()
1169 ICFLevel = 0; in link()
1198 if (ICFLevel == 1 && !DoGC) in link()
1199 ICFLevel = 0; in link()
1201 Config->DoICF = ICFLevel > 0; in link()