Lines Matching refs:SanOpts
457 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitMul()
466 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitMul()
830 if (CGF.SanOpts.has(SanitizerKind::FloatCastOverflow) && in EmitScalarConversion()
1155 if (CGF.SanOpts.has(SanitizerKind::ArrayBounds)) in VisitArraySubscriptExpr()
1387 if (CGF.SanOpts.has(SanitizerKind::CFIUnrelatedCast)) { in VisitCastExpr()
1422 if (CGF.SanOpts.has(SanitizerKind::CFIDerivedCast)) in VisitCastExpr()
1621 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitAddConsiderOverflowBehavior()
1669 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) && in EmitScalarPrePostIncDec()
1720 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) { in EmitScalarPrePostIncDec()
2126 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) && in EmitCompoundAssignLValue()
2238 if (CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero)) { in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2243 if (CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow) && in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2265 if ((CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero) || in EmitDiv()
2266 CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) && in EmitDiv()
2270 } else if (CGF.SanOpts.has(SanitizerKind::FloatDivideByZero) && in EmitDiv()
2299 if (CGF.SanOpts.has(SanitizerKind::IntegerDivideByZero)) { in EmitRem()
2358 if (!isSigned || CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) { in EmitOverflowCheckedBinOp()
2449 if (CGF.SanOpts.has(SanitizerKind::ArrayBounds)) in emitPointerArithmetic()
2589 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitAdd()
2598 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitAdd()
2620 if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow)) in EmitSub()
2629 CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) in EmitSub()
2716 bool SanitizeBase = CGF.SanOpts.has(SanitizerKind::ShiftBase) && in EmitShl()
2718 bool SanitizeExponent = CGF.SanOpts.has(SanitizerKind::ShiftExponent); in EmitShl()
2784 else if (CGF.SanOpts.has(SanitizerKind::ShiftExponent) && in EmitShr()