HomeSort by: relevance | last modified time | path
    Searched defs:ovf2 (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
range-op.cc 1613 wi::overflow_type ovf1, ovf2; local
1623 wi::add (op1.upper_bound (), op2.upper_bound (), sign, &ovf2);
1626 ovf1 = ovf2 = wi::OVF_NONE;
1629 if (!ovf1 && !ovf2)
1644 else if (ovf1 && ovf1 == ovf2)
tree-ssa-math-opts.cc 4673 the most significant limb handled as r = op1 + op2 + ovf1 + ovf2;
4674 or r = op1 - op2 - ovf1 - ovf2; or various equivalent expressions
4675 thereof. Handle those like the ovf = ovf1 + ovf2; case to recognize
4729 Say r = op1 + op2 + ovf1 + ovf2; where the (ovf1 + ovf2) part
4968 gimple *ovf2 local
4975 || !gimple_call_internal_p (ovf2, ifn)
4989 for (gimple *ovf = ovf1; ovf; ovf = (ovf == ovf1 ? ovf2 : NULL))
4997 == (ovf == ovf1 ? ovf2 : ovf1)))
5001 /* Make sure ovf2 is the .*_OVERFLOW call with argumen
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
range-op.cc 1245 wi::overflow_type ovf1, ovf2; local
1255 wi::add (op1.upper_bound (), op2.upper_bound (), sign, &ovf2);
1258 ovf1 = ovf2 = wi::OVF_NONE;
1261 if (!ovf1 && !ovf2)
1276 else if (ovf1 && ovf1 == ovf2)

Completed in 31 milliseconds