Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lld/COFF/
H A DWriter.cpp1057 if (config->guardCF != GuardCFLevel::Off) in createMiscChunks()
1510 if (config->guardCF != GuardCFLevel::Off) in writeHeader()
1782 if (config->guardCF & GuardCFLevel::LongJmp) in createGuardCFTables()
1787 if (config->guardCF & GuardCFLevel::EHCont) in createGuardCFTables()
1795 if (config->guardCF & GuardCFLevel::LongJmp) in createGuardCFTables()
1797 if (config->guardCF & GuardCFLevel::EHCont) in createGuardCFTables()
2193 if (ctx.config.guardCF != GuardCFLevel::Off) in checkLoadConfig()
2243 if (ctx.config.guardCF == GuardCFLevel::Off) in checkLoadConfigGuardData()
2254 if (!(ctx.config.guardCF & GuardCFLevel::LongJmp)) in checkLoadConfigGuardData()
2260 if (!(ctx.config.guardCF & GuardCFLevel::EHCont)) in checkLoadConfigGuardData()
H A DDriverUtils.cpp103 ctx.config.guardCF = GuardCFLevel::Off; in parseGuard()
105 ctx.config.guardCF &= ~GuardCFLevel::LongJmp; in parseGuard()
107 ctx.config.guardCF &= ~GuardCFLevel::EHCont; in parseGuard()
109 ctx.config.guardCF |= GuardCFLevel::CF | GuardCFLevel::LongJmp; in parseGuard()
111 ctx.config.guardCF |= GuardCFLevel::CF | GuardCFLevel::EHCont; in parseGuard()
H A DConfig.h155 int guardCF = GuardCFLevel::Off; member