]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-affine.h
Update copyright years.
[thirdparty/gcc.git] / gcc / tree-affine.h
CommitLineData
d3610bea 1/* Operations with affine combinations of trees.
f1717362 2 Copyright (C) 2005-2016 Free Software Foundation, Inc.
48e1416a 3
d3610bea 4This file is part of GCC.
48e1416a 5
d3610bea 6GCC is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8c4c00c1 8Free Software Foundation; either version 3, or (at your option) any
d3610bea 9later version.
48e1416a 10
d3610bea 11GCC is distributed in the hope that it will be useful, but WITHOUT
12ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
48e1416a 15
d3610bea 16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
d3610bea 19
20/* Affine combination of trees. We keep track of at most MAX_AFF_ELTS elements
21 to make things simpler; this is sufficient in most cases. */
22
ce6bb0f3 23#ifndef GCC_TREE_AFFINE_H
24#define GCC_TREE_AFFINE_H
25
e913b5cd 26
d3610bea 27#define MAX_AFF_ELTS 8
28
29/* Element of an affine combination. */
30
31struct aff_comb_elt
32{
33 /* The value of the element. */
34 tree val;
48e1416a 35
d3610bea 36 /* Its coefficient in the combination. */
5de9d3ed 37 widest_int coef;
d3610bea 38};
39
b3e7c666 40struct aff_tree
d3610bea 41{
42 /* Type of the result of the combination. */
43 tree type;
44
45 /* Constant offset. */
5de9d3ed 46 widest_int offset;
d3610bea 47
48 /* Number of elements of the combination. */
49 unsigned n;
50
51 /* Elements and their coefficients. Type of elements may be different from
52 TYPE, but their sizes must be the same (STRIP_NOPS is applied to the
53 elements).
48e1416a 54
7920eed5 55 The coefficients are always sign extended from the precision of TYPE
d3610bea 56 (regardless of signedness of TYPE). */
57 struct aff_comb_elt elts[MAX_AFF_ELTS];
58
59 /* Remainder of the expression. Usually NULL, used only if there are more
48e1416a 60 than MAX_AFF_ELTS elements. Type of REST will be either sizetype for
2ccb5abd 61 TYPE of POINTER_TYPEs or TYPE. */
d3610bea 62 tree rest;
b3e7c666 63};
d3610bea 64
5f8841a5 65struct name_expansion;
66
ab2c1de8 67widest_int wide_int_ext_for_comb (const widest_int &, aff_tree *);
5de9d3ed 68void aff_combination_const (aff_tree *, tree, const widest_int &);
d3610bea 69void aff_combination_elt (aff_tree *, tree, tree);
ab2c1de8 70void aff_combination_scale (aff_tree *, const widest_int &);
cf661063 71void aff_combination_mult (aff_tree *, aff_tree *, aff_tree *);
d3610bea 72void aff_combination_add (aff_tree *, aff_tree *);
ab2c1de8 73void aff_combination_add_elt (aff_tree *, tree, const widest_int &);
d3610bea 74void aff_combination_remove_elt (aff_tree *, unsigned);
75void aff_combination_convert (aff_tree *, tree);
76void tree_to_aff_combination (tree, tree, aff_tree *);
77tree aff_combination_to_tree (aff_tree *);
78void unshare_aff_combination (aff_tree *);
5de9d3ed 79bool aff_combination_constant_multiple_p (aff_tree *, aff_tree *, widest_int *);
5f8841a5 80void aff_combination_expand (aff_tree *, hash_map<tree, name_expansion *> **);
ad4a85ad 81void tree_to_aff_combination_expand (tree, tree, aff_tree *,
5f8841a5 82 hash_map<tree, name_expansion *> **);
55af3bae 83tree get_inner_reference_aff (tree, aff_tree *, widest_int *);
5f8841a5 84void free_affine_expand_cache (hash_map<tree, name_expansion *> **);
5de9d3ed 85bool aff_comb_cannot_overlap_p (aff_tree *, const widest_int &,
86 const widest_int &);
28d4c440 87
88/* Debugging functions. */
28d4c440 89void debug_aff (aff_tree *);
c03531c4 90
91/* Return true if AFF is actually ZERO. */
92static inline bool
93aff_combination_zero_p (aff_tree *aff)
94{
95 if (!aff)
96 return true;
97
a2d59721 98 if (aff->n == 0 && aff->offset == 0)
c03531c4 99 return true;
100
101 return false;
102}
ce6bb0f3 103
104#endif /* GCC_TREE_AFFINE_H */