/external/clang/lib/CodeGen/ |
D | SanitizerMetadata.cpp | 28 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()
|
D | BackendUtil.cpp | 273 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()
|
D | CGDeclCXX.cpp | 279 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()
|
D | CodeGenModule.cpp | 125 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()
|
D | CGDecl.cpp | 920 if (LangOpts.Sanitize.has(SanitizerKind::Memory)) in shouldEmitLifetimeMarkers()
|
D | ItaniumCXXABI.cpp | 1765 if (CGM.getLangOpts().Sanitize.has(SanitizerKind::Address) && AS == 0 && in InitializeArrayCookie() 1793 if (!CGM.getLangOpts().Sanitize.has(SanitizerKind::Address) || AS != 0) in readArrayCookieImpl()
|
D | CodeGenFunction.cpp | 46 SanOpts(CGM.getLangOpts().Sanitize), IsSanitizerScope(false), in CodeGenFunction()
|
D | CGExpr.cpp | 2719 if (CGM.getLangOpts().Sanitize.has(Mask)) in EmitCfiCheckFail()
|
/external/clang/lib/Basic/ |
D | LangOptions.cpp | 33 Sanitize.clear(); in resetNonModularOptions()
|
/external/clang/include/clang/Basic/ |
D | LangOptions.h | 87 SanitizerSet Sanitize;
|
/external/pdfium/third_party/lcms2-2.6/ |
D | README.pdfium | 28 0015-sanitize-float-read.patch: Sanitize floating point read. Partially backport
|
/external/ImageMagick/ |
D | ChangeLog | 124 * Sanitize all delegate emedded formatting characters. 147 * Sanitize input filename for http / https delegates (improved patch).
|
/external/clang/lib/Lex/ |
D | PPMacroExpansion.cpp | 1058 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/ |
D | CHANGELOG.txt | 83 Sanitize #ifndef filename (issue 50)
|
/external/libusb-compat/ |
D | ChangeLog | 63 Sanitize more endpoint addresses
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_flags.inc | 151 "Sanitize complete address space; "
|
/external/clang/lib/Driver/ |
D | ToolChains.cpp | 430 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()
|
D | Tools.cpp | 5014 const SanitizerArgs &Sanitize = getToolChain().getSanitizerArgs(); in ConstructJob() local 5015 Sanitize.addArgs(getToolChain(), Args, CmdArgs, InputType); in ConstructJob()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 2146 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/ |
D | NEWS | 7 - Sanitize use of strcpy and allow to grow from small strings on stack
|
/external/clang/lib/AST/ |
D | Decl.cpp | 3815 if (!Context.getLangOpts().Sanitize.hasOneOf( in mayInsertExtraPadding()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 1357 Record.push_back(LangOpts.Sanitize.has(SanitizerKind::ID)); in WriteControlBlock()
|
D | ASTReader.cpp | 4699 LangOpts.Sanitize.set(SanitizerKind::ID, Record[Idx++]); in ParseLanguageOptions()
|