Home
last modified time | relevance | path

Searched refs:Sanitize (Results 1 – 23 of 23) sorted by relevance

/external/clang/lib/CodeGen/
DSanitizerMetadata.cpp28 if (!CGM.getLangOpts().Sanitize.hasOneOf(SanitizerKind::Address | in reportGlobalToASan()
60 if (!CGM.getLangOpts().Sanitize.hasOneOf(SanitizerKind::Address | in reportGlobalToASan()
72 if (CGM.getLangOpts().Sanitize.hasOneOf(SanitizerKind::Address | in disableSanitizerForGlobal()
DBackendUtil.cpp273 if (LangOpts.Sanitize.has(SanitizerKind::EfficiencyCacheFrag)) in addEfficiencySanitizerPass()
275 else if (LangOpts.Sanitize.has(SanitizerKind::EfficiencyWorkingSet)) in addEfficiencySanitizerPass()
396 if (LangOpts.Sanitize.has(SanitizerKind::LocalBounds)) { in CreatePasses()
412 if (LangOpts.Sanitize.has(SanitizerKind::Address)) { in CreatePasses()
419 if (LangOpts.Sanitize.has(SanitizerKind::KernelAddress)) { in CreatePasses()
426 if (LangOpts.Sanitize.has(SanitizerKind::Memory)) { in CreatePasses()
433 if (LangOpts.Sanitize.has(SanitizerKind::Thread)) { in CreatePasses()
440 if (LangOpts.Sanitize.has(SanitizerKind::DataFlow)) { in CreatePasses()
447 if (LangOpts.Sanitize.hasOneOf(SanitizerKind::Efficiency)) { in CreatePasses()
DCGDeclCXX.cpp279 if (getLangOpts().Sanitize.hasOneOf(SanitizerKind::Address | in CreateGlobalInitOrDestructFunction()
282 if (getLangOpts().Sanitize.has(SanitizerKind::Thread)) in CreateGlobalInitOrDestructFunction()
284 if (getLangOpts().Sanitize.has(SanitizerKind::Memory)) in CreateGlobalInitOrDestructFunction()
286 if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack)) in CreateGlobalInitOrDestructFunction()
DCodeGenModule.cpp125 if (LangOpts.Sanitize.has(SanitizerKind::Thread) || in CodeGenModule()
1003 if (!LangOpts.Sanitize.has(SanitizerKind::CFIICall)) in CreateFunctionTypeMetadata()
1411 if (!LangOpts.Sanitize.hasOneOf( in isInSanitizerBlacklist()
3469 !LangOpts.Sanitize.has(SanitizerKind::Address) && in GetAddrOfConstantStringFromLiteral()
4251 return ((LangOpts.Sanitize.has(SanitizerKind::CFIVCall) && in NeedAllVtablesTypeId()
4253 (LangOpts.Sanitize.has(SanitizerKind::CFINVCall) && in NeedAllVtablesTypeId()
4255 (LangOpts.Sanitize.has(SanitizerKind::CFIDerivedCast) && in NeedAllVtablesTypeId()
4257 (LangOpts.Sanitize.has(SanitizerKind::CFIUnrelatedCast) && in NeedAllVtablesTypeId()
DCGDecl.cpp920 if (LangOpts.Sanitize.has(SanitizerKind::Memory)) in shouldEmitLifetimeMarkers()
DItaniumCXXABI.cpp1765 if (CGM.getLangOpts().Sanitize.has(SanitizerKind::Address) && AS == 0 && in InitializeArrayCookie()
1793 if (!CGM.getLangOpts().Sanitize.has(SanitizerKind::Address) || AS != 0) in readArrayCookieImpl()
DCodeGenFunction.cpp46 SanOpts(CGM.getLangOpts().Sanitize), IsSanitizerScope(false), in CodeGenFunction()
DCGExpr.cpp2719 if (CGM.getLangOpts().Sanitize.has(Mask)) in EmitCfiCheckFail()
/external/clang/lib/Basic/
DLangOptions.cpp33 Sanitize.clear(); in resetNonModularOptions()
/external/clang/include/clang/Basic/
DLangOptions.h87 SanitizerSet Sanitize;
/external/pdfium/third_party/lcms2-2.6/
DREADME.pdfium28 0015-sanitize-float-read.patch: Sanitize floating point read. Partially backport
/external/ImageMagick/
DChangeLog124 * Sanitize all delegate emedded formatting characters.
147 * Sanitize input filename for http / https delegates (improved patch).
/external/clang/lib/Lex/
DPPMacroExpansion.cpp1058 LangOpts.Sanitize.hasOneOf(SanitizerKind::Address | in HasFeature()
1093 .Case("memory_sanitizer", LangOpts.Sanitize.has(SanitizerKind::Memory)) in HasFeature()
1094 .Case("thread_sanitizer", LangOpts.Sanitize.has(SanitizerKind::Thread)) in HasFeature()
1095 .Case("dataflow_sanitizer", LangOpts.Sanitize.has(SanitizerKind::DataFlow)) in HasFeature()
1097 LangOpts.Sanitize.hasOneOf(SanitizerKind::Efficiency)) in HasFeature()
1219 .Case("safe_stack", LangOpts.Sanitize.has(SanitizerKind::SafeStack)) in HasFeature()
/external/nanopb-c/
DCHANGELOG.txt83 Sanitize #ifndef filename (issue 50)
/external/libusb-compat/
DChangeLog63 Sanitize more endpoint addresses
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_flags.inc151 "Sanitize complete address space; "
/external/clang/lib/Driver/
DToolChains.cpp430 const SanitizerArgs &Sanitize = getSanitizerArgs(); in AddLinkRuntimeLibArgs() local
431 if (Sanitize.needsAsanRt()) in AddLinkRuntimeLibArgs()
433 if (Sanitize.needsUbsanRt()) in AddLinkRuntimeLibArgs()
435 if (Sanitize.needsTsanRt()) in AddLinkRuntimeLibArgs()
437 if (Sanitize.needsStatsRt()) { in AddLinkRuntimeLibArgs()
444 if (Sanitize.needsEsanRt()) in AddLinkRuntimeLibArgs()
DTools.cpp5014 const SanitizerArgs &Sanitize = getToolChain().getSanitizerArgs(); in ConstructJob() local
5015 Sanitize.addArgs(getToolChain(), Args, CmdArgs, InputType); in ConstructJob()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp2146 Diags, Opts.Sanitize); in ParseLangArgs()
2362 Diags, LangOpts.Sanitize); in CreateFromArgs()
2386 !LangOpts.Sanitize.has(SanitizerKind::Address) && in CreateFromArgs()
2387 !LangOpts.Sanitize.has(SanitizerKind::Memory); in CreateFromArgs()
/external/kmod/
DNEWS7 - Sanitize use of strcpy and allow to grow from small strings on stack
/external/clang/lib/AST/
DDecl.cpp3815 if (!Context.getLangOpts().Sanitize.hasOneOf( in mayInsertExtraPadding()
/external/clang/lib/Serialization/
DASTWriter.cpp1357 Record.push_back(LangOpts.Sanitize.has(SanitizerKind::ID)); in WriteControlBlock()
DASTReader.cpp4699 LangOpts.Sanitize.set(SanitizerKind::ID, Record[Idx++]); in ParseLanguageOptions()