Home
last modified time | relevance | path

Searched refs:guardCF (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp108 ctx.config.guardCF = GuardCFLevel::Off; in parseGuard()
110 ctx.config.guardCF &= ~GuardCFLevel::LongJmp; in parseGuard()
112 ctx.config.guardCF &= ~GuardCFLevel::EHCont; in parseGuard()
114 ctx.config.guardCF |= GuardCFLevel::CF | GuardCFLevel::LongJmp; in parseGuard()
116 ctx.config.guardCF |= GuardCFLevel::CF | GuardCFLevel::EHCont; in parseGuard()
H A DWriter.cpp1146 if (config->guardCF != GuardCFLevel::Off) in createMiscChunks()
1671 if (config->guardCF != GuardCFLevel::Off) in writeHeader()
1952 if (config->guardCF & GuardCFLevel::LongJmp) in createGuardCFTables()
1957 if (config->guardCF & GuardCFLevel::EHCont) in createGuardCFTables()
1965 if (config->guardCF & GuardCFLevel::LongJmp) in createGuardCFTables()
1967 if (config->guardCF & GuardCFLevel::EHCont) in createGuardCFTables()
2431 if (ctx.config.guardCF != GuardCFLevel::Off) in prepareLoadConfig()
2486 if (ctx.config.guardCF == GuardCFLevel::Off) in checkLoadConfigGuardData()
2497 if (!(ctx.config.guardCF & GuardCFLevel::LongJmp)) in checkLoadConfigGuardData()
2503 if (!(ctx.config.guardCF & GuardCFLevel::EHCont)) in checkLoadConfigGuardData()
H A DConfig.h171 int guardCF = GuardCFLevel::Off; member