diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2021-11-04 08:28:44 +0000 |
---|---|---|
committer | Richard Sandiford <richard.sandiford@arm.com> | 2021-11-04 08:28:44 +0000 |
commit | 95318d469f4d293446b4fd38d527fd5d64ce0b70 (patch) | |
tree | 1564afa1b39d7bd657b2087bd4a7e9062b3a8dde /gcc | |
parent | bc9c8e5f8af08c513a4a4c329c50ba6559ff6d5c (diff) | |
download | gcc-95318d469f4d293446b4fd38d527fd5d64ce0b70.zip gcc-95318d469f4d293446b4fd38d527fd5d64ce0b70.tar.gz gcc-95318d469f4d293446b4fd38d527fd5d64ce0b70.tar.bz2 |
Fix RTL frontend handling of const_vectors
The RTL frontend makes sure that CONST_INTs use shared rtxes where
appropriate. We should do the same thing for CONST_VECTORs,
reusing CONST0_RTX, CONST1_RTX and CONSTM1_RTX. This also has
the effect of setting CONST_VECTOR_NELTS_PER_PATTERN and
CONST_VECTOR_NPATTERNS.
While looking at where to add that, I noticed we had some dead #includes
in read-rtl.c. Some of the stuff that read-rtl-function.c does was once
in that file instead.
gcc/
* read-rtl.c: Remove dead !GENERATOR_FILE block.
* read-rtl-function.c (function_reader::consolidate_singletons):
Generate canonical CONST_VECTORs.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/read-rtl-function.c | 3 | ||||
-rw-r--r-- | gcc/read-rtl.c | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/gcc/read-rtl-function.c b/gcc/read-rtl-function.c index 941d1e1..5699f57 100644 --- a/gcc/read-rtl-function.c +++ b/gcc/read-rtl-function.c @@ -1498,6 +1498,9 @@ function_reader::consolidate_singletons (rtx x) case CONST_INT: return gen_rtx_CONST_INT (GET_MODE (x), INTVAL (x)); + case CONST_VECTOR: + return gen_rtx_CONST_VECTOR (GET_MODE (x), XVEC (x, 0)); + default: break; } diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index 0411666..b33dee0 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -36,12 +36,6 @@ along with GCC; see the file COPYING3. If not see #include "read-md.h" #include "gensupport.h" -#ifndef GENERATOR_FILE -#include "function.h" -#include "memmodel.h" -#include "emit-rtl.h" -#endif - /* One element in a singly-linked list of (integer, string) pairs. */ struct map_value { struct map_value *next; |