annotate gcc/tree-affine.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents 77e2b8dfacca
children 84e7813d76e9
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.
111
kono
parents: 55
diff changeset
2 Copyright (C) 2005-2017 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
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 struct aff_comb_elt
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 /* The value of the element. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 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
35
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 /* Its coefficient in the combination. */
111
kono
parents: 55
diff changeset
37 widest_int coef;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39
111
kono
parents: 55
diff changeset
40 struct aff_tree
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 /* Type of the result of the combination. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 tree type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 /* Constant offset. */
111
kono
parents: 55
diff changeset
46 widest_int offset;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
47
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
48 /* Number of elements of the combination. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49 unsigned n;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
50
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
51 /* 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
52 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
53 elements).
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
54
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
55 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
56 (regardless of signedness of TYPE). */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 struct aff_comb_elt elts[MAX_AFF_ELTS];
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 /* 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
60 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
61 TYPE of POINTER_TYPEs or TYPE. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 tree rest;
111
kono
parents: 55
diff changeset
63 };
kono
parents: 55
diff changeset
64
kono
parents: 55
diff changeset
65 struct name_expansion;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
66
111
kono
parents: 55
diff changeset
67 widest_int wide_int_ext_for_comb (const widest_int &, aff_tree *);
kono
parents: 55
diff changeset
68 void aff_combination_const (aff_tree *, tree, const widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69 void aff_combination_elt (aff_tree *, tree, tree);
111
kono
parents: 55
diff changeset
70 void aff_combination_scale (aff_tree *, const widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71 void aff_combination_mult (aff_tree *, aff_tree *, aff_tree *);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 void aff_combination_add (aff_tree *, aff_tree *);
111
kono
parents: 55
diff changeset
73 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
74 void aff_combination_remove_elt (aff_tree *, unsigned);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 void aff_combination_convert (aff_tree *, tree);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 void tree_to_aff_combination (tree, tree, aff_tree *);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 tree aff_combination_to_tree (aff_tree *);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78 void unshare_aff_combination (aff_tree *);
111
kono
parents: 55
diff changeset
79 bool aff_combination_constant_multiple_p (aff_tree *, aff_tree *, widest_int *);
kono
parents: 55
diff changeset
80 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
81 void tree_to_aff_combination_expand (tree, tree, aff_tree *,
111
kono
parents: 55
diff changeset
82 hash_map<tree, name_expansion *> **);
kono
parents: 55
diff changeset
83 tree get_inner_reference_aff (tree, aff_tree *, widest_int *);
kono
parents: 55
diff changeset
84 void free_affine_expand_cache (hash_map<tree, name_expansion *> **);
kono
parents: 55
diff changeset
85 bool aff_comb_cannot_overlap_p (aff_tree *, const widest_int &,
kono
parents: 55
diff changeset
86 const widest_int &);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 /* Debugging functions. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89 void debug_aff (aff_tree *);
111
kono
parents: 55
diff changeset
90
kono
parents: 55
diff changeset
91 /* Return AFF's type. */
kono
parents: 55
diff changeset
92 inline tree
kono
parents: 55
diff changeset
93 aff_combination_type (aff_tree *aff)
kono
parents: 55
diff changeset
94 {
kono
parents: 55
diff changeset
95 return aff->type;
kono
parents: 55
diff changeset
96 }
kono
parents: 55
diff changeset
97
kono
parents: 55
diff changeset
98 /* Return true if AFF is actually ZERO. */
kono
parents: 55
diff changeset
99 inline bool
kono
parents: 55
diff changeset
100 aff_combination_zero_p (aff_tree *aff)
kono
parents: 55
diff changeset
101 {
kono
parents: 55
diff changeset
102 if (!aff)
kono
parents: 55
diff changeset
103 return true;
kono
parents: 55
diff changeset
104
kono
parents: 55
diff changeset
105 if (aff->n == 0 && aff->offset == 0)
kono
parents: 55
diff changeset
106 return true;
kono
parents: 55
diff changeset
107
kono
parents: 55
diff changeset
108 return false;
kono
parents: 55
diff changeset
109 }
kono
parents: 55
diff changeset
110
kono
parents: 55
diff changeset
111 /* Return true if AFF is actually const. */
kono
parents: 55
diff changeset
112 inline bool
kono
parents: 55
diff changeset
113 aff_combination_const_p (aff_tree *aff)
kono
parents: 55
diff changeset
114 {
kono
parents: 55
diff changeset
115 return (aff == NULL || aff->n == 0);
kono
parents: 55
diff changeset
116 }
kono
parents: 55
diff changeset
117
kono
parents: 55
diff changeset
118 /* Return true iff AFF contains one (negated) singleton variable. Users need
kono
parents: 55
diff changeset
119 to make sure AFF points to a valid combination. */
kono
parents: 55
diff changeset
120 inline bool
kono
parents: 55
diff changeset
121 aff_combination_singleton_var_p (aff_tree *aff)
kono
parents: 55
diff changeset
122 {
kono
parents: 55
diff changeset
123 return (aff->n == 1
kono
parents: 55
diff changeset
124 && aff->offset == 0
kono
parents: 55
diff changeset
125 && (aff->elts[0].coef == 1 || aff->elts[0].coef == -1));
kono
parents: 55
diff changeset
126 }
kono
parents: 55
diff changeset
127 #endif /* GCC_TREE_AFFINE_H */