HomeSort by: relevance | last modified time | path
    Searched defs:ovf (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libgcc/soft-fp/
fixdfbitint.c 42 USItype ovf = 0; local
50 ovf = 1;
55 ovf = 1;
69 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, DI);
fixsfbitint.c 42 USItype ovf = 0; local
50 ovf = 1;
55 ovf = 1;
69 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, SI);
fixtfbitint.c 52 USItype ovf = 0; local
60 ovf = 1;
65 ovf = 1;
79 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, TI);
fixxfbitint.c 53 USItype ovf = 0; local
61 ovf = 1;
66 ovf = 1;
80 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, TI);
  /src/external/gpl3/gcc/dist/gcc/
fold-const-call.cc 1828 bool ovf = false; local
1834 ovf = true;
1839 if (ovf)
1844 return build_complex (type, r, build_int_cst (itype, ovf));
2011 bool ovf = false; local
2018 ovf = true;
2023 ovf = true;
2026 return build_complex (type, r2, build_int_cst (itype, ovf));
tree-chrec.cc 487 wi::overflow_type ovf = wi::OVF_NONE;
490 wi::to_wide (op1), TYPE_SIGN (type), &ovf);
491 if (ovf != wi::OVF_NONE)
486 wi::overflow_type ovf = wi::OVF_NONE; local
tree-ssa-loop-manip.cc 104 bool ovf; local
106 if (!tree_expr_nonnegative_warnv_p (step, &ovf)
value-range.cc 1048 wi::overflow_type ovf; local
1051 lim = wi::add (min, -1, sign, &ovf);
1053 lim = wi::sub (min, 1, sign, &ovf);
1055 if (!ovf)
1063 lim = wi::sub (max, -1, sign, &ovf);
1065 lim = wi::add (max, 1, sign, &ovf);
1066 if (!ovf)
1778 wi::overflow_type ovf; local
1789 tmp = subtract_one (orig_range.lower_bound (), ttype, ovf);
1791 if (ovf)
    [all...]
vr-values.cc 80 always overflow. Set *OVF to true if it is known to always
86 tree op0, tree op1, bool *ovf, gimple *s = NULL)
99 *ovf = arith_overflowed_p (subcode, type, vr0min,
102 subcode == MINUS_EXPR ? vr1min : vr1max) != *ovf)
106 if (arith_overflowed_p (subcode, type, vr0min, vr1max) != *ovf
107 || arith_overflowed_p (subcode, type, vr0max, vr1min) != *ovf)
110 if (*ovf)
219 wi::overflow_type ovf; local
222 nit, sign, &ovf);
224 if (ovf || !wi::fits_to_tree_p (max_step, type)
1717 bool ovf = false; local
    [all...]
tree-ssa-math-opts.cc 3894 if USE_STMT is unsigned overflow check ovf != 0 for
3895 STMT, -1 if USE_STMT is unsigned overflow check ovf == 0
4480 tree ovf = make_ssa_name (type); local
4481 g2 = gimple_build_assign (ovf, IMAGPART_EXPR,
4515 gimple_cond_set_lhs (cond_stmt, ovf);
4524 gimple_assign_set_rhs1 (use_stmt, ovf);
4534 boolean_type_node, ovf,
4675 thereof. Handle those like the ovf = ovf1 + ovf2; case to recognize
4744 gimple *ovf = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs1, 0)); local
4747 if (gimple_call_internal_p (ovf, code == PLUS_EXP
    [all...]
tree-vect-patterns.cc 4746 wi::overflow_type ovf; local
4747 wi::add (max, adder, UNSIGNED, &ovf);
4748 if (ovf == wi::OVF_NONE)
  /src/external/gpl3/gcc.old/dist/gcc/
value-range.cc 233 wi::overflow_type ovf; local
238 wide_int lim1 = wi::sub (w_min, 1, sign, &ovf);
239 gcc_checking_assert (ovf != wi::OVF_OVERFLOW);
247 wide_int lim2 = wi::add (w_max, 1, sign, &ovf);
248 gcc_checking_assert (ovf != wi::OVF_OVERFLOW);
1867 wi::overflow_type ovf; local
1878 tmp = subtract_one (orig_range.lower_bound (), ttype, ovf);
1880 if (ovf)
1892 tmp = wi::add (wi::to_wide (orig_range.m_base[j]), 1, sign, &ovf);
1895 ttype, ovf);
    [all...]
tree-ssa-loop-manip.cc 102 bool ovf; local
104 if (!tree_expr_nonnegative_warnv_p (step, &ovf)
tree-ssa-phiopt.cc 785 wi::overflow_type ovf; local
795 wi::add (min + (wi::neg_p (a) ? 0 : 1), a, SIGNED, &ovf);
796 if (ovf)
809 wi::sub (a, min + (wi::neg_p (min) ? 0 : 1), SIGNED, &ovf);
810 if (ovf)
vr-values.cc 1055 always overflow. Set *OVF to true if it is known to always
1061 tree op0, tree op1, bool *ovf, gimple *s = NULL)
1094 *ovf = arith_overflowed_p (subcode, type, vr0min,
1097 subcode == MINUS_EXPR ? vr1min : vr1max) != *ovf)
1101 if (arith_overflowed_p (subcode, type, vr0min, vr1max) != *ovf
1102 || arith_overflowed_p (subcode, type, vr0max, vr1min) != *ovf)
1105 if (*ovf)
1291 bool ovf = false; local
1293 op0, op1, &ovf))
1294 vr->set (build_int_cst (type, ovf));
4093 bool ovf = false; local
    [all...]
tree-ssa-math-opts.cc 3681 if USE_STMT is unsigned overflow check ovf != 0 for
3682 STMT, -1 if USE_STMT is unsigned overflow check ovf == 0
4249 tree ovf = make_ssa_name (type); local
4250 g2 = gimple_build_assign (ovf, IMAGPART_EXPR,
4284 gimple_cond_set_lhs (cond_stmt, ovf);
4293 gimple_assign_set_rhs1 (use_stmt, ovf);
4303 boolean_type_node, ovf,
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-warn.cc 2374 bool ovf; local
2393 if (tree_expr_nonnegative_warnv_p (sop, &ovf))
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-call.cc 2470 tree gpr, fpr, ovf, sav, t;
2489 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
2528 t = make_tree (TREE_TYPE (ovf), crtl->args.internal_arg_pointer);
2531 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t);
2559 tree gpr, fpr, ovf, sav, reg, t, u;
2656 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
2764 t = ovf;
2781 gimplify_assign (unshare_expr (ovf), t, pre_p);
2465 tree gpr, fpr, ovf, sav, t; local
2554 tree gpr, fpr, ovf, sav, reg, t, u; local
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-warn.cc 2286 bool ovf; local
2305 if (tree_expr_nonnegative_warnv_p (sop, &ovf))
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-call.cc 2474 tree gpr, fpr, ovf, sav, t;
2493 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
2532 t = make_tree (TREE_TYPE (ovf), crtl->args.internal_arg_pointer);
2535 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t);
2563 tree gpr, fpr, ovf, sav, reg, t, u;
2660 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
2768 t = ovf;
2785 gimplify_assign (unshare_expr (ovf), t, pre_p);
2469 tree gpr, fpr, ovf, sav, t; local
2558 tree gpr, fpr, ovf, sav, reg, t, u; local
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386.cc 4698 tree gpr, fpr, ovf, sav, t;
4766 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
4795 type = TREE_TYPE (ovf);
4804 t = build2 (MODIFY_EXPR, type, ovf, t);
4831 tree gpr, fpr, ovf, sav, t;
4855 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE);
5121 t = ovf;
5125 t = fold_build_pointer_plus_hwi (ovf, align - 1);
5134 gimplify_assign (unshare_expr (ovf), t, pre_p);
4685 tree gpr, fpr, ovf, sav, t; local
4818 tree gpr, fpr, ovf, sav, t; local
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386.cc 4581 tree gpr, fpr, ovf, sav, t;
4649 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
4678 type = TREE_TYPE (ovf);
4687 t = build2 (MODIFY_EXPR, type, ovf, t);
4714 tree gpr, fpr, ovf, sav, t;
4738 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE);
5002 t = ovf;
5006 t = fold_build_pointer_plus_hwi (ovf, align - 1);
5015 gimplify_assign (unshare_expr (ovf), t, pre_p);
4568 tree gpr, fpr, ovf, sav, t; local
4701 tree gpr, fpr, ovf, sav, t; local
  /src/external/gpl3/gcc.old/dist/gcc/cp/
constexpr.cc 1871 tree ovf local
1877 return build_complex (TREE_TYPE (t), result, ovf);
  /src/external/gpl3/gcc/dist/gcc/c/
c-typeck.cc 5815 bool ovf;
5852 && tree_expr_nonnegative_warnv_p (op1, &ovf))
5854 && tree_expr_nonnegative_warnv_p (op2, &ovf)))
5796 bool ovf; local
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-typeck.cc 5359 bool ovf;
5396 && tree_expr_nonnegative_warnv_p (op1, &ovf))
5398 && tree_expr_nonnegative_warnv_p (op2, &ovf)))
5342 bool ovf; local

Completed in 126 milliseconds

1 2