index
:
riscv-gnu-toolchain/gcc.git
devel/analyzer
devel/autopar_devel
devel/autopar_europar_2021
devel/bypass-asm
devel/c++-contracts
devel/c++-coroutines
devel/c++-modules
devel/c++-name-lookup
devel/coarray_native
devel/fortran_unsigned
devel/gccgo
devel/gfortran-caf
devel/gimple-linterchange
devel/gomp-5_0-branch
devel/icpp2021
devel/ira-select
devel/ix86/evex512
devel/jlaw/crc
devel/loop-unswitch-support-switches
devel/lto-offload
devel/m2link
devel/modula-2
devel/mold-lto-plugin
devel/mold-lto-plugin-v2
devel/nothrow-detection
devel/omp/gcc-10
devel/omp/gcc-11
devel/omp/gcc-12
devel/omp/gcc-13
devel/omp/gcc-14
devel/omp/gcc-9
devel/omp/ompd
devel/power-ieee128
devel/range-gen3
devel/ranger
devel/rust/master
devel/sh-lra
devel/sphinx
devel/ssa-range
devel/subreg-coalesce
devel/unified-autovect
master
releases/egcs-1.0
releases/egcs-1.1
releases/gcc-10
releases/gcc-11
releases/gcc-12
releases/gcc-13
releases/gcc-14
releases/gcc-2.95
releases/gcc-2.95.2.1-branch
releases/gcc-3.0
releases/gcc-3.1
releases/gcc-3.2
releases/gcc-3.3
releases/gcc-3.4
releases/gcc-4.0
releases/gcc-4.1
releases/gcc-4.2
releases/gcc-4.3
releases/gcc-4.4
releases/gcc-4.5
releases/gcc-4.6
releases/gcc-4.7
releases/gcc-4.8
releases/gcc-4.9
releases/gcc-5
releases/gcc-6
releases/gcc-7
releases/gcc-8
releases/gcc-9
releases/libgcj-2.95
trunk
Unnamed repository; edit this file 'description' to name the repository.
root
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
gcc
/
match.pd
Age
Commit message (
Expand
)
Author
Files
Lines
2023-07-04
PR 110487: `(a !=/== CST1 ? CST2 : CST3)` pattern for type safety
Andrew Pinski
1
-16
/
+8
2023-07-04
Fix PR 110487: invalid signed boolean value
Andrew Pinski
1
-2
/
+20
2023-07-04
middle-end/110495 - avoid associating constants with (VL) vectors
Richard Biener
1
-13
/
+15
2023-06-29
middle-end/110461 - pattern applying wrongly to vectors
Richard Biener
1
-0
/
+1
2023-06-27
match.pd: Use element_mode instead of TYPE_MODE.
Robin Dapp
1
-2
/
+4
2023-06-23
[aarch64/match.pd] Fix ICE observed in PR110280.
Prathamesh Kulkarni
1
-1
/
+8
2023-06-23
Use element_precision for match.pd arith conversion optimization
Richard Biener
1
-4
/
+4
2023-06-23
Bogus and missed folding on vector compares
Richard Biener
1
-2
/
+2
2023-06-16
tree-optimization/110278 - uns < (typeof uns)(uns != 0) is always false
Richard Biener
1
-0
/
+11
2023-06-16
tree-optimization/110269 - restore missed condition folding
Richard Biener
1
-2
/
+2
2023-06-09
Add Plus to the op list of `(zero_one == 0) ? y : z <op> y` pattern
Andrew Pinski
1
-2
/
+2
2023-06-09
Change the `(zero_one ==/!= 0) ? y : z <op> y` patterns to use multiply rathe...
Andrew Pinski
1
-4
/
+4
2023-06-09
MATCH: Allow unsigned types for `X & -Y -> X * Y` pattern
Andrew Pinski
1
-1
/
+4
2023-06-09
MATCH: Fix zero_one_valued_p not to match signed 1 bit integers
Andrew Pinski
1
-3
/
+10
2023-06-09
middle-end/110182 - TYPE_PRECISION on VECTOR_TYPE causes wrong-code
Richard Biener
1
-3
/
+3
2023-06-07
MATCH: Fix comment for `(zero_one ==/!= 0) ? y : z <op> y` patterns
Andrew Pinski
1
-2
/
+2
2023-06-07
match.pd: Improve zero_one_valued_p
Jakub Jelinek
1
-5
/
+2
2023-06-06
For the `-A CMP -B -> B CMP A` pattern allow EQ/NE for all integer types
Andrew Pinski
1
-2
/
+6
2023-06-06
Add match patterns for `a ? onezero : onezero` where one of the two operands ...
Andrew Pinski
1
-0
/
+18
2023-06-06
Match: zero_one_valued_p should match 0 constants too
Andrew Pinski
1
-0
/
+5
2023-05-30
Add a != MIN/MAX_VALUE_CST ? CST-+1 : a to minmax_from_comparison
Andrew Pinski
1
-2
/
+2
2023-05-30
MATCH: Move `a <= CST1 ? MAX<a, CST2> : a` optimization to match
Andrew Pinski
1
-0
/
+18
2023-05-29
Fix artificial overflow during GENERIC folding
Eric Botcazou
1
-0
/
+9
2023-05-24
PR middle-end/109840: Preserve popcount/parity type in match.pd.
Roger Sayle
1
-10
/
+17
2023-05-21
atch.pd: Ensure (op CONSTANT_CLASS_P CONSTANT_CLASS_P) is simplified [PR109505]
Jakub Jelinek
1
-10
/
+10
2023-05-16
MATCH: [PR109424] Simplify min/max of boolean arguments
Andrew Pinski
1
-0
/
+8
2023-05-14
MATCH: Add pattern for `signbit(x) ? x : -x` into abs (and swapped)
Andrew Pinski
1
-0
/
+10
2023-05-12
MATCH: Fix PR 109834, ICE with popcount combined with bswap
Andrew Pinski
1
-2
/
+2
2023-05-12
tree-optimization/109791 - simplify (unsigned)&foo - (unsigned)(&foo + o)
Richard Biener
1
-0
/
+12
2023-05-11
aarch64: convert vector shift + bitwise and + multiply to vector compare
mtsamis
1
-0
/
+61
2023-05-11
match.pd: Simplify popcount(X&Y)+popcount(X|Y) as popcount(X)+popcount(Y)
Roger Sayle
1
-0
/
+19
2023-05-11
match.pd: Simplify popcount/parity of bswap/rotate.
Roger Sayle
1
-0
/
+50
2023-05-05
MATCH: Add ABSU<a> == 0 to a == 0 simplification
Andrew Pinski
1
-5
/
+6
2023-05-02
MATCH: Port CLRSB part of builtin_zero_pattern
Andrew Pinski
1
-0
/
+8
2023-05-02
tree-optimization: [PR109702] MATCH: Fix a ? func(a) : N patterns
Andrew Pinski
1
-8
/
+8
2023-04-30
MATCH: add some of what phiopt's builtin_zero_pattern did
Andrew Pinski
1
-2
/
+39
2023-04-28
PHIOPT: Move two_value_replacement to match.pd
Andrew Pinski
1
-0
/
+94
2023-04-28
MATCH: Add patterns from phiopt's minmax_replacement
Andrew Pinski
1
-0
/
+16
2023-04-28
MATCH: Factor out code that for min max detection with constants
Andrew Pinski
1
-28
/
+1
2023-04-27
wrong GIMPLE from (bit_field_ref CTOR ..) simplification
Richard Biener
1
-2
/
+7
2023-04-26
Remove some uses of deprecated irange API.
Aldy Hernandez
1
-5
/
+5
2023-04-22
match.pd: Fix fneg/fadd optimization [PR109583]
Jakub Jelinek
1
-1
/
+2
2023-04-18
match.pd: Improve fneg/fadd optimization [PR109240]
Jakub Jelinek
1
-54
/
+67
2023-04-04
sanitizer: missing signed integer overflow errors [PR109107]
Marek Polacek
1
-3
/
+3
2023-03-26
match.pd: Fix up fneg/fadd simplification [PR109230]
Jakub Jelinek
1
-0
/
+1
2023-02-18
Remove #if GIMPLE around 1 - a pattern
Andrew Pinski
1
-2
/
+0
2023-02-14
Simplify "1 - bool_val" to "bool_val ^ 1"
Andrew Pinski
1
-0
/
+13
2023-02-09
match.pd: Simplify BFR of insert when extracting exactly all inserted bits [P...
Jakub Jelinek
1
-3
/
+6
2023-02-09
match.pd: When simplifying BFR of an insert, require a mode precision integra...
Andrew Pinski
1
-1
/
+3
2023-01-27
Add support for conditional xorsign [PR96373]
Richard Sandiford
1
-0
/
+14
[next]