• Home
  • Raw
  • Download

Lines Matching refs:SanOpts

456         if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow))  in EmitMul()
465 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitMul()
836 if (CGF.SanOpts.has(SanitizerKind::FloatCastOverflow) && in EmitScalarConversion()
1143 if (CGF.SanOpts.has(SanitizerKind::ArrayBounds)) in VisitArraySubscriptExpr()
1386 if (CGF.SanOpts.has(SanitizerKind::CFIUnrelatedCast)) { in VisitCastExpr()
1425 if (CGF.SanOpts.has(SanitizerKind::CFIDerivedCast)) in VisitCastExpr()
1616 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitIncDecConsiderOverflowBehavior()
1656 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) && in EmitScalarPrePostIncDec()
1704 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) { in EmitScalarPrePostIncDec()
2117 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) && in EmitCompoundAssignLValue()
2233 if (CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero)) { in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2238 if (CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow) && in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2260 if ((CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero) || in EmitDiv()
2261 CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) && in EmitDiv()
2265 } else if (CGF.SanOpts.has(SanitizerKind::FloatDivideByZero) && in EmitDiv()
2294 if (CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero)) { in EmitRem()
2353 if (!isSigned || CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) { in EmitOverflowCheckedBinOp()
2444 if (CGF.SanOpts.has(SanitizerKind::ArrayBounds)) in emitPointerArithmetic()
2581 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitAdd()
2590 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitAdd()
2612 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitSub()
2621 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitSub()
2708 bool SanitizeBase = CGF.SanOpts.has(SanitizerKind::ShiftBase) && in EmitShl()
2710 bool SanitizeExponent = CGF.SanOpts.has(SanitizerKind::ShiftExponent); in EmitShl()
2776 else if (CGF.SanOpts.has(SanitizerKind::ShiftExponent) && in EmitShr()