Lines Matching refs:SanOpts

456         if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow))  in EmitMul()
465 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitMul()
835 if (CGF.SanOpts.has(SanitizerKind::FloatCastOverflow) && in EmitScalarConversion()
1158 if (CGF.SanOpts.has(SanitizerKind::ArrayBounds)) in VisitArraySubscriptExpr()
1400 if (CGF.SanOpts.has(SanitizerKind::CFIUnrelatedCast)) { in VisitCastExpr()
1436 if (CGF.SanOpts.has(SanitizerKind::CFIDerivedCast)) in VisitCastExpr()
1634 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitIncDecConsiderOverflowBehavior()
1673 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) && in EmitScalarPrePostIncDec()
1721 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) { in EmitScalarPrePostIncDec()
2130 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) && in EmitCompoundAssignLValue()
2246 if (CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero)) { in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2251 if (CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow) && in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2273 if ((CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero) || in EmitDiv()
2274 CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) && in EmitDiv()
2278 } else if (CGF.SanOpts.has(SanitizerKind::FloatDivideByZero) && in EmitDiv()
2307 if (CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero)) { in EmitRem()
2366 if (!isSigned || CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) { in EmitOverflowCheckedBinOp()
2457 if (CGF.SanOpts.has(SanitizerKind::ArrayBounds)) in emitPointerArithmetic()
2594 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitAdd()
2603 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitAdd()
2625 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitSub()
2634 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitSub()
2721 bool SanitizeBase = CGF.SanOpts.has(SanitizerKind::ShiftBase) && in EmitShl()
2723 bool SanitizeExponent = CGF.SanOpts.has(SanitizerKind::ShiftExponent); in EmitShl()
2789 else if (CGF.SanOpts.has(SanitizerKind::ShiftExponent) && in EmitShr()