]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-affine.h
[Ada] Warning for out-of-order record representation clauses
[thirdparty/gcc.git] / gcc / tree-affine.h
CommitLineData
d3610bea 1/* Operations with affine combinations of trees.
fbd26352 2 Copyright (C) 2005-2019 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
251317e4 31class aff_comb_elt
d3610bea 32{
251317e4 33public:
d3610bea 34 /* The value of the element. */
35 tree val;
48e1416a 36
d3610bea 37 /* Its coefficient in the combination. */
5de9d3ed 38 widest_int coef;
d3610bea 39};
40
251317e4 41class aff_tree
d3610bea 42{
251317e4 43public:
d3610bea 44 /* Type of the result of the combination. */
45 tree type;
46
47 /* Constant offset. */
1aeea61f 48 poly_widest_int offset;
d3610bea 49
50 /* Number of elements of the combination. */
51 unsigned n;
52
53 /* Elements and their coefficients. Type of elements may be different from
54 TYPE, but their sizes must be the same (STRIP_NOPS is applied to the
55 elements).
48e1416a 56
7920eed5 57 The coefficients are always sign extended from the precision of TYPE
d3610bea 58 (regardless of signedness of TYPE). */
2e966e2a 59 class aff_comb_elt elts[MAX_AFF_ELTS];
d3610bea 60
61 /* Remainder of the expression. Usually NULL, used only if there are more
48e1416a 62 than MAX_AFF_ELTS elements. Type of REST will be either sizetype for
2ccb5abd 63 TYPE of POINTER_TYPEs or TYPE. */
d3610bea 64 tree rest;
b3e7c666 65};
d3610bea 66
2e966e2a 67class name_expansion;
5f8841a5 68
1aeea61f 69void aff_combination_const (aff_tree *, tree, const poly_widest_int &);
d3610bea 70void aff_combination_elt (aff_tree *, tree, tree);
ab2c1de8 71void aff_combination_scale (aff_tree *, const widest_int &);
cf661063 72void aff_combination_mult (aff_tree *, aff_tree *, aff_tree *);
d3610bea 73void aff_combination_add (aff_tree *, aff_tree *);
ab2c1de8 74void aff_combination_add_elt (aff_tree *, tree, const widest_int &);
d3610bea 75void aff_combination_remove_elt (aff_tree *, unsigned);
76void aff_combination_convert (aff_tree *, tree);
77void tree_to_aff_combination (tree, tree, aff_tree *);
78tree aff_combination_to_tree (aff_tree *);
79void unshare_aff_combination (aff_tree *);
1aeea61f 80bool aff_combination_constant_multiple_p (aff_tree *, aff_tree *,
81 poly_widest_int *);
5f8841a5 82void aff_combination_expand (aff_tree *, hash_map<tree, name_expansion *> **);
ad4a85ad 83void tree_to_aff_combination_expand (tree, tree, aff_tree *,
5f8841a5 84 hash_map<tree, name_expansion *> **);
fbc666b8 85tree get_inner_reference_aff (tree, aff_tree *, poly_widest_int *);
5f8841a5 86void free_affine_expand_cache (hash_map<tree, name_expansion *> **);
1aeea61f 87bool aff_comb_cannot_overlap_p (aff_tree *, const poly_widest_int &,
88 const poly_widest_int &);
28d4c440 89
90/* Debugging functions. */
28d4c440 91void debug_aff (aff_tree *);
c03531c4 92
0ceae46b 93/* Return AFF's type. */
94inline tree
95aff_combination_type (aff_tree *aff)
96{
97 return aff->type;
98}
99
c03531c4 100/* Return true if AFF is actually ZERO. */
0ceae46b 101inline bool
c03531c4 102aff_combination_zero_p (aff_tree *aff)
103{
104 if (!aff)
105 return true;
106
1aeea61f 107 if (aff->n == 0 && known_eq (aff->offset, 0))
c03531c4 108 return true;
109
110 return false;
111}
ce6bb0f3 112
0ceae46b 113/* Return true if AFF is actually const. */
114inline bool
115aff_combination_const_p (aff_tree *aff)
116{
117 return (aff == NULL || aff->n == 0);
118}
119
120/* Return true iff AFF contains one (negated) singleton variable. Users need
121 to make sure AFF points to a valid combination. */
122inline bool
123aff_combination_singleton_var_p (aff_tree *aff)
124{
125 return (aff->n == 1
1aeea61f 126 && known_eq (aff->offset, 0)
0ceae46b 127 && (aff->elts[0].coef == 1 || aff->elts[0].coef == -1));
128}
ce6bb0f3 129#endif /* GCC_TREE_AFFINE_H */