GCC Middle and Back End API Reference
value-relation.h
Go to the documentation of this file.
1/* Header file for the value range relational processing.
2 Copyright (C) 2020-2026 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_VALUE_RELATION_H
22#define GCC_VALUE_RELATION_H
23
24
25// This file provides access to a relation oracle which can be used to
26// maintain and query relations and equivalences between SSA_NAMES.
27//
28// The general range_query object provided in value-query.h provides
29// access to an oracle, if one is available, via the oracle() method.
30// There are also a couple of access routines provided, which even if there is
31// no oracle, will return the default VREL_VARYING no relation.
32//
33// Typically, when a ranger object is active, there will be an oracle, and
34// any information available can be directly queried. Ranger also sets and
35// utilizes the relation information to enhance it's range calculations, this
36// is totally transparent to the client, and they are free to make queries.
37//
38// relation_kind is a new enum which represents the different relations,
39// often with a direct mapping to tree codes. ie VREL_EQ is equivalent to
40// EQ_EXPR.
41//
42// A query is made requesting the relation between SSA1 and SSA@ in a basic
43// block, or on an edge, the possible return values are:
44//
45// VREL_EQ, VREL_NE, VREL_LT, VREL_LE, VREL_GT, and VREL_GE mean the same.
46// VREL_VARYING : No relation between the 2 names.
47// VREL_UNDEFINED : Impossible relation (ie, A < B && A > B)
48//
49// The oracle maintains VREL_EQ relations with equivalency sets, so if a
50// relation comes back VREL_EQ, it is also possible to query the set of
51// equivalencies. These are basically bitmaps over ssa_names. An iterator is
52// provided later for this activity.
53//
54// Relations are maintained via the dominance trees and are optimized assuming
55// they are registered in dominance order. When a new relation is added, it
56// is intersected with whatever existing relation exists in the dominance tree
57// and registered at the specified block.
58
59
60// These codes are arranged such that VREL_VARYING is the first code, and all
61// the rest are contiguous.
62
63typedef enum relation_kind_t
64{
65 VREL_VARYING = 0, // No known relation, AKA varying.
66 VREL_UNDEFINED, // Impossible relation, ie (r1 < r2) && (r2 > r1)
67 VREL_LT, // r1 < r2
68 VREL_LE, // r1 <= r2
69 VREL_GT, // r1 > r2
70 VREL_GE, // r1 >= r2
71 VREL_EQ, // r1 == r2
72 VREL_NE, // r1 != r2
73 VREL_PE8, // 8 bit partial equivalency
74 VREL_PE16, // 16 bit partial equivalency
75 VREL_PE32, // 32 bit partial equivalency
76 VREL_PE64, // 64 bit partial equivalency
77 VREL_LAST // terminate, not a real relation.
79
80// General relation kind transformations.
86 { return (r >= VREL_LT && r <= VREL_GE); }
88 { return (r >= VREL_PE8 && r <= VREL_PE64); }
90 { return r == VREL_EQ || relation_partial_equiv_p (r); }
91
92void print_relation (FILE *f, relation_kind rel);
93
94// Adjust range as an equivalence.
96
98{
99public:
101 virtual ~relation_oracle () { }
102
103 // register a relation between 2 ssa names.
104 bool record (gimple *, relation_kind, tree, tree);
106 virtual bool record (basic_block, relation_kind, tree, tree) { return false; }
107
108 // Query if there is any relation between SSA1 and SSA2.
109 relation_kind query (gimple *s, tree ssa1, tree ssa2);
110 relation_kind query (edge e, tree ssa1, tree ssa2);
112
113 // Remove relations for an SSA_NAME
114 virtual void clear (tree) { }
115
116 virtual void dump (FILE *, basic_block) const { }
117 virtual void dump (FILE *) const { }
118 void debug () const;
119protected:
124 tree) const
125 { return NULL; }
126 // Return equivalency set for an SSA name in a basic block.
128 // Return partial equivalency record for an SSA name.
129 virtual const class pe_slice *partial_equiv_set (tree) { return NULL; }
130 void valid_equivs (bitmap b, const_bitmap equivs, basic_block bb);
131 // Query for a relation between two equivalency sets in a basic block.
134 friend class path_oracle;
135 // Used to Avoid registering multiple eqiuvalences from the same statement.
137};
138
139// Instance with no storage used for default queries with no active oracle.
141
142// This class represents an equivalency set, and contains a link to the next
143// one in the list to be searched.
144
146{
147public:
148 bitmap m_names; // ssa-names in equiv set.
149 basic_block m_bb; // Block this belongs to
150 equiv_chain *m_next; // Next in block list.
151 void dump (FILE *f) const; // Show names in this list.
152 equiv_chain *find (unsigned ssa);
153};
154
156{
157public:
158 tree ssa_base; // Slice of this name.
159 relation_kind code; // bits that are equivalent.
160 bitmap members; // Other members in the partial equivalency.
161};
162
163// The equivalency oracle maintains equivalencies using the dominator tree.
164// Equivalencies apply to an entire basic block. Equivalencies on edges
165// can be represented only on edges whose destination is a single-pred block,
166// and the equivalence is simply applied to that successor block.
167
169{
170public:
171 equiv_oracle ();
172 ~equiv_oracle ();
173
174 const_bitmap equiv_set (tree ssa, basic_block bb) final override;
175 bool record (basic_block bb, relation_kind k, tree ssa1, tree ssa2) override;
176
177 relation_kind partial_equiv (tree ssa1, tree ssa2, tree *base = NULL) const;
180
181 virtual void clear (tree name);
182 void dump (FILE *f, basic_block bb) const override;
183 void dump (FILE *f) const override;
184
185protected:
187 const pe_slice *partial_equiv_set (tree name) final override;
188 inline bool has_equiv_p (unsigned v) { return bitmap_bit_p (m_equiv_set, v); }
191private:
192 bitmap m_equiv_set; // Index by ssa-name. true if an equivalence exists.
193 vec <equiv_chain *> m_equiv; // Index by BB. list of equivalences.
195 {
196 public:
197 bitmap m_self_equiv; // Self equivalency set.
198 bitmap m_block_list; // BB's name occurs in equivalencies.
199 };
200 vec <name_info> m_name_info; // Index by ssa-name.
201 vec <pe_slice> m_partial; // Partial equivalencies.
202
203 void limit_check (basic_block bb = NULL);
204 equiv_chain *find_equiv_block (unsigned ssa, int bb) const;
205 equiv_chain *find_equiv_dom (tree name, basic_block bb) const;
206
207 bitmap register_equiv (basic_block bb, unsigned v, equiv_chain *equiv_1);
209 equiv_chain *equiv_2);
210
211 void register_equiv_block (unsigned v, unsigned bbi);
213
214 void register_initial_def (tree ssa);
215 void add_equiv_to_block (basic_block bb, bitmap equiv);
216};
217
218// Summary block header for relations.
219
221{
222public:
223 bitmap m_names; // ssa_names with relations in this block.
224 class relation_chain *m_head; // List of relations in block.
225 int m_num_relations; // Number of relations in block.
227 void clear (tree name);
228};
229
230// A relation oracle maintains a set of relations between ssa_names using the
231// dominator tree structures. Equivalencies are considered a subset of
232// a general relation and maintained by an equivalence oracle by transparently
233// passing any EQ_EXPR relations to it.
234// Relations are handled at the basic block level. All relations apply to
235// an entire block, and are thus kept in a summary index by block.
236// Similar to the equivalence oracle, edges are handled by applying the
237// relation to the destination block of the edge, but ONLY if that block
238// has a single successor. For now.
239
241{
242public:
243 dom_oracle (bool do_trans_p = true);
244 ~dom_oracle ();
245
246 bool record (basic_block bb, relation_kind k, tree op1, tree op2)
247 final override;
248
249 relation_kind query (basic_block bb, tree ssa1, tree ssa2) final override;
251 final override;
252
253 virtual void clear (tree name);
254
255 void dump (FILE *f, basic_block bb) const final override;
256 void dump (FILE *f) const final override;
257protected:
259 tree) const override;
262 bitmap m_relation_set; // Index by ssa-name. True if a relation exists
263 vec <relation_chain_head> m_relations; // Index by BB, list of relations.
264 vec <bitmap> m_block_list; // Index by ssa-name. Blocks with relations.
266 const_bitmap b2) const;
267 relation_kind find_relation_block (int bb, tree ssa1, tree ssa2,
268 relation_chain **obj = NULL) const;
269 relation_kind find_relation_dom (basic_block bb, tree ssa1, tree ssa2) const;
271 tree op1, tree op2);
273 tree op1, tree op2);
274 void record_relation_block (unsigned v, unsigned bbi);
275 void register_transitives (basic_block, const class value_relation &);
277};
278
279// A path_oracle implements relations in a list. The only sense of ordering
280// is the latest registered relation is the first found during a search.
281// It can be constructed with an optional "root" oracle which will be used
282// to look up any relations not found in the list.
283// This allows the client to walk paths starting at some block and register
284// and query relations along that path, ignoring other edges.
285//
286// For registering a relation, a query if made of the root oracle if there is
287// any known relationship at block BB, and it is combined with this new
288// relation and entered in the list.
289//
290// Queries are resolved by looking first in the list, and only if nothing is
291// found is the root oracle queried at block BB.
292//
293// reset_path is used to clear all locally registered paths to initial state.
294
296{
297public:
298 path_oracle (relation_oracle *oracle = NULL);
299 ~path_oracle ();
300 const_bitmap equiv_set (tree, basic_block) final override;
301 bool record (basic_block, relation_kind, tree, tree) final override;
302 void killing_def (tree);
303 relation_kind query (basic_block, tree, tree) final override;
305 void reset_path (relation_oracle *oracle = NULL);
306 void set_root_oracle (relation_oracle *oracle) { m_root = oracle; }
307
308 virtual void clear (tree name);
309
310 void dump (FILE *, basic_block) const final override;
311 void dump (FILE *) const final override;
312private:
313 bool register_equiv (basic_block bb, tree ssa1, tree ssa2);
318
321};
322
323// Used to assist with iterating over the equivalence list.
325public:
327 bool full = true, bool partial = false);
328 void next ();
330protected:
335 unsigned m_y;
337};
338
339#define FOR_EACH_EQUIVALENCE(oracle, bb, name, equiv_name) \
340 for (equiv_relation_iterator iter (oracle, bb, name, true, false); \
341 ((equiv_name) = iter.get_name ()); \
342 iter.next ())
343
344#define FOR_EACH_PARTIAL_EQUIV(oracle, bb, name, equiv_name, equiv_rel) \
345 for (equiv_relation_iterator iter (oracle, bb, name, false, true); \
346 ((equiv_name) = iter.get_name (&equiv_rel)); \
347 iter.next ())
348
349#define FOR_EACH_PARTIAL_AND_FULL_EQUIV(oracle, bb, name, equiv_name, \
350 equiv_rel) \
351 for (equiv_relation_iterator iter (oracle, bb, name, true, true); \
352 ((equiv_name) = iter.get_name (&equiv_rel)); \
353 iter.next ())
354
355// -----------------------------------------------------------------------
356
357// Range-ops deals with a LHS and 2 operands. A relation trio is a set of
358// 3 potential relations packed into a single unsigned value.
359// 1 - LHS relation OP1
360// 2 - LHS relation OP2
361// 3 - OP1 relation OP2
362// VREL_VARYING is a value of 0, and is the default for each position.
381
382// Default VREL_VARYING for all 3 relations.
383#define TRIO_VARYING relation_trio ()
384
385#define TRIO_SHIFT 4
386#define TRIO_MASK 0x000F
387
388// These 3 classes are shortcuts for when a caller has a single relation to
389// pass as a trio, it can simply construct the appropriate one. The other
390// unspecified relations will be VREL_VARYING.
391
393{
395 m_val = 0;
396}
397
401{
403 unsigned i1 = (unsigned) lhs_op1;
404 unsigned i2 = ((unsigned) lhs_op2) << TRIO_SHIFT;
405 unsigned i3 = ((unsigned) op1_op2) << (TRIO_SHIFT * 2);
406 m_val = i1 | i2 | i3;
407}
408
409inline relation_trio
414inline relation_trio
419inline relation_trio
424
425inline relation_kind
430
431inline relation_kind
436
437inline relation_kind
439{
440 return (relation_kind) ((m_val >> (TRIO_SHIFT * 2)) & TRIO_MASK);
441}
442
443inline relation_trio
448
449// -----------------------------------------------------------------------
450
451// The value-relation class is used to encapsulate the representation of an
452// individual relation between 2 ssa-names, and to facilitate operating on
453// the relation.
454
456{
457public:
460 void set_relation (relation_kind kind, tree n1, tree n2);
461
462 inline relation_kind kind () const { return related; }
463 inline tree op1 () const { return name1; }
464 inline tree op2 () const { return name2; }
465
467 bool union_ (value_relation &p);
468 bool intersect (value_relation &p);
469 void swap ();
470 bool apply_transitive (const value_relation &rel);
471
472 void dump (FILE *f) const;
473private:
476};
477
478// Set relation R between ssa_name N1 and N2.
479
480inline void
482{
483 gcc_checking_assert (TREE_CODE (n1) == SSA_NAME
484 && TREE_CODE (n2) == SSA_NAME);
485 related = r;
486 name1 = n1;
487 name2 = n2;
488}
489
490// Default constructor.
491
492inline
499
500// Constructor for relation R between SSA version N1 and N2.
501
502inline
507
508
520
521#define FOR_EACH_RELATION_BB(oracle, bb, vr) \
522 for (block_relation_iterator iter (oracle, bb, vr); \
523 !iter.m_done; \
524 iter.get_next_relation (vr))
525
526#define FOR_EACH_RELATION_NAME(oracle, bb, name, vr) \
527 for (block_relation_iterator iter (oracle, bb, vr, name); \
528 !iter.m_done; \
529 iter.get_next_relation (vr))
530
531
532// Return the number of bits associated with partial equivalency T.
533// Return 0 if this is not a supported partial equivalency relation.
534
535inline int
537{
538 switch (t)
539 {
540 case VREL_PE8:
541 return 8;
542 case VREL_PE16:
543 return 16;
544 case VREL_PE32:
545 return 32;
546 case VREL_PE64:
547 return 64;
548 default:
549 return 0;
550 }
551}
552
553// Return the partial equivalency code associated with the number of BITS.
554// return VREL_VARYING if there is no exact match.
555
556inline relation_kind
557bits_to_pe (int bits)
558{
559 switch (bits)
560 {
561 case 8:
562 return VREL_PE8;
563 case 16:
564 return VREL_PE16;
565 case 32:
566 return VREL_PE32;
567 case 64:
568 return VREL_PE64;
569 default:
570 return VREL_VARYING;
571 }
572}
573
574// Given partial equivalencies T1 and T2, return the smallest kind.
575
576inline relation_kind
578{
581 // VREL_PE are declared small to large, so simple min will suffice.
582 return MIN (t1, t2);
583}
584#endif /* GCC_VALUE_RELATION_H */
const relation_oracle * m_oracle
Definition value-relation.h:514
basic_block m_bb
Definition value-relation.h:515
void get_next_relation(value_relation &vr)
Definition value-relation.cc:1083
block_relation_iterator(const relation_oracle *oracle, basic_block bb, value_relation &, tree name=NULL)
Definition value-relation.cc:1062
bool m_done
Definition value-relation.h:517
tree m_name
Definition value-relation.h:518
relation_chain * m_ptr
Definition value-relation.h:516
relation_chain * create_relation_in_bb(basic_block bb, relation_kind k, tree op1, tree op2)
Definition value-relation.cc:1332
bool record(basic_block bb, relation_kind k, tree op1, tree op2) final override
Definition value-relation.cc:1290
bitmap m_tmp2
Definition value-relation.h:261
~dom_oracle()
Definition value-relation.cc:1148
void register_transitives(basic_block, const class value_relation &)
Definition value-relation.cc:1426
virtual relation_chain * next_relation(basic_block, relation_chain *, tree) const override
Definition value-relation.cc:1035
relation_chain * search_and_merge_relation(basic_block bb, relation_kind k, tree op1, tree op2)
Definition value-relation.cc:1381
bool m_do_trans_p
Definition value-relation.h:260
void dump(FILE *f, basic_block bb) const final override
Definition value-relation.cc:1814
vec< bitmap > m_block_list
Definition value-relation.h:264
void record_relation_block(unsigned v, unsigned bbi)
Definition value-relation.cc:1316
relation_kind find_relation_dom(basic_block bb, tree ssa1, tree ssa2) const
Definition value-relation.cc:1742
bitmap m_relation_set
Definition value-relation.h:262
relation_kind query(basic_block bb, tree ssa1, tree ssa2) final override
Definition value-relation.cc:1777
relation_kind find_relation_block(unsigned bb, const_bitmap b1, const_bitmap b2) const
Definition value-relation.cc:1537
dom_oracle(bool do_trans_p=true)
Definition value-relation.cc:1134
bitmap m_tmp
Definition value-relation.h:261
virtual void clear(tree name)
Definition value-relation.cc:1188
relation_kind recomputed_relation(basic_block, edge, tree, tree) const
Definition value-relation.cc:1620
vec< relation_chain_head > m_relations
Definition value-relation.h:263
Definition value-relation.h:146
void dump(FILE *f) const
Definition value-relation.cc:289
equiv_chain * find(unsigned ssa)
Definition value-relation.cc:272
equiv_chain * m_next
Definition value-relation.h:150
bitmap m_names
Definition value-relation.h:148
basic_block m_bb
Definition value-relation.h:149
Definition value-relation.h:195
bitmap m_block_list
Definition value-relation.h:198
bitmap m_self_equiv
Definition value-relation.h:197
relation_kind partial_equiv(tree ssa1, tree ssa2, tree *base=NULL) const
Definition value-relation.cc:435
bool has_equiv_p(unsigned v)
Definition value-relation.h:188
equiv_chain * find_equiv_dom(tree name, basic_block bb) const
Definition value-relation.cc:541
const_bitmap equiv_set(tree ssa, basic_block bb) final override
Definition value-relation.cc:480
void register_equiv_block(unsigned v, unsigned bbi)
Definition value-relation.cc:455
bool record(basic_block bb, relation_kind k, tree ssa1, tree ssa2) override
Definition value-relation.cc:701
vec< pe_slice > m_partial
Definition value-relation.h:201
bitmap m_equiv_set
Definition value-relation.h:192
bitmap_obstack m_bitmaps
Definition value-relation.h:189
void limit_check(basic_block bb=NULL)
Definition value-relation.cc:793
struct obstack m_chain_obstack
Definition value-relation.h:190
vec< name_info > m_name_info
Definition value-relation.h:200
~equiv_oracle()
Definition value-relation.cc:332
equiv_oracle()
Definition value-relation.cc:312
bool add_partial_equiv(relation_kind, tree, tree)
Definition value-relation.cc:345
void dump(FILE *f, basic_block bb) const override
Definition value-relation.cc:803
relation_kind query(basic_block, tree, tree) override
Definition value-relation.cc:503
equiv_chain * find_equiv_block(unsigned ssa, int bb) const
Definition value-relation.cc:529
vec< equiv_chain * > m_equiv
Definition value-relation.h:193
virtual void clear(tree name)
Definition value-relation.cc:660
const pe_slice * partial_equiv_set(tree name) final override
Definition value-relation.cc:422
void add_equiv_to_block(basic_block bb, bitmap equiv)
Definition value-relation.cc:760
void register_initial_def(tree ssa)
Definition value-relation.cc:639
bitmap register_equiv(basic_block bb, unsigned v, equiv_chain *equiv_1)
Definition value-relation.cc:563
const pe_slice * m_pe
Definition value-relation.h:333
tree get_name(relation_kind *rel=NULL)
Definition value-relation.cc:2150
tree m_name
Definition value-relation.h:336
relation_oracle * m_oracle
Definition value-relation.h:331
unsigned m_y
Definition value-relation.h:335
bitmap_iterator m_bi
Definition value-relation.h:334
const_bitmap m_bm
Definition value-relation.h:332
void next()
Definition value-relation.cc:2141
equiv_relation_iterator(relation_oracle *oracle, basic_block bb, tree name, bool full=true, bool partial=false)
Definition value-relation.cc:2122
equiv_chain m_equiv
Definition value-relation.h:314
relation_kind query(basic_block, tree, tree) final override
Definition value-relation.cc:2052
relation_oracle * m_root
Definition value-relation.h:316
void reset_path(relation_oracle *oracle=NULL)
Definition value-relation.cc:2077
virtual void clear(tree name)
Definition value-relation.cc:1876
void dump(FILE *, basic_block) const final override
Definition value-relation.cc:2090
void killing_def(tree)
Definition value-relation.cc:1941
struct obstack m_chain_obstack
Definition value-relation.h:320
bitmap_obstack m_bitmaps
Definition value-relation.h:319
path_oracle(relation_oracle *oracle=NULL)
Definition value-relation.cc:1852
bitmap m_killed_defs
Definition value-relation.h:317
void set_root_oracle(relation_oracle *oracle)
Definition value-relation.h:306
bool record(basic_block, relation_kind, tree, tree) final override
Definition value-relation.cc:1988
~path_oracle()
Definition value-relation.cc:1867
const_bitmap equiv_set(tree, basic_block) final override
Definition value-relation.cc:1893
bool register_equiv(basic_block bb, tree ssa1, tree ssa2)
Definition value-relation.cc:1914
relation_chain_head m_relations
Definition value-relation.h:315
Definition value-relation.h:156
tree ssa_base
Definition value-relation.h:158
relation_kind code
Definition value-relation.h:159
bitmap members
Definition value-relation.h:160
Definition value-relation.h:221
relation_kind find_relation(const_bitmap b1, const_bitmap b2) const
Definition value-relation.cc:1108
bitmap m_names
Definition value-relation.h:223
int m_num_relations
Definition value-relation.h:225
void clear(tree name)
Definition value-relation.cc:1157
class relation_chain * m_head
Definition value-relation.h:224
Definition value-relation.cc:1024
Definition value-relation.h:98
relation_kind query(gimple *s, tree ssa1, tree ssa2)
Definition value-relation.cc:230
virtual void clear(tree)
Definition value-relation.h:114
virtual void dump(FILE *, basic_block) const
Definition value-relation.h:116
bitmap m_lhs_equiv_set_p
Definition value-relation.h:136
virtual ~relation_oracle()
Definition value-relation.h:101
virtual relation_kind query(basic_block, tree, tree)
Definition value-relation.h:111
friend class path_oracle
Definition value-relation.h:134
virtual void dump(FILE *) const
Definition value-relation.h:117
void debug() const
Definition value-relation.cc:1847
virtual const class pe_slice * partial_equiv_set(tree)
Definition value-relation.h:129
void valid_equivs(bitmap b, const_bitmap equivs, basic_block bb)
Definition value-relation.cc:209
virtual relation_kind query(basic_block, const_bitmap, const_bitmap)
Definition value-relation.h:132
bool record(gimple *, relation_kind, tree, tree)
Definition value-relation.cc:1213
friend class block_relation_iterator
Definition value-relation.h:121
virtual const_bitmap equiv_set(tree, basic_block)
Definition value-relation.h:127
virtual bool record(basic_block, relation_kind, tree, tree)
Definition value-relation.h:106
relation_oracle()
Definition value-relation.h:100
virtual class relation_chain * next_relation(basic_block, relation_chain *, tree) const
Definition value-relation.h:122
friend class equiv_relation_iterator
Definition value-relation.h:120
Definition value-relation.h:364
relation_kind op1_op2()
Definition value-relation.h:438
relation_kind lhs_op2()
Definition value-relation.h:432
unsigned m_val
Definition value-relation.h:379
relation_trio swap_op1_op2()
Definition value-relation.h:444
relation_trio()
Definition value-relation.h:392
relation_kind lhs_op1()
Definition value-relation.h:426
Definition value-relation.h:456
tree name1
Definition value-relation.h:475
relation_trio create_trio(tree lhs, tree op1, tree op2)
Definition value-relation.cc:973
tree name2
Definition value-relation.h:475
bool union_(value_relation &p)
Definition value-relation.cc:887
void set_relation(relation_kind kind, tree n1, tree n2)
Definition value-relation.h:481
void dump(FILE *f) const
Definition value-relation.cc:1007
value_relation()
Definition value-relation.h:493
relation_kind kind() const
Definition value-relation.h:462
relation_kind related
Definition value-relation.h:474
bool apply_transitive(const value_relation &rel)
Definition value-relation.cc:906
tree op1() const
Definition value-relation.h:463
void swap()
Definition value-relation.cc:857
tree op2() const
Definition value-relation.h:464
bool intersect(value_relation &p)
Definition value-relation.cc:869
Definition value-range.h:88
struct basic_block_def * basic_block
Definition coretypes.h:351
class edge_def * edge
Definition coretypes.h:348
const class bitmap_head * const_bitmap
Definition coretypes.h:52
class bitmap_head * bitmap
Definition coretypes.h:51
union tree_node * tree
Definition coretypes.h:97
int i2
Definition fp-test.cc:66
int i1
Definition fp-test.cc:66
static struct obstack obstack
Definition gcc.cc:366
#define bitmap_bit_p(bitstring, bitno)
Definition genautomata.cc:3429
poly_int< N, C > r
Definition poly-int.h:774
Ca const poly_int< N, Cb > & b
Definition poly-int.h:771
Definition bitmap.h:519
Definition bitmap.h:293
Definition gimple.h:224
#define NULL
Definition system.h:58
#define MIN(X, Y)
Definition system.h:410
#define STATIC_ASSERT(X)
Definition system.h:878
#define gcc_checking_assert(EXPR)
Definition system.h:835
#define TREE_CODE(NODE)
Definition tree.h:325
#define NULL_TREE
Definition tree.h:318
relation_oracle default_relation_oracle
Definition value-query.cc:208
void adjust_equivalence_range(vrange &range)
Definition value-relation.cc:191
#define TRIO_MASK
Definition value-relation.h:386
enum relation_kind_t relation_kind
#define TRIO_SHIFT
Definition value-relation.h:385
relation_kind relation_intersect(relation_kind r1, relation_kind r2)
Definition value-relation.cc:105
int pe_to_bits(relation_kind t)
Definition value-relation.h:536
relation_kind_t
Definition value-relation.h:64
@ VREL_PE8
Definition value-relation.h:73
@ VREL_PE16
Definition value-relation.h:74
@ VREL_GT
Definition value-relation.h:69
@ VREL_LT
Definition value-relation.h:67
@ VREL_LE
Definition value-relation.h:68
@ VREL_LAST
Definition value-relation.h:77
@ VREL_NE
Definition value-relation.h:72
@ VREL_EQ
Definition value-relation.h:71
@ VREL_PE32
Definition value-relation.h:75
@ VREL_VARYING
Definition value-relation.h:65
@ VREL_UNDEFINED
Definition value-relation.h:66
@ VREL_GE
Definition value-relation.h:70
@ VREL_PE64
Definition value-relation.h:76
relation_kind relation_union(relation_kind r1, relation_kind r2)
Definition value-relation.cc:142
relation_kind pe_min(relation_kind t1, relation_kind t2)
Definition value-relation.h:577
void print_relation(FILE *f, relation_kind rel)
Definition value-relation.cc:42
bool relation_partial_equiv_p(relation_kind r)
Definition value-relation.h:87
relation_kind bits_to_pe(int bits)
Definition value-relation.h:557
bool relation_equiv_p(relation_kind r)
Definition value-relation.h:89
relation_kind relation_swap(relation_kind r)
Definition value-relation.cc:68
relation_kind relation_negate(relation_kind r)
Definition value-relation.cc:55
bool relation_lt_le_gt_ge_p(relation_kind r)
Definition value-relation.h:85