Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp104 ctx.config.guardCF = GuardCFLevel::Off; in parseGuard()
106 ctx.config.guardCF &= ~GuardCFLevel::LongJmp; in parseGuard()
108 ctx.config.guardCF &= ~GuardCFLevel::EHCont; in parseGuard()
110 ctx.config.guardCF |= GuardCFLevel::CF | GuardCFLevel::LongJmp; in parseGuard()
112 ctx.config.guardCF |= GuardCFLevel::CF | GuardCFLevel::EHCont; in parseGuard()
H A DConfig.h92 enum GuardCFLevel { enum
172 int guardCF = GuardCFLevel::Off;
H A DWriter.cpp1864 if (config->guardCF != GuardCFLevel::Off) in writeHeader()
2089 if (config->guardCF == GuardCFLevel::Off) { in createGuardCFTables()
2163 if (config->guardCF & GuardCFLevel::LongJmp) in createGuardCFTables()
2168 if (config->guardCF & GuardCFLevel::EHCont) in createGuardCFTables()
2176 if (config->guardCF & GuardCFLevel::LongJmp) in createGuardCFTables()
2178 if (config->guardCF & GuardCFLevel::EHCont) in createGuardCFTables()
2949 if (ctx.config.guardCF == GuardCFLevel::Off) in prepareLoadConfig()
2960 if (!(ctx.config.guardCF & GuardCFLevel::LongJmp)) in prepareLoadConfig()
2966 if (!(ctx.config.guardCF & GuardCFLevel::EHCont)) in prepareLoadConfig()
H A DSymbolTable.cpp568 if (ctx.config.guardCF != GuardCFLevel::Off) in initializeLoadConfig()