HomeSort by: relevance | last modified time | path
    Searched refs:Sanitize (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
SanitizerMetadata.cpp 35 if (!isAsanHwasanOrMemTag(CGM.getLangOpts().Sanitize))
66 if (!isAsanHwasanOrMemTag(CGM.getLangOpts().Sanitize))
83 if (isAsanHwasanOrMemTag(CGM.getLangOpts().Sanitize))
CGDeclCXX.cpp 390 if (getLangOpts().Sanitize.has(SanitizerKind::Address) &&
394 if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) &&
398 if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) &&
402 if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) &&
406 if (getLangOpts().Sanitize.has(SanitizerKind::MemTag) &&
410 if (getLangOpts().Sanitize.has(SanitizerKind::Thread) &&
414 if (getLangOpts().Sanitize.has(SanitizerKind::Memory) &&
418 if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) &&
422 if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) &&
426 if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) &
    [all...]
BackendUtil.cpp 723 if (LangOpts.Sanitize.has(SanitizerKind::LocalBounds)) {
739 if (LangOpts.Sanitize.has(SanitizerKind::Address)) {
746 if (LangOpts.Sanitize.has(SanitizerKind::KernelAddress)) {
753 if (LangOpts.Sanitize.has(SanitizerKind::HWAddress)) {
760 if (LangOpts.Sanitize.has(SanitizerKind::KernelHWAddress)) {
767 if (LangOpts.Sanitize.has(SanitizerKind::Memory)) {
774 if (LangOpts.Sanitize.has(SanitizerKind::KernelMemory)) {
781 if (LangOpts.Sanitize.has(SanitizerKind::Thread)) {
788 if (LangOpts.Sanitize.has(SanitizerKind::DataFlow)) {
1112 if (LangOpts.Sanitize.has(Mask))
    [all...]
CodeGenFunction.cpp 60 LangOpts.Sanitize.has(SanitizerKind::HWAddress) ||
61 LangOpts.Sanitize.has(SanitizerKind::Memory))
72 SanOpts(CGM.getLangOpts().Sanitize), CurFPFeatures(CGM.getLangOpts()),
CodeGenModule.cpp 149 if (LangOpts.Sanitize.has(SanitizerKind::Thread) ||
648 if (LangOpts.Sanitize.has(SanitizerKind::CFIICall)) {
2047 if (!LangOpts.Sanitize.has(SanitizerKind::CFIICall))
2591 LangOpts.Sanitize.Mask &
6272 return ((LangOpts.Sanitize.has(SanitizerKind::CFIVCall) &&
6274 (LangOpts.Sanitize.has(SanitizerKind::CFINVCall) &&
6276 (LangOpts.Sanitize.has(SanitizerKind::CFIDerivedCast) &&
6278 (LangOpts.Sanitize.has(SanitizerKind::CFIUnrelatedCast) &&
ItaniumCXXABI.cpp 2213 if (CGM.getLangOpts().Sanitize.has(SanitizerKind::Address) && AS == 0 &&
2242 if (!CGM.getLangOpts().Sanitize.has(SanitizerKind::Address) || AS != 0)
CGCall.cpp 2241 getLangOpts().Sanitize.has(SanitizerKind::Memory) ||
2242 getLangOpts().Sanitize.has(SanitizerKind::Return);
CGExpr.cpp 3408 SanOpts = CGM.getLangOpts().Sanitize;
3455 if (CGM.getLangOpts().Sanitize.has(Mask))
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
OSTargets.cpp 31 if (Opts.Sanitize.has(SanitizerKind::Address))
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MinGW.cpp 101 const SanitizerArgs &Sanitize = TC.getSanitizerArgs();
271 if (Sanitize.needsAsanRt()) {
Darwin.cpp 1306 const SanitizerArgs &Sanitize = getSanitizerArgs();
1307 if (Sanitize.needsAsanRt())
1309 if (Sanitize.needsLsanRt())
1311 if (Sanitize.needsUbsanRt())
1313 Sanitize.requiresMinimalRuntime() ? "ubsan_minimal"
1315 Sanitize.needsSharedRt());
1316 if (Sanitize.needsTsanRt())
1318 if (Sanitize.needsFuzzer() && !Args.hasArg(options::OPT_dynamiclib)) {
1324 if (Sanitize.needsStatsRt()) {
Clang.cpp 5734 const SanitizerArgs &Sanitize = TC.getSanitizerArgs();
5735 Sanitize.addArgs(TC, Args, CmdArgs, InputType);
6652 (WholeProgramVTables || Sanitize.needsLTO()) &&
6657 if (Sanitize.needsLTO() && !SplitLTOUnit)
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
LangOptions.h 282 SanitizerSet Sanitize;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInvocation.cpp 3307 for (StringRef Sanitizer : serializeSanitizerKinds(Opts.Sanitize))
3496 for (StringRef Sanitizer : serializeSanitizerKinds(Opts.Sanitize))
3542 // ObjCAAutoRefCount and Sanitize LangOpts are used to setup the
3552 Diags, Opts.Sanitize);
3951 Diags, Opts.Sanitize);
4414 !LangOpts.Sanitize.has(SanitizerKind::Address) &&
4415 !LangOpts.Sanitize.has(SanitizerKind::KernelAddress) &&
4416 !LangOpts.Sanitize.has(SanitizerKind::Memory) &&
4417 !LangOpts.Sanitize.has(SanitizerKind::KernelMemory);
4434 !Res.getLangOpts()->Sanitize.empty())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 4620 const SanitizerMask EnabledAsanMask = Context.getLangOpts().Sanitize.Mask &
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 345 SanitizerSet ExistingSanitizers = ExistingLangOpts.Sanitize;
346 SanitizerSet ImportedSanitizers = LangOpts.Sanitize;
5753 LangOpts.Sanitize.set(SanitizerKind::ID, Record[Idx++]);
ASTWriter.cpp 1242 Record.push_back(LangOpts.Sanitize.has(SanitizerKind::ID));

Completed in 58 milliseconds