Age | Commit message (Expand) | Author | Files | Lines |
2023-07-27 | range-op-float: Fix up -frounding-math frange_arithmetic +- handling [PR110755] | Jakub Jelinek | 1 | -0/+18 |
2023-06-13 | fix frange_nextafter odr violation | Alexandre Oliva | 1 | -3/+3 |
2023-04-04 | range-op-float: Fix reverse ops of comparisons [PR109386] | Jakub Jelinek | 1 | -16/+16 |
2023-04-01 | range-op-float: Further foperator_{,not_}equal::fold_range fix | Jakub Jelinek | 1 | -0/+14 |
2023-04-01 | range-op-float: Further comparison fixes | Jakub Jelinek | 1 | -46/+108 |
2023-03-31 | range-op-float, value-range: Fix up handling of UN{LT,LE,GT,GE,EQ}_EXPR and h... | Jakub Jelinek | 1 | -5/+35 |
2023-03-28 | range-op-float: Only flush_denormals_to_zero for +-*/ [PR109154] | Jakub Jelinek | 1 | -0/+2 |
2023-03-28 | range-op-float: Use get_nan_state in float_widen_lhs_range | Jakub Jelinek | 1 | -6/+1 |
2023-03-23 | ranger: Ranger meets aspell | Jakub Jelinek | 1 | -6/+6 |
2023-03-10 | range-op-float: Extend lhs by 0.5ulp rather than 1ulp if not -frounding-math ... | Jakub Jelinek | 1 | -2/+18 |
2023-03-10 | range-op-float: Fix up -ffinite-math-only range extension and don't extend in... | Jakub Jelinek | 1 | -4/+34 |
2023-03-09 | range-op-float: Fix up reverse binary operations [PR109008] | Jakub Jelinek | 1 | -24/+57 |
2023-02-03 | range-ops: Handle undefined ranges in frange op[12]_range [PR108647] | Aldy Hernandez | 1 | -0/+56 |
2023-01-26 | frange: Fix up foperator_{,not_}equal::fold_range for signed zeros [PR108540] | Jakub Jelinek | 1 | -5/+35 |
2023-01-15 | [PR107608] [range-ops] Avoid folding into INF when flag_trapping_math. | Aldy Hernandez | 1 | -0/+21 |
2023-01-02 | Update copyright years. | Jakub Jelinek | 1 | -1/+1 |
2022-12-08 | range-op-float: frange_arithmetic tweaks for MODE_COMPOSITE_P | Jakub Jelinek | 1 | -16/+46 |
2022-12-08 | range-op-float: Fix up frange_arithmetic [PR107967] | Jakub Jelinek | 1 | -3/+36 |
2022-12-06 | range-op-float: Improve binary reverse operations | Jakub Jelinek | 1 | -4/+29 |
2022-12-06 | range-op-float: Fix up ICE in lower_bound [PR107975] | Jakub Jelinek | 1 | -0/+6 |
2022-12-05 | range-op-float: Fix up multiplication and division reverse operation [PR107879] | Jakub Jelinek | 1 | -8/+66 |
2022-11-17 | [PR tree-optimization/107732] [range-ops] Handle attempt to abs() negatives. | Aldy Hernandez | 1 | -1/+1 |
2022-11-17 | [range-ops] Minor readability fix. | Aldy Hernandez | 1 | -2/+4 |
2022-11-16 | ragen-op-float: Fix up float_binary_op_range_finish [PR107668] | Jakub Jelinek | 1 | -1/+2 |
2022-11-12 | [range-ops] Add ability to represent open intervals in frange. | Aldy Hernandez | 1 | -4/+19 |
2022-11-12 | range-op: Implement op[12]_range operators for {PLUS,MINUS,MULT,RDIV}_EXPR | Jakub Jelinek | 1 | -0/+131 |
2022-11-12 | range-op: Cleanup floating point multiplication and division fold_range [PR10... | Jakub Jelinek | 1 | -196/+157 |
2022-11-12 | range-op: Implement floating point division fold_range [PR107569] | Jakub Jelinek | 1 | -0/+178 |
2022-11-12 | range-op: Implement floating point multiplication fold_range [PR107569] | Jakub Jelinek | 1 | -6/+185 |
2022-11-09 | Revert op[12]_range operators for PLUS_EXPR and MINUS_EXPR. | Aldy Hernandez | 1 | -45/+0 |
2022-11-09 | Fix up foperator_abs::op1_range [PR107569] | Jakub Jelinek | 1 | -3/+4 |
2022-11-09 | Implement op[12]_range operators for PLUS_EXPR and MINUS_EXPR. | Aldy Hernandez | 1 | -0/+45 |
2022-11-09 | [range-op-float] Implement MINUS_EXPR. | Aldy Hernandez | 1 | -0/+24 |
2022-11-09 | [range-op-float] Abstract out binary operator code out of PLUS_EXPR entry. | Aldy Hernandez | 1 | -79/+77 |
2022-11-09 | [range-op-float] Set NAN possibility for INF + (-INF) and vice versa. | Aldy Hernandez | 1 | -1/+25 |
2022-11-08 | [PR24021] Implement PLUS_EXPR range-op entry for floats. | Aldy Hernandez | 1 | -0/+127 |
2022-11-01 | [PR tree-optimization/107490] Handle NANs in op[12]_range. | Aldy Hernandez | 1 | -8/+32 |
2022-10-24 | [PR tree-optimization/107355] Handle NANs in abs range-op entry. | Aldy Hernandez | 1 | -0/+9 |
2022-10-20 | Add op[12]_range for UNORDERED_LT entries in range-op. | Aldy Hernandez | 1 | -0/+64 |
2022-10-20 | A false UNORDERED_<cond> means neither operand can be a NAN. | Aldy Hernandez | 1 | -10/+41 |
2022-10-20 | Do not set NAN flags for VARYING ranges when !HONOR_NANS. | Aldy Hernandez | 1 | -3/+0 |
2022-10-20 | Replace finite_operands_p with maybe_isnan. | Aldy Hernandez | 1 | -23/+18 |
2022-10-19 | Always check result from build_<COND> in range-op-float.cc | Aldy Hernandez | 1 | -21/+26 |
2022-10-17 | Add relation_trio class for range-ops. | Andrew MacLeod | 1 | -83/+87 |
2022-10-17 | Fix nan updating in range-ops. | Andrew MacLeod | 1 | -13/+10 |
2022-10-13 | Add op1_op2_relation for float operands. | Aldy Hernandez | 1 | -0/+12 |
2022-10-12 | Add range-op entry for floating point NEGATE_EXPR. | Aldy Hernandez | 1 | -0/+62 |
2022-10-12 | Add stubs for floating point range-op tests. | Aldy Hernandez | 1 | -0/+26 |
2022-10-12 | Add default relation_kind to floating point range-op entries. | Aldy Hernandez | 1 | -40/+40 |
2022-10-11 | Implement ABS_EXPR operator for frange. | Aldy Hernandez | 1 | -0/+91 |