annotate gcc/tree-affine.h @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Operations with affine combinations of trees.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
2 Copyright (C) 2005-2020 Free Software Foundation, Inc.
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
3
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This file is part of GCC.
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
5
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify it
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 Free Software Foundation; either version 3, or (at your option) any
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 later version.
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
10
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful, but WITHOUT
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 for more details.
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
15
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 /* Affine combination of trees. We keep track of at most MAX_AFF_ELTS elements
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 to make things simpler; this is sufficient in most cases. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
111
kono
parents: 55
diff changeset
23 #ifndef GCC_TREE_AFFINE_H
kono
parents: 55
diff changeset
24 #define GCC_TREE_AFFINE_H
kono
parents: 55
diff changeset
25
kono
parents: 55
diff changeset
26
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 #define MAX_AFF_ELTS 8
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 /* Element of an affine combination. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
31 class aff_comb_elt
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 {
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
33 public:
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 /* The value of the element. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35 tree val;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
36
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 /* Its coefficient in the combination. */
111
kono
parents: 55
diff changeset
38 widest_int coef;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
41 class aff_tree
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 {
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
43 public:
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 /* Type of the result of the combination. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 tree type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
46
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
47 /* Constant offset. */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
48 poly_widest_int offset;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
50 /* Number of elements of the combination. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
51 unsigned n;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
52
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
53 /* Elements and their coefficients. Type of elements may be different from
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
54 TYPE, but their sizes must be the same (STRIP_NOPS is applied to the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
55 elements).
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
56
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 The coefficients are always sign extended from the precision of TYPE
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 (regardless of signedness of TYPE). */
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
59 class aff_comb_elt elts[MAX_AFF_ELTS];
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61 /* Remainder of the expression. Usually NULL, used only if there are more
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
62 than MAX_AFF_ELTS elements. Type of REST will be either sizetype for
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 TYPE of POINTER_TYPEs or TYPE. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64 tree rest;
111
kono
parents: 55
diff changeset
65 };
kono
parents: 55
diff changeset
66
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
67 class name_expansion;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
69 void aff_combination_const (aff_tree *, tree, const poly_widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 void aff_combination_elt (aff_tree *, tree, tree);
111
kono
parents: 55
diff changeset
71 void aff_combination_scale (aff_tree *, const widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 void aff_combination_mult (aff_tree *, aff_tree *, aff_tree *);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 void aff_combination_add (aff_tree *, aff_tree *);
111
kono
parents: 55
diff changeset
74 void aff_combination_add_elt (aff_tree *, tree, const widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 void aff_combination_remove_elt (aff_tree *, unsigned);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 void aff_combination_convert (aff_tree *, tree);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 void tree_to_aff_combination (tree, tree, aff_tree *);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78 tree aff_combination_to_tree (aff_tree *);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
79 void unshare_aff_combination (aff_tree *);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
80 bool aff_combination_constant_multiple_p (aff_tree *, aff_tree *,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
81 poly_widest_int *);
111
kono
parents: 55
diff changeset
82 void aff_combination_expand (aff_tree *, hash_map<tree, name_expansion *> **);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
83 void tree_to_aff_combination_expand (tree, tree, aff_tree *,
111
kono
parents: 55
diff changeset
84 hash_map<tree, name_expansion *> **);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
85 tree get_inner_reference_aff (tree, aff_tree *, poly_widest_int *);
111
kono
parents: 55
diff changeset
86 void free_affine_expand_cache (hash_map<tree, name_expansion *> **);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
87 bool aff_comb_cannot_overlap_p (aff_tree *, const poly_widest_int &,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
88 const poly_widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 /* Debugging functions. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
91 void debug_aff (aff_tree *);
111
kono
parents: 55
diff changeset
92
kono
parents: 55
diff changeset
93 /* Return AFF's type. */
kono
parents: 55
diff changeset
94 inline tree
kono
parents: 55
diff changeset
95 aff_combination_type (aff_tree *aff)
kono
parents: 55
diff changeset
96 {
kono
parents: 55
diff changeset
97 return aff->type;
kono
parents: 55
diff changeset
98 }
kono
parents: 55
diff changeset
99
kono
parents: 55
diff changeset
100 /* Return true if AFF is actually ZERO. */
kono
parents: 55
diff changeset
101 inline bool
kono
parents: 55
diff changeset
102 aff_combination_zero_p (aff_tree *aff)
kono
parents: 55
diff changeset
103 {
kono
parents: 55
diff changeset
104 if (!aff)
kono
parents: 55
diff changeset
105 return true;
kono
parents: 55
diff changeset
106
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
107 if (aff->n == 0 && known_eq (aff->offset, 0))
111
kono
parents: 55
diff changeset
108 return true;
kono
parents: 55
diff changeset
109
kono
parents: 55
diff changeset
110 return false;
kono
parents: 55
diff changeset
111 }
kono
parents: 55
diff changeset
112
kono
parents: 55
diff changeset
113 /* Return true if AFF is actually const. */
kono
parents: 55
diff changeset
114 inline bool
kono
parents: 55
diff changeset
115 aff_combination_const_p (aff_tree *aff)
kono
parents: 55
diff changeset
116 {
kono
parents: 55
diff changeset
117 return (aff == NULL || aff->n == 0);
kono
parents: 55
diff changeset
118 }
kono
parents: 55
diff changeset
119
kono
parents: 55
diff changeset
120 /* Return true iff AFF contains one (negated) singleton variable. Users need
kono
parents: 55
diff changeset
121 to make sure AFF points to a valid combination. */
kono
parents: 55
diff changeset
122 inline bool
kono
parents: 55
diff changeset
123 aff_combination_singleton_var_p (aff_tree *aff)
kono
parents: 55
diff changeset
124 {
kono
parents: 55
diff changeset
125 return (aff->n == 1
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
126 && known_eq (aff->offset, 0)
111
kono
parents: 55
diff changeset
127 && (aff->elts[0].coef == 1 || aff->elts[0].coef == -1));
kono
parents: 55
diff changeset
128 }
kono
parents: 55
diff changeset
129 #endif /* GCC_TREE_AFFINE_H */