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

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 72 SanOpts(CGM.getLangOpts().Sanitize), CurFPFeatures(CGM.getLangOpts()),
658 if (SanOpts.has(SanitizerKind::Thread)) {
667 (SanOpts.has(SanitizerKind::ReturnsNonnullAttribute) && CurCodeDecl &&
726 if (SanOpts.empty()) \
728 if (SanOpts.has(SanitizerKind::ID)) \
730 SanOpts.set(SanitizerKind::ID, false);
737 // Apply the no_sanitize* attributes to SanOpts.
740 SanOpts.Mask &= ~mask;
742 SanOpts.set(SanitizerKind::KernelAddress, false);
744 SanOpts.set(SanitizerKind::Address, false)
    [all...]
CGExprScalar.cpp 270 if (isa<ParmVarDecl>(VD) && !CGF.SanOpts.has(SanitizerKind::Alignment))
344 ScalarConversionOpts(clang::SanitizerSet SanOpts)
347 SanOpts.hasOneOf(SanitizerKind::ImplicitIntegerTruncation)),
349 SanOpts.has(SanitizerKind::ImplicitIntegerSignChange)) {}
716 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow))
744 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow) &&
1010 if (!CGF.SanOpts.hasOneOf(SanitizerKind::ImplicitIntegerTruncation))
1032 if (CGF.SanOpts.has(SanitizerKind::ImplicitIntegerSignChange) &&
1045 if (!CGF.SanOpts.has(Check.second.second))
1119 if (!CGF.SanOpts.has(SanitizerKind::ImplicitIntegerSignChange)
    [all...]
CGExpr.cpp 547 !SanOpts.has(SanitizerKind::HWAddress) &&
548 !SanOpts.has(SanitizerKind::Memory) &&
670 return SanOpts.has(SanitizerKind::Null) |
671 SanOpts.has(SanitizerKind::Alignment) |
672 SanOpts.has(SanitizerKind::ObjectSize) |
673 SanOpts.has(SanitizerKind::Vptr);
710 if ((SanOpts.has(SanitizerKind::Null) || AllowNullPointers) &&
734 if (SanOpts.has(SanitizerKind::ObjectSize) &&
764 if (SanOpts.has(SanitizerKind::Alignment) &&
805 if (SanOpts.has(SanitizerKind::Vptr) &
    [all...]
CGClass.cpp 902 : CGF(CGF), OldSanOpts(CGF.SanOpts) {
903 CGF.SanOpts.set(SanitizerKind::Bool, false);
904 CGF.SanOpts.set(SanitizerKind::Enum, false);
907 CGF.SanOpts = OldSanOpts;
1838 SanOpts.has(SanitizerKind::Memory) && ClassDecl->getNumVBases() &&
1864 SanOpts.has(SanitizerKind::Memory) && !ClassDecl->getNumVBases() &&
1888 SanOpts.has(SanitizerKind::Memory))
2670 if (SanOpts.has(SanitizerKind::CFIVCall))
2693 if (!SanOpts.has(SanitizerKind::CFICastStrict))
2716 if (!SanOpts.has(SanitizerKind::CFICastStrict)
    [all...]
CGCall.cpp 2781 if (AVAttr && !SanOpts.has(SanitizerKind::Alignment)) {
3596 if (SanOpts.has(SanitizerKind::ReturnsNonnullAttribute))
3975 if (!AC.getDecl() || !(SanOpts.has(SanitizerKind::NonnullAttribute) ||
3976 SanOpts.has(SanitizerKind::NullabilityArg)))
3985 if (SanOpts.has(SanitizerKind::NonnullAttribute))
3989 if (SanOpts.has(SanitizerKind::NullabilityArg) && !NNAttr && PVD) {
4526 if (!AA || OffsetCI || CGF.SanOpts.has(SanitizerKind::Alignment))
5312 if (SanOpts.has(SanitizerKind::Unreachable)) {
5322 if (SanOpts.hasOneOf(SanitizerKind::Address |
CGBlocks.cpp 808 BlockCGF.SanOpts = SanOpts;
CGExprCXX.cpp 397 if (SanOpts.has(SanitizerKind::CFINVCall) &&
CGDecl.cpp 739 if (!SanOpts.has(SanitizerKind::NullabilityAssign))
CGObjC.cpp 1911 if (SanOpts.has(SanitizerKind::ObjCCast)) {
CodeGenFunction.h 486 SanitizerSet SanOpts;
ItaniumCXXABI.cpp 699 bool ShouldEmitCFICheck = CGF.SanOpts.has(SanitizerKind::CFIMFCall) &&
CGBuiltin.cpp 1623 if (!SanOpts.has(SanitizerKind::Builtin) || !getTarget().isCLZForZeroUndef())

Completed in 84 milliseconds