Searched refs:optOr (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | HWAddressSanitizer.cpp | 258 template <typename T> T optOr(cl::opt<T> &Opt, T Other) { in optOr() function 271 return optOr(ClInstrumentWithCalls, TargetTriple.getArch() == Triple::x86_64); in shouldInstrumentWithCalls() 275 return optOr(ClUseStackSafety, !DisableOptimization); in mightUseStackSafetyAnalysis() 295 this->Recover = optOr(ClRecover, Recover); in HWAddressSanitizer() 296 this->CompileKernel = optOr(ClEnableKhwasan, CompileKernel); in HWAddressSanitizer() 621 UseShortGranules = optOr(ClUseShortGranules, NewRuntime); in initializeModule() 624 !optOr(ClInlineAllChecks, Recover); in initializeModule() 627 InlineFastPath = optOr(ClInlineFastPathChecks, !(TargetTriple.isAndroid() || in initializeModule() 640 InstrumentLandingPads = optOr(ClInstrumentLandingPads, !NewRuntime); in initializeModule() 643 !CompileKernel && !UsePageAliases && optOr(ClGlobals, NewRuntime); in initializeModule() [all …]
|