Branch data Line data Source code
1 : : /* Gimple ranger SSA cache implementation.
2 : : Copyright (C) 2017-2024 Free Software Foundation, Inc.
3 : : Contributed by Andrew MacLeod <amacleod@redhat.com>.
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify
8 : : it under the terms of the GNU General Public License as published by
9 : : the Free Software Foundation; either version 3, or (at your option)
10 : : any later version.
11 : :
12 : : GCC is distributed in the hope that it will be useful,
13 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : : GNU General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "backend.h"
25 : : #include "insn-codes.h"
26 : : #include "tree.h"
27 : : #include "gimple.h"
28 : : #include "ssa.h"
29 : : #include "gimple-pretty-print.h"
30 : : #include "gimple-range.h"
31 : : #include "value-range-storage.h"
32 : : #include "tree-cfg.h"
33 : : #include "target.h"
34 : : #include "attribs.h"
35 : : #include "gimple-iterator.h"
36 : : #include "gimple-walk.h"
37 : : #include "cfganal.h"
38 : :
39 : : #define DEBUG_RANGE_CACHE (dump_file \
40 : : && (param_ranger_debug & RANGER_DEBUG_CACHE))
41 : :
42 : : // This class represents the API into a cache of ranges for an SSA_NAME.
43 : : // Routines must be implemented to set, get, and query if a value is set.
44 : :
45 : : class ssa_block_ranges
46 : : {
47 : : public:
48 : 22979031 : ssa_block_ranges (tree t) : m_type (t) { }
49 : : virtual bool set_bb_range (const_basic_block bb, const vrange &r) = 0;
50 : : virtual bool get_bb_range (vrange &r, const_basic_block bb) = 0;
51 : : virtual bool bb_range_p (const_basic_block bb) = 0;
52 : :
53 : : void dump(FILE *f);
54 : : private:
55 : : tree m_type;
56 : : };
57 : :
58 : : // Print the list of known ranges for file F in a nice format.
59 : :
60 : : void
61 : 0 : ssa_block_ranges::dump (FILE *f)
62 : : {
63 : 0 : basic_block bb;
64 : 0 : value_range r (m_type);
65 : :
66 : 0 : FOR_EACH_BB_FN (bb, cfun)
67 : 0 : if (get_bb_range (r, bb))
68 : : {
69 : 0 : fprintf (f, "BB%d -> ", bb->index);
70 : 0 : r.dump (f);
71 : 0 : fprintf (f, "\n");
72 : : }
73 : 0 : }
74 : :
75 : : // This class implements the range cache as a linear vector, indexed by BB.
76 : : // It caches a varying and undefined range which are used instead of
77 : : // allocating new ones each time.
78 : :
79 : : class sbr_vector : public ssa_block_ranges
80 : : {
81 : : public:
82 : : sbr_vector (tree t, vrange_allocator *allocator, bool zero_p = true);
83 : :
84 : : virtual bool set_bb_range (const_basic_block bb, const vrange &r) override;
85 : : virtual bool get_bb_range (vrange &r, const_basic_block bb) override;
86 : : virtual bool bb_range_p (const_basic_block bb) override;
87 : : protected:
88 : : vrange_storage **m_tab; // Non growing vector.
89 : : int m_tab_size;
90 : : vrange_storage *m_varying;
91 : : vrange_storage *m_undefined;
92 : : tree m_type;
93 : : vrange_allocator *m_range_allocator;
94 : : bool m_zero_p;
95 : : void grow ();
96 : : };
97 : :
98 : :
99 : : // Initialize a block cache for an ssa_name of type T.
100 : :
101 : 22977090 : sbr_vector::sbr_vector (tree t, vrange_allocator *allocator, bool zero_p)
102 : 22977090 : : ssa_block_ranges (t)
103 : : {
104 : 22977090 : gcc_checking_assert (TYPE_P (t));
105 : 22977090 : m_type = t;
106 : 22977090 : m_zero_p = zero_p;
107 : 22977090 : m_range_allocator = allocator;
108 : 22977090 : m_tab_size = last_basic_block_for_fn (cfun) + 1;
109 : 45954180 : m_tab = static_cast <vrange_storage **>
110 : 22977090 : (allocator->alloc (m_tab_size * sizeof (vrange_storage *)));
111 : 22977090 : if (zero_p)
112 : 20174434 : memset (m_tab, 0, m_tab_size * sizeof (vrange *));
113 : :
114 : : // Create the cached type range.
115 : 22977090 : m_varying = m_range_allocator->clone_varying (t);
116 : 22977090 : m_undefined = m_range_allocator->clone_undefined (t);
117 : 22977090 : }
118 : :
119 : : // Grow the vector when the CFG has increased in size.
120 : :
121 : : void
122 : 0 : sbr_vector::grow ()
123 : : {
124 : 0 : int curr_bb_size = last_basic_block_for_fn (cfun);
125 : 0 : gcc_checking_assert (curr_bb_size > m_tab_size);
126 : :
127 : : // Increase the max of a)128, b)needed increase * 2, c)10% of current_size.
128 : 0 : int inc = MAX ((curr_bb_size - m_tab_size) * 2, 128);
129 : 0 : inc = MAX (inc, curr_bb_size / 10);
130 : 0 : int new_size = inc + curr_bb_size;
131 : :
132 : : // Allocate new memory, copy the old vector and clear the new space.
133 : 0 : vrange_storage **t = static_cast <vrange_storage **>
134 : 0 : (m_range_allocator->alloc (new_size * sizeof (vrange_storage *)));
135 : 0 : memcpy (t, m_tab, m_tab_size * sizeof (vrange_storage *));
136 : 0 : if (m_zero_p)
137 : 0 : memset (t + m_tab_size, 0, (new_size - m_tab_size) * sizeof (vrange_storage *));
138 : :
139 : 0 : m_tab = t;
140 : 0 : m_tab_size = new_size;
141 : 0 : }
142 : :
143 : : // Set the range for block BB to be R.
144 : :
145 : : bool
146 : 51991179 : sbr_vector::set_bb_range (const_basic_block bb, const vrange &r)
147 : : {
148 : 51991179 : vrange_storage *m;
149 : 51991179 : if (bb->index >= m_tab_size)
150 : 0 : grow ();
151 : 51991179 : if (r.varying_p ())
152 : 18408467 : m = m_varying;
153 : 33582712 : else if (r.undefined_p ())
154 : 266423 : m = m_undefined;
155 : : else
156 : 33316289 : m = m_range_allocator->clone (r);
157 : 51991179 : m_tab[bb->index] = m;
158 : 51991179 : return true;
159 : : }
160 : :
161 : : // Return the range associated with block BB in R. Return false if
162 : : // there is no range.
163 : :
164 : : bool
165 : 225441701 : sbr_vector::get_bb_range (vrange &r, const_basic_block bb)
166 : : {
167 : 225441701 : if (bb->index >= m_tab_size)
168 : : return false;
169 : 225441699 : vrange_storage *m = m_tab[bb->index];
170 : 225441699 : if (m)
171 : : {
172 : 169509174 : m->get_vrange (r, m_type);
173 : 169509174 : return true;
174 : : }
175 : : return false;
176 : : }
177 : :
178 : : // Return true if a range is present.
179 : :
180 : : bool
181 : 178889807 : sbr_vector::bb_range_p (const_basic_block bb)
182 : : {
183 : 178889807 : if (bb->index < m_tab_size)
184 : 178889807 : return m_tab[bb->index] != NULL;
185 : : return false;
186 : : }
187 : :
188 : : // Like an sbr_vector, except it uses a bitmap to manage whetehr vale is set
189 : : // or not rather than cleared memory.
190 : :
191 : : class sbr_lazy_vector : public sbr_vector
192 : : {
193 : : public:
194 : : sbr_lazy_vector (tree t, vrange_allocator *allocator, bitmap_obstack *bm);
195 : :
196 : : virtual bool set_bb_range (const_basic_block bb, const vrange &r) override;
197 : : virtual bool get_bb_range (vrange &r, const_basic_block bb) override;
198 : : virtual bool bb_range_p (const_basic_block bb) override;
199 : : protected:
200 : : bitmap m_has_value;
201 : : };
202 : :
203 : 2802656 : sbr_lazy_vector::sbr_lazy_vector (tree t, vrange_allocator *allocator,
204 : 2802656 : bitmap_obstack *bm)
205 : 2802656 : : sbr_vector (t, allocator, false)
206 : : {
207 : 2802656 : m_has_value = BITMAP_ALLOC (bm);
208 : 2802656 : }
209 : :
210 : : bool
211 : 7215831 : sbr_lazy_vector::set_bb_range (const_basic_block bb, const vrange &r)
212 : : {
213 : 7215831 : sbr_vector::set_bb_range (bb, r);
214 : 7215831 : bitmap_set_bit (m_has_value, bb->index);
215 : 7215831 : return true;
216 : : }
217 : :
218 : : bool
219 : 146340952 : sbr_lazy_vector::get_bb_range (vrange &r, const_basic_block bb)
220 : : {
221 : 146340952 : if (bitmap_bit_p (m_has_value, bb->index))
222 : 25878145 : return sbr_vector::get_bb_range (r, bb);
223 : : return false;
224 : : }
225 : :
226 : : bool
227 : 31387043 : sbr_lazy_vector::bb_range_p (const_basic_block bb)
228 : : {
229 : 31387043 : return bitmap_bit_p (m_has_value, bb->index);
230 : : }
231 : :
232 : : // This class implements the on entry cache via a sparse bitmap.
233 : : // It uses the quad bit routines to access 4 bits at a time.
234 : : // A value of 0 (the default) means there is no entry, and a value of
235 : : // 1 thru SBR_NUM represents an element in the m_range vector.
236 : : // Varying is given the first value (1) and pre-cached.
237 : : // SBR_NUM + 1 represents the value of UNDEFINED, and is never stored.
238 : : // SBR_NUM is the number of values that can be cached.
239 : : // Indexes are 1..SBR_NUM and are stored locally at m_range[0..SBR_NUM-1]
240 : :
241 : : #define SBR_NUM 14
242 : : #define SBR_UNDEF SBR_NUM + 1
243 : : #define SBR_VARYING 1
244 : :
245 : : class sbr_sparse_bitmap : public ssa_block_ranges
246 : : {
247 : : public:
248 : : sbr_sparse_bitmap (tree t, vrange_allocator *allocator, bitmap_obstack *bm);
249 : : virtual bool set_bb_range (const_basic_block bb, const vrange &r) override;
250 : : virtual bool get_bb_range (vrange &r, const_basic_block bb) override;
251 : : virtual bool bb_range_p (const_basic_block bb) override;
252 : : private:
253 : : void bitmap_set_quad (bitmap head, int quad, int quad_value);
254 : : int bitmap_get_quad (const_bitmap head, int quad);
255 : : vrange_allocator *m_range_allocator;
256 : : vrange_storage *m_range[SBR_NUM];
257 : : bitmap_head bitvec;
258 : : tree m_type;
259 : : };
260 : :
261 : : // Initialize a block cache for an ssa_name of type T.
262 : :
263 : 1941 : sbr_sparse_bitmap::sbr_sparse_bitmap (tree t, vrange_allocator *allocator,
264 : 1941 : bitmap_obstack *bm)
265 : 1941 : : ssa_block_ranges (t)
266 : : {
267 : 1941 : gcc_checking_assert (TYPE_P (t));
268 : 1941 : m_type = t;
269 : 1941 : bitmap_initialize (&bitvec, bm);
270 : 1941 : bitmap_tree_view (&bitvec);
271 : 1941 : m_range_allocator = allocator;
272 : : // Pre-cache varying.
273 : 1941 : m_range[0] = m_range_allocator->clone_varying (t);
274 : : // Pre-cache zero and non-zero values for pointers.
275 : 1941 : if (POINTER_TYPE_P (t))
276 : : {
277 : 18 : prange nonzero;
278 : 18 : nonzero.set_nonzero (t);
279 : 18 : m_range[1] = m_range_allocator->clone (nonzero);
280 : 18 : prange zero;
281 : 18 : zero.set_zero (t);
282 : 18 : m_range[2] = m_range_allocator->clone (zero);
283 : 18 : }
284 : : else
285 : 1923 : m_range[1] = m_range[2] = NULL;
286 : : // Clear SBR_NUM entries.
287 : 23292 : for (int x = 3; x < SBR_NUM; x++)
288 : 21351 : m_range[x] = 0;
289 : 1941 : }
290 : :
291 : : // Set 4 bit values in a sparse bitmap. This allows a bitmap to
292 : : // function as a sparse array of 4 bit values.
293 : : // QUAD is the index, QUAD_VALUE is the 4 bit value to set.
294 : :
295 : : inline void
296 : 265743 : sbr_sparse_bitmap::bitmap_set_quad (bitmap head, int quad, int quad_value)
297 : : {
298 : 265743 : bitmap_set_aligned_chunk (head, quad, 4, (BITMAP_WORD) quad_value);
299 : : }
300 : :
301 : : // Get a 4 bit value from a sparse bitmap. This allows a bitmap to
302 : : // function as a sparse array of 4 bit values.
303 : : // QUAD is the index.
304 : : inline int
305 : 12411746 : sbr_sparse_bitmap::bitmap_get_quad (const_bitmap head, int quad)
306 : : {
307 : 24823492 : return (int) bitmap_get_aligned_chunk (head, quad, 4);
308 : : }
309 : :
310 : : // Set the range on entry to basic block BB to R.
311 : :
312 : : bool
313 : 265743 : sbr_sparse_bitmap::set_bb_range (const_basic_block bb, const vrange &r)
314 : : {
315 : 265743 : if (r.undefined_p ())
316 : : {
317 : 0 : bitmap_set_quad (&bitvec, bb->index, SBR_UNDEF);
318 : 0 : return true;
319 : : }
320 : :
321 : : // Loop thru the values to see if R is already present.
322 : 421210 : for (int x = 0; x < SBR_NUM; x++)
323 : 410207 : if (!m_range[x] || m_range[x]->equal_p (r))
324 : : {
325 : 254740 : if (!m_range[x])
326 : 39 : m_range[x] = m_range_allocator->clone (r);
327 : 254740 : bitmap_set_quad (&bitvec, bb->index, x + 1);
328 : 254740 : return true;
329 : : }
330 : : // All values are taken, default to VARYING.
331 : 11003 : bitmap_set_quad (&bitvec, bb->index, SBR_VARYING);
332 : 11003 : return false;
333 : : }
334 : :
335 : : // Return the range associated with block BB in R. Return false if
336 : : // there is no range.
337 : :
338 : : bool
339 : 10740145 : sbr_sparse_bitmap::get_bb_range (vrange &r, const_basic_block bb)
340 : : {
341 : 10740145 : int value = bitmap_get_quad (&bitvec, bb->index);
342 : :
343 : 10740145 : if (!value)
344 : : return false;
345 : :
346 : 1308276 : gcc_checking_assert (value <= SBR_UNDEF);
347 : 1308276 : if (value == SBR_UNDEF)
348 : 0 : r.set_undefined ();
349 : : else
350 : 1308276 : m_range[value - 1]->get_vrange (r, m_type);
351 : : return true;
352 : : }
353 : :
354 : : // Return true if a range is present.
355 : :
356 : : bool
357 : 1671601 : sbr_sparse_bitmap::bb_range_p (const_basic_block bb)
358 : : {
359 : 1671601 : return (bitmap_get_quad (&bitvec, bb->index) != 0);
360 : : }
361 : :
362 : : // -------------------------------------------------------------------------
363 : :
364 : : // Initialize the block cache.
365 : :
366 : 24581786 : block_range_cache::block_range_cache ()
367 : : {
368 : 24581786 : bitmap_obstack_initialize (&m_bitmaps);
369 : 24581786 : m_ssa_ranges.create (0);
370 : 49163572 : m_ssa_ranges.safe_grow_cleared (num_ssa_names);
371 : 24581786 : m_range_allocator = new vrange_allocator;
372 : 24581786 : }
373 : :
374 : : // Remove any m_block_caches which have been created.
375 : :
376 : 24581786 : block_range_cache::~block_range_cache ()
377 : : {
378 : 24581786 : delete m_range_allocator;
379 : : // Release the vector itself.
380 : 24581786 : m_ssa_ranges.release ();
381 : 24581786 : bitmap_obstack_release (&m_bitmaps);
382 : 24581786 : }
383 : :
384 : : // Set the range for NAME on entry to block BB to R.
385 : : // If it has not been accessed yet, allocate it first.
386 : :
387 : : bool
388 : 52256922 : block_range_cache::set_bb_range (tree name, const_basic_block bb,
389 : : const vrange &r)
390 : : {
391 : 52256922 : unsigned v = SSA_NAME_VERSION (name);
392 : 104513844 : if (v >= m_ssa_ranges.length ())
393 : 2 : m_ssa_ranges.safe_grow_cleared (num_ssa_names);
394 : :
395 : 52256922 : if (!m_ssa_ranges[v])
396 : : {
397 : : // Use sparse bitmap representation if there are too many basic blocks.
398 : 22979031 : if (last_basic_block_for_fn (cfun) > param_vrp_sparse_threshold)
399 : : {
400 : 1941 : void *r = m_range_allocator->alloc (sizeof (sbr_sparse_bitmap));
401 : 1941 : m_ssa_ranges[v] = new (r) sbr_sparse_bitmap (TREE_TYPE (name),
402 : : m_range_allocator,
403 : 1941 : &m_bitmaps);
404 : : }
405 : 22977090 : else if (last_basic_block_for_fn (cfun) < param_vrp_vector_threshold)
406 : : {
407 : : // For small CFGs use the basic vector implemntation.
408 : 20174434 : void *r = m_range_allocator->alloc (sizeof (sbr_vector));
409 : 20174434 : m_ssa_ranges[v] = new (r) sbr_vector (TREE_TYPE (name),
410 : 20174434 : m_range_allocator);
411 : : }
412 : : else
413 : : {
414 : : // Otherwise use the sparse vector implementation.
415 : 2802656 : void *r = m_range_allocator->alloc (sizeof (sbr_lazy_vector));
416 : 2802656 : m_ssa_ranges[v] = new (r) sbr_lazy_vector (TREE_TYPE (name),
417 : : m_range_allocator,
418 : 2802656 : &m_bitmaps);
419 : : }
420 : : }
421 : 52256922 : return m_ssa_ranges[v]->set_bb_range (bb, r);
422 : : }
423 : :
424 : :
425 : : // Return a pointer to the ssa_block_cache for NAME. If it has not been
426 : : // accessed yet, return NULL.
427 : :
428 : : inline ssa_block_ranges *
429 : 840186225 : block_range_cache::query_block_ranges (tree name)
430 : : {
431 : 840186225 : unsigned v = SSA_NAME_VERSION (name);
432 : 840186225 : if (v >= m_ssa_ranges.length () || !m_ssa_ranges[v])
433 : : return NULL;
434 : : return m_ssa_ranges[v];
435 : : }
436 : :
437 : :
438 : :
439 : : // Return the range for NAME on entry to BB in R. Return true if there
440 : : // is one.
441 : :
442 : : bool
443 : 549046158 : block_range_cache::get_bb_range (vrange &r, tree name, const_basic_block bb)
444 : : {
445 : 549046158 : ssa_block_ranges *ptr = query_block_ranges (name);
446 : 549046158 : if (ptr)
447 : 356643406 : return ptr->get_bb_range (r, bb);
448 : : return false;
449 : : }
450 : :
451 : : // Return true if NAME has a range set in block BB.
452 : :
453 : : bool
454 : 291140067 : block_range_cache::bb_range_p (tree name, const_basic_block bb)
455 : : {
456 : 291140067 : ssa_block_ranges *ptr = query_block_ranges (name);
457 : 291140067 : if (ptr)
458 : 211948451 : return ptr->bb_range_p (bb);
459 : : return false;
460 : : }
461 : :
462 : : // Print all known block caches to file F.
463 : :
464 : : void
465 : 0 : block_range_cache::dump (FILE *f)
466 : : {
467 : 0 : unsigned x;
468 : 0 : for (x = 1; x < m_ssa_ranges.length (); ++x)
469 : : {
470 : 0 : if (m_ssa_ranges[x])
471 : : {
472 : 0 : fprintf (f, " Ranges for ");
473 : 0 : print_generic_expr (f, ssa_name (x), TDF_NONE);
474 : 0 : fprintf (f, ":\n");
475 : 0 : m_ssa_ranges[x]->dump (f);
476 : 0 : fprintf (f, "\n");
477 : : }
478 : : }
479 : 0 : }
480 : :
481 : : // Print all known ranges on entry to block BB to file F.
482 : :
483 : : void
484 : 257 : block_range_cache::dump (FILE *f, basic_block bb, bool print_varying)
485 : : {
486 : 257 : unsigned x;
487 : 257 : bool summarize_varying = false;
488 : 27242 : for (x = 1; x < m_ssa_ranges.length (); ++x)
489 : : {
490 : 13364 : if (!m_ssa_ranges[x])
491 : 24165 : continue;
492 : :
493 : 1316 : if (!gimple_range_ssa_p (ssa_name (x)))
494 : 69 : continue;
495 : :
496 : 1247 : value_range r (TREE_TYPE (ssa_name (x)));
497 : 1247 : if (m_ssa_ranges[x]->get_bb_range (r, bb))
498 : : {
499 : 217 : if (!print_varying && r.varying_p ())
500 : : {
501 : 0 : summarize_varying = true;
502 : 0 : continue;
503 : : }
504 : 217 : print_generic_expr (f, ssa_name (x), TDF_NONE);
505 : 217 : fprintf (f, "\t");
506 : 217 : r.dump(f);
507 : 217 : fprintf (f, "\n");
508 : : }
509 : 1247 : }
510 : : // If there were any varying entries, lump them all together.
511 : 257 : if (summarize_varying)
512 : : {
513 : 0 : fprintf (f, "VARYING_P on entry : ");
514 : 0 : for (x = 1; x < m_ssa_ranges.length (); ++x)
515 : : {
516 : 0 : if (!m_ssa_ranges[x])
517 : 0 : continue;
518 : :
519 : 0 : if (!gimple_range_ssa_p (ssa_name (x)))
520 : 0 : continue;
521 : :
522 : 0 : value_range r (TREE_TYPE (ssa_name (x)));
523 : 0 : if (m_ssa_ranges[x]->get_bb_range (r, bb))
524 : : {
525 : 0 : if (r.varying_p ())
526 : : {
527 : 0 : print_generic_expr (f, ssa_name (x), TDF_NONE);
528 : 0 : fprintf (f, " ");
529 : : }
530 : : }
531 : 0 : }
532 : 0 : fprintf (f, "\n");
533 : : }
534 : 257 : }
535 : :
536 : : // -------------------------------------------------------------------------
537 : :
538 : : // Initialize an ssa cache.
539 : :
540 : 48060023 : ssa_cache::ssa_cache ()
541 : : {
542 : 48060023 : m_tab.create (0);
543 : 48060023 : m_range_allocator = new vrange_allocator;
544 : 48060023 : }
545 : :
546 : : // Deconstruct an ssa cache.
547 : :
548 : 48060023 : ssa_cache::~ssa_cache ()
549 : : {
550 : 48060023 : m_tab.release ();
551 : 48060023 : delete m_range_allocator;
552 : 48060023 : }
553 : :
554 : : // Enable a query to evaluate staements/ramnges based on picking up ranges
555 : : // from just an ssa-cache.
556 : :
557 : : bool
558 : 1594947 : ssa_cache::range_of_expr (vrange &r, tree expr, gimple *stmt)
559 : : {
560 : 1594947 : if (!gimple_range_ssa_p (expr))
561 : 1307366 : return get_tree_range (r, expr, stmt);
562 : :
563 : 287581 : if (!get_range (r, expr))
564 : 3235 : gimple_range_global (r, expr, cfun);
565 : : return true;
566 : : }
567 : :
568 : : // Return TRUE if the global range of NAME has a cache entry.
569 : :
570 : : bool
571 : 0 : ssa_cache::has_range (tree name) const
572 : : {
573 : 0 : unsigned v = SSA_NAME_VERSION (name);
574 : 0 : if (v >= m_tab.length ())
575 : : return false;
576 : 0 : return m_tab[v] != NULL;
577 : : }
578 : :
579 : : // Retrieve the global range of NAME from cache memory if it exists.
580 : : // Return the value in R.
581 : :
582 : : bool
583 : 953367186 : ssa_cache::get_range (vrange &r, tree name) const
584 : : {
585 : 953367186 : unsigned v = SSA_NAME_VERSION (name);
586 : 1896839948 : if (v >= m_tab.length ())
587 : : return false;
588 : :
589 : 943470432 : vrange_storage *stow = m_tab[v];
590 : 943470432 : if (!stow)
591 : : return false;
592 : 772357371 : stow->get_vrange (r, TREE_TYPE (name));
593 : 772357371 : return true;
594 : : }
595 : :
596 : : // Set the range for NAME to R in the ssa cache.
597 : : // Return TRUE if there was already a range set, otherwise false.
598 : :
599 : : bool
600 : 128863714 : ssa_cache::set_range (tree name, const vrange &r)
601 : : {
602 : 128863714 : unsigned v = SSA_NAME_VERSION (name);
603 : 250822420 : if (v >= m_tab.length ())
604 : 13811092 : m_tab.safe_grow_cleared (num_ssa_names + 1);
605 : :
606 : 128863714 : vrange_storage *m = m_tab[v];
607 : 128863714 : if (m && m->fits_p (r))
608 : 16927804 : m->set_vrange (r);
609 : : else
610 : 111935910 : m_tab[v] = m_range_allocator->clone (r);
611 : 128863714 : return m != NULL;
612 : : }
613 : :
614 : : // If NAME has a range, intersect it with R, otherwise set it to R.
615 : : // Return TRUE if the range is new or changes.
616 : :
617 : : bool
618 : 106 : ssa_cache::merge_range (tree name, const vrange &r)
619 : : {
620 : 106 : unsigned v = SSA_NAME_VERSION (name);
621 : 212 : if (v >= m_tab.length ())
622 : 0 : m_tab.safe_grow_cleared (num_ssa_names + 1);
623 : :
624 : 106 : vrange_storage *m = m_tab[v];
625 : : // Check if this is a new value.
626 : 106 : if (!m)
627 : 0 : m_tab[v] = m_range_allocator->clone (r);
628 : : else
629 : : {
630 : 106 : value_range curr (TREE_TYPE (name));
631 : 106 : m->get_vrange (curr, TREE_TYPE (name));
632 : : // If there is no change, return false.
633 : 106 : if (!curr.intersect (r))
634 : 91 : return false;
635 : :
636 : 15 : if (m->fits_p (curr))
637 : 15 : m->set_vrange (curr);
638 : : else
639 : 0 : m_tab[v] = m_range_allocator->clone (curr);
640 : 106 : }
641 : : return true;
642 : : }
643 : :
644 : : // Set the range for NAME to R in the ssa cache.
645 : :
646 : : void
647 : 0 : ssa_cache::clear_range (tree name)
648 : : {
649 : 0 : unsigned v = SSA_NAME_VERSION (name);
650 : 0 : if (v >= m_tab.length ())
651 : : return;
652 : 0 : m_tab[v] = NULL;
653 : : }
654 : :
655 : : // Clear the ssa cache.
656 : :
657 : : void
658 : 0 : ssa_cache::clear ()
659 : : {
660 : 0 : if (m_tab.address ())
661 : 0 : memset (m_tab.address(), 0, m_tab.length () * sizeof (vrange *));
662 : 0 : }
663 : :
664 : : // Dump the contents of the ssa cache to F.
665 : :
666 : : void
667 : 46 : ssa_cache::dump (FILE *f)
668 : : {
669 : 1780 : for (unsigned x = 1; x < num_ssa_names; x++)
670 : : {
671 : 844 : if (!gimple_range_ssa_p (ssa_name (x)))
672 : 476 : continue;
673 : 368 : value_range r (TREE_TYPE (ssa_name (x)));
674 : : // Dump all non-varying ranges.
675 : 368 : if (get_range (r, ssa_name (x)) && !r.varying_p ())
676 : : {
677 : 150 : print_generic_expr (f, ssa_name (x), TDF_NONE);
678 : 150 : fprintf (f, " : ");
679 : 150 : r.dump (f);
680 : 150 : fprintf (f, "\n");
681 : : }
682 : 368 : }
683 : :
684 : 46 : }
685 : :
686 : : // Construct an ssa_lazy_cache. If OB is specified, us it, otherwise use
687 : : // a local bitmap obstack.
688 : :
689 : 23478237 : ssa_lazy_cache::ssa_lazy_cache (bitmap_obstack *ob)
690 : : {
691 : 23478237 : if (!ob)
692 : : {
693 : 23478237 : bitmap_obstack_initialize (&m_bitmaps);
694 : 23478237 : m_ob = &m_bitmaps;
695 : : }
696 : : else
697 : 0 : m_ob = ob;
698 : 23478237 : active_p = BITMAP_ALLOC (m_ob);
699 : 23478237 : }
700 : :
701 : : // Destruct an sa_lazy_cache. Free the bitmap if it came from a different
702 : : // obstack, or release the obstack if it was a local one.
703 : :
704 : 23478237 : ssa_lazy_cache::~ssa_lazy_cache ()
705 : : {
706 : 23478237 : if (m_ob == &m_bitmaps)
707 : 23478237 : bitmap_obstack_release (&m_bitmaps);
708 : : else
709 : 0 : BITMAP_FREE (active_p);
710 : 23478237 : }
711 : :
712 : : // Return true if NAME has an active range in the cache.
713 : :
714 : : bool
715 : 0 : ssa_lazy_cache::has_range (tree name) const
716 : : {
717 : 0 : return bitmap_bit_p (active_p, SSA_NAME_VERSION (name));
718 : : }
719 : :
720 : : // Set range of NAME to R in a lazy cache. Return FALSE if it did not already
721 : : // have a range.
722 : :
723 : : bool
724 : 89376343 : ssa_lazy_cache::set_range (tree name, const vrange &r)
725 : : {
726 : 89376343 : unsigned v = SSA_NAME_VERSION (name);
727 : 89376343 : if (!bitmap_set_bit (active_p, v))
728 : : {
729 : : // There is already an entry, simply set it.
730 : 10216679 : gcc_checking_assert (v < m_tab.length ());
731 : 10216679 : return ssa_cache::set_range (name, r);
732 : : }
733 : 138692607 : if (v >= m_tab.length ())
734 : 39253442 : m_tab.safe_grow (num_ssa_names + 1);
735 : 79159664 : m_tab[v] = m_range_allocator->clone (r);
736 : 79159664 : return false;
737 : : }
738 : :
739 : : // If NAME has a range, intersect it with R, otherwise set it to R.
740 : : // Return TRUE if the range is new or changes.
741 : :
742 : : bool
743 : 307 : ssa_lazy_cache::merge_range (tree name, const vrange &r)
744 : : {
745 : 307 : unsigned v = SSA_NAME_VERSION (name);
746 : 307 : if (!bitmap_set_bit (active_p, v))
747 : : {
748 : : // There is already an entry, simply merge it.
749 : 106 : gcc_checking_assert (v < m_tab.length ());
750 : 106 : return ssa_cache::merge_range (name, r);
751 : : }
752 : 402 : if (v >= m_tab.length ())
753 : 0 : m_tab.safe_grow (num_ssa_names + 1);
754 : 201 : m_tab[v] = m_range_allocator->clone (r);
755 : 201 : return true;
756 : : }
757 : :
758 : : // Merge all elements of CACHE with this cache.
759 : : // Any names in CACHE that are not in this one are added.
760 : : // Any names in both are merged via merge_range..
761 : :
762 : : void
763 : 0 : ssa_lazy_cache::merge (const ssa_lazy_cache &cache)
764 : : {
765 : 0 : unsigned x;
766 : 0 : bitmap_iterator bi;
767 : 0 : EXECUTE_IF_SET_IN_BITMAP (cache.active_p, 0, x, bi)
768 : : {
769 : 0 : tree name = ssa_name (x);
770 : 0 : value_range r(TREE_TYPE (name));
771 : 0 : cache.get_range (r, name);
772 : 0 : merge_range (ssa_name (x), r);
773 : 0 : }
774 : 0 : }
775 : :
776 : : // Return TRUE if NAME has a range, and return it in R.
777 : :
778 : : bool
779 : 227074183 : ssa_lazy_cache::get_range (vrange &r, tree name) const
780 : : {
781 : 227074183 : if (!bitmap_bit_p (active_p, SSA_NAME_VERSION (name)))
782 : : return false;
783 : 93395690 : return ssa_cache::get_range (r, name);
784 : : }
785 : :
786 : : // Remove NAME from the active range list.
787 : :
788 : : void
789 : 45526262 : ssa_lazy_cache::clear_range (tree name)
790 : : {
791 : 45526262 : bitmap_clear_bit (active_p, SSA_NAME_VERSION (name));
792 : 45526262 : }
793 : :
794 : : // Remove all ranges from the active range list.
795 : :
796 : : void
797 : 30072313 : ssa_lazy_cache::clear ()
798 : : {
799 : 30072313 : bitmap_clear (active_p);
800 : 30072313 : }
801 : :
802 : : // --------------------------------------------------------------------------
803 : :
804 : :
805 : : // This class will manage the timestamps for each ssa_name.
806 : : // When a value is calculated, the timestamp is set to the current time.
807 : : // Current time is then incremented. Any dependencies will already have
808 : : // been calculated, and will thus have older timestamps.
809 : : // If one of those values is ever calculated again, it will get a newer
810 : : // timestamp, and the "current_p" check will fail.
811 : :
812 : : class temporal_cache
813 : : {
814 : : public:
815 : : temporal_cache ();
816 : : ~temporal_cache ();
817 : : bool current_p (tree name, tree dep1, tree dep2) const;
818 : : void set_timestamp (tree name);
819 : : void set_always_current (tree name, bool value);
820 : : bool always_current_p (tree name) const;
821 : : private:
822 : : int temporal_value (unsigned ssa) const;
823 : : int m_current_time;
824 : : vec <int> m_timestamp;
825 : : };
826 : :
827 : : inline
828 : 24581786 : temporal_cache::temporal_cache ()
829 : : {
830 : 24581786 : m_current_time = 1;
831 : 24581786 : m_timestamp.create (0);
832 : 49163572 : m_timestamp.safe_grow_cleared (num_ssa_names);
833 : 24581786 : }
834 : :
835 : : inline
836 : 24581786 : temporal_cache::~temporal_cache ()
837 : : {
838 : 24581786 : m_timestamp.release ();
839 : 24581786 : }
840 : :
841 : : // Return the timestamp value for SSA, or 0 if there isn't one.
842 : :
843 : : inline int
844 : 478579203 : temporal_cache::temporal_value (unsigned ssa) const
845 : : {
846 : 957158406 : if (ssa >= m_timestamp.length ())
847 : : return 0;
848 : 478579203 : return abs (m_timestamp[ssa]);
849 : : }
850 : :
851 : : // Return TRUE if the timestamp for NAME is newer than any of its dependents.
852 : : // Up to 2 dependencies can be checked.
853 : :
854 : : bool
855 : 291106667 : temporal_cache::current_p (tree name, tree dep1, tree dep2) const
856 : : {
857 : 291106667 : if (always_current_p (name))
858 : : return true;
859 : :
860 : : // Any non-registered dependencies will have a value of 0 and thus be older.
861 : : // Return true if time is newer than either dependent.
862 : 285674078 : int ts = temporal_value (SSA_NAME_VERSION (name));
863 : 433613905 : if (dep1 && ts < temporal_value (SSA_NAME_VERSION (dep1)))
864 : : return false;
865 : 304828215 : if (dep2 && ts < temporal_value (SSA_NAME_VERSION (dep2)))
866 : : return false;
867 : :
868 : : return true;
869 : : }
870 : :
871 : : // This increments the global timer and sets the timestamp for NAME.
872 : :
873 : : inline void
874 : 32335230 : temporal_cache::set_timestamp (tree name)
875 : : {
876 : 32335230 : unsigned v = SSA_NAME_VERSION (name);
877 : 64670460 : if (v >= m_timestamp.length ())
878 : 0 : m_timestamp.safe_grow_cleared (num_ssa_names + 20);
879 : 32335230 : m_timestamp[v] = ++m_current_time;
880 : 32335230 : }
881 : :
882 : : // Set the timestamp to 0, marking it as "always up to date".
883 : :
884 : : inline void
885 : 233377206 : temporal_cache::set_always_current (tree name, bool value)
886 : : {
887 : 233377206 : unsigned v = SSA_NAME_VERSION (name);
888 : 466754412 : if (v >= m_timestamp.length ())
889 : 1356 : m_timestamp.safe_grow_cleared (num_ssa_names + 20);
890 : :
891 : 233377206 : int ts = abs (m_timestamp[v]);
892 : : // If this does not have a timestamp, create one.
893 : 233377206 : if (ts == 0)
894 : 108767718 : ts = ++m_current_time;
895 : 233377206 : m_timestamp[v] = value ? -ts : ts;
896 : 233377206 : }
897 : :
898 : : // Return true if NAME is always current.
899 : :
900 : : inline bool
901 : 291106667 : temporal_cache::always_current_p (tree name) const
902 : : {
903 : 291106667 : unsigned v = SSA_NAME_VERSION (name);
904 : 291106667 : if (v >= m_timestamp.length ())
905 : : return false;
906 : 291106667 : return m_timestamp[v] <= 0;
907 : : }
908 : :
909 : : // --------------------------------------------------------------------------
910 : :
911 : : // This class provides an abstraction of a list of blocks to be updated
912 : : // by the cache. It is currently a stack but could be changed. It also
913 : : // maintains a list of blocks which have failed propagation, and does not
914 : : // enter any of those blocks into the list.
915 : :
916 : : // A vector over the BBs is maintained, and an entry of 0 means it is not in
917 : : // a list. Otherwise, the entry is the next block in the list. -1 terminates
918 : : // the list. m_head points to the top of the list, -1 if the list is empty.
919 : :
920 : : class update_list
921 : : {
922 : : public:
923 : : update_list ();
924 : : ~update_list ();
925 : : void add (basic_block bb);
926 : : basic_block pop ();
927 : 107715967 : inline bool empty_p () { return m_update_head == -1; }
928 : 3560109 : inline void clear_failures () { bitmap_clear (m_propfail); }
929 : 0 : inline void propagation_failed (basic_block bb)
930 : 0 : { bitmap_set_bit (m_propfail, bb->index); }
931 : : private:
932 : : vec<int> m_update_list;
933 : : int m_update_head;
934 : : bitmap m_propfail;
935 : : bitmap_obstack m_bitmaps;
936 : : };
937 : :
938 : : // Create an update list.
939 : :
940 : 24581786 : update_list::update_list ()
941 : : {
942 : 24581786 : m_update_list.create (0);
943 : 24581786 : m_update_list.safe_grow_cleared (last_basic_block_for_fn (cfun) + 64);
944 : 24581786 : m_update_head = -1;
945 : 24581786 : bitmap_obstack_initialize (&m_bitmaps);
946 : 24581786 : m_propfail = BITMAP_ALLOC (&m_bitmaps);
947 : 24581786 : }
948 : :
949 : : // Destroy an update list.
950 : :
951 : 24581786 : update_list::~update_list ()
952 : : {
953 : 24581786 : m_update_list.release ();
954 : 24581786 : bitmap_obstack_release (&m_bitmaps);
955 : 24581786 : }
956 : :
957 : : // Add BB to the list of blocks to update, unless it's already in the list.
958 : :
959 : : void
960 : 3892769 : update_list::add (basic_block bb)
961 : : {
962 : 3892769 : int i = bb->index;
963 : : // If propagation has failed for BB, or its already in the list, don't
964 : : // add it again.
965 : 7785538 : if ((unsigned)i >= m_update_list.length ())
966 : 0 : m_update_list.safe_grow_cleared (i + 64);
967 : 3892769 : if (!m_update_list[i] && !bitmap_bit_p (m_propfail, i))
968 : : {
969 : 3868603 : if (empty_p ())
970 : : {
971 : 3709436 : m_update_head = i;
972 : 3709436 : m_update_list[i] = -1;
973 : : }
974 : : else
975 : : {
976 : 159167 : gcc_checking_assert (m_update_head > 0);
977 : 159167 : m_update_list[i] = m_update_head;
978 : 159167 : m_update_head = i;
979 : : }
980 : : }
981 : 3892769 : }
982 : :
983 : : // Remove a block from the list.
984 : :
985 : : basic_block
986 : 3868603 : update_list::pop ()
987 : : {
988 : 3868603 : gcc_checking_assert (!empty_p ());
989 : 3868603 : basic_block bb = BASIC_BLOCK_FOR_FN (cfun, m_update_head);
990 : 3868603 : int pop = m_update_head;
991 : 3868603 : m_update_head = m_update_list[pop];
992 : 3868603 : m_update_list[pop] = 0;
993 : 3868603 : return bb;
994 : : }
995 : :
996 : : // --------------------------------------------------------------------------
997 : :
998 : 24581786 : ranger_cache::ranger_cache (int not_executable_flag, bool use_imm_uses)
999 : : {
1000 : 24581786 : m_workback.create (0);
1001 : 24581786 : m_workback.safe_grow_cleared (last_basic_block_for_fn (cfun));
1002 : 24581786 : m_workback.truncate (0);
1003 : 24581786 : m_temporal = new temporal_cache;
1004 : :
1005 : : // If DOM info is available, spawn an oracle as well.
1006 : 24581786 : create_relation_oracle ();
1007 : 24581786 : create_infer_oracle (use_imm_uses);
1008 : 24581786 : create_gori (not_executable_flag, param_vrp_switch_limit);
1009 : :
1010 : 24581786 : unsigned x, lim = last_basic_block_for_fn (cfun);
1011 : : // Calculate outgoing range info upfront. This will fully populate the
1012 : : // m_maybe_variant bitmap which will help eliminate processing of names
1013 : : // which never have their ranges adjusted.
1014 : 297060987 : for (x = 0; x < lim ; x++)
1015 : : {
1016 : 272479201 : basic_block bb = BASIC_BLOCK_FOR_FN (cfun, x);
1017 : 272479201 : if (bb)
1018 : 256767837 : gori_ssa ()->exports (bb);
1019 : : }
1020 : 24581786 : m_update = new update_list ();
1021 : 24581786 : }
1022 : :
1023 : 24581786 : ranger_cache::~ranger_cache ()
1024 : : {
1025 : 24581786 : delete m_update;
1026 : 24581786 : destroy_infer_oracle ();
1027 : 24581786 : destroy_relation_oracle ();
1028 : 49163572 : delete m_temporal;
1029 : 24581786 : m_workback.release ();
1030 : 24581786 : }
1031 : :
1032 : : // Dump the global caches to file F. if GORI_DUMP is true, dump the
1033 : : // gori map as well.
1034 : :
1035 : : void
1036 : 46 : ranger_cache::dump (FILE *f)
1037 : : {
1038 : 46 : fprintf (f, "Non-varying global ranges:\n");
1039 : 46 : fprintf (f, "=========================:\n");
1040 : 46 : m_globals.dump (f);
1041 : 46 : fprintf (f, "\n");
1042 : 46 : }
1043 : :
1044 : : // Dump the caches for basic block BB to file F.
1045 : :
1046 : : void
1047 : 257 : ranger_cache::dump_bb (FILE *f, basic_block bb)
1048 : : {
1049 : 257 : gori_ssa ()->dump (f, bb, false);
1050 : 257 : m_on_entry.dump (f, bb);
1051 : 257 : m_relation->dump (f, bb);
1052 : 257 : }
1053 : :
1054 : : // Get the global range for NAME, and return in R. Return false if the
1055 : : // global range is not set, and return the legacy global value in R.
1056 : :
1057 : : bool
1058 : 709978295 : ranger_cache::get_global_range (vrange &r, tree name) const
1059 : : {
1060 : 709978295 : if (m_globals.get_range (r, name))
1061 : : return true;
1062 : 161682400 : gimple_range_global (r, name);
1063 : 161682400 : return false;
1064 : : }
1065 : :
1066 : : // Get the global range for NAME, and return in R. Return false if the
1067 : : // global range is not set, and R will contain the legacy global value.
1068 : : // CURRENT_P is set to true if the value was in cache and not stale.
1069 : : // Otherwise, set CURRENT_P to false and mark as it always current.
1070 : : // If the global cache did not have a value, initialize it as well.
1071 : : // After this call, the global cache will have a value.
1072 : :
1073 : : bool
1074 : 293207027 : ranger_cache::get_global_range (vrange &r, tree name, bool ¤t_p)
1075 : : {
1076 : 293207027 : bool had_global = get_global_range (r, name);
1077 : :
1078 : : // If there was a global value, set current flag, otherwise set a value.
1079 : 293207027 : current_p = false;
1080 : 293207027 : if (had_global)
1081 : 368878618 : current_p = r.singleton_p ()
1082 : 368736690 : || m_temporal->current_p (name, gori_ssa ()->depend1 (name),
1083 : 184297381 : gori_ssa ()->depend2 (name));
1084 : : else
1085 : : {
1086 : : // If no global value has been set and value is VARYING, fold the stmt
1087 : : // using just global ranges to get a better initial value.
1088 : : // After inlining we tend to decide some things are constant, so
1089 : : // so not do this evaluation after inlining.
1090 : 108767718 : if (r.varying_p () && !cfun->after_inlining)
1091 : : {
1092 : 18863365 : gimple *s = SSA_NAME_DEF_STMT (name);
1093 : : // Do not process PHIs as SCEV may be in use and it can
1094 : : // spawn cyclic lookups.
1095 : 18863365 : if (gimple_get_lhs (s) == name && !is_a<gphi *> (s))
1096 : : {
1097 : 14682995 : if (!fold_range (r, s, get_global_range_query ()))
1098 : 0 : gimple_range_global (r, name);
1099 : : }
1100 : : }
1101 : 108767718 : m_globals.set_range (name, r);
1102 : : }
1103 : :
1104 : : // If the existing value was not current, mark it as always current.
1105 : 293207027 : if (!current_p)
1106 : 116688603 : m_temporal->set_always_current (name, true);
1107 : 293207027 : return had_global;
1108 : : }
1109 : :
1110 : : // Set the global range of NAME to R and give it a timestamp.
1111 : :
1112 : : void
1113 : 116688603 : ranger_cache::set_global_range (tree name, const vrange &r, bool changed)
1114 : : {
1115 : : // Setting a range always clears the always_current flag.
1116 : 116688603 : m_temporal->set_always_current (name, false);
1117 : 116688603 : if (!changed)
1118 : : {
1119 : : // If there are dependencies, make sure this is not out of date.
1120 : 106809286 : if (!m_temporal->current_p (name, gori_ssa ()->depend1 (name),
1121 : 106809286 : gori_ssa ()->depend2 (name)))
1122 : 22455913 : m_temporal->set_timestamp (name);
1123 : 106809286 : return;
1124 : : }
1125 : 9879317 : if (m_globals.set_range (name, r))
1126 : : {
1127 : : // If there was already a range set, propagate the new value.
1128 : 9879317 : basic_block bb = gimple_bb (SSA_NAME_DEF_STMT (name));
1129 : 9879317 : if (!bb)
1130 : 0 : bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1131 : :
1132 : 9879317 : if (DEBUG_RANGE_CACHE)
1133 : 0 : fprintf (dump_file, " GLOBAL :");
1134 : :
1135 : 9879317 : propagate_updated_value (name, bb);
1136 : : }
1137 : : // Constants no longer need to tracked. Any further refinement has to be
1138 : : // undefined. Propagation works better with constants. PR 100512.
1139 : : // Pointers which resolve to non-zero also do not need
1140 : : // tracking in the cache as they will never change. See PR 98866.
1141 : : // Timestamp must always be updated, or dependent calculations may
1142 : : // not include this latest value. PR 100774.
1143 : :
1144 : 9879317 : if (r.singleton_p ()
1145 : 9879317 : || (POINTER_TYPE_P (TREE_TYPE (name)) && r.nonzero_p ()))
1146 : 1879803 : gori_ssa ()->set_range_invariant (name);
1147 : 9879317 : m_temporal->set_timestamp (name);
1148 : : }
1149 : :
1150 : : // Provide lookup for the gori-computes class to access the best known range
1151 : : // of an ssa_name in any given basic block. Note, this does no additional
1152 : : // lookups, just accesses the data that is already known.
1153 : :
1154 : : // Get the range of NAME when the def occurs in block BB. If BB is NULL
1155 : : // get the best global value available.
1156 : :
1157 : : void
1158 : 149705252 : ranger_cache::range_of_def (vrange &r, tree name, basic_block bb)
1159 : : {
1160 : 149705252 : gcc_checking_assert (gimple_range_ssa_p (name));
1161 : 260870339 : gcc_checking_assert (!bb || bb == gimple_bb (SSA_NAME_DEF_STMT (name)));
1162 : :
1163 : : // Pick up the best global range available.
1164 : 149705252 : if (!m_globals.get_range (r, name))
1165 : : {
1166 : : // If that fails, try to calculate the range using just global values.
1167 : 19324179 : gimple *s = SSA_NAME_DEF_STMT (name);
1168 : 19324179 : if (gimple_get_lhs (s) == name)
1169 : 16740333 : fold_range (r, s, get_global_range_query ());
1170 : : else
1171 : 2583846 : gimple_range_global (r, name);
1172 : : }
1173 : 149705252 : }
1174 : :
1175 : : // Get the range of NAME as it occurs on entry to block BB. Use MODE for
1176 : : // lookups.
1177 : :
1178 : : void
1179 : 92409443 : ranger_cache::entry_range (vrange &r, tree name, basic_block bb,
1180 : : enum rfd_mode mode)
1181 : : {
1182 : 92409443 : if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1183 : : {
1184 : 0 : gimple_range_global (r, name);
1185 : 0 : return;
1186 : : }
1187 : :
1188 : : // Look for the on-entry value of name in BB from the cache.
1189 : : // Otherwise pick up the best available global value.
1190 : 92409443 : if (!m_on_entry.get_bb_range (r, name, bb))
1191 : 48611436 : if (!range_from_dom (r, name, bb, mode))
1192 : 38540165 : range_of_def (r, name);
1193 : : }
1194 : :
1195 : : // Get the range of NAME as it occurs on exit from block BB. Use MODE for
1196 : : // lookups.
1197 : :
1198 : : void
1199 : 79686816 : ranger_cache::exit_range (vrange &r, tree name, basic_block bb,
1200 : : enum rfd_mode mode)
1201 : : {
1202 : 79686816 : if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1203 : : {
1204 : 10423 : gimple_range_global (r, name);
1205 : 10423 : return;
1206 : : }
1207 : :
1208 : 79676393 : gimple *s = SSA_NAME_DEF_STMT (name);
1209 : 79676393 : basic_block def_bb = gimple_bb (s);
1210 : 79676393 : if (def_bb == bb)
1211 : 38062809 : range_of_def (r, name, bb);
1212 : : else
1213 : 41613584 : entry_range (r, name, bb, mode);
1214 : : }
1215 : :
1216 : : // Get the range of NAME on edge E using MODE, return the result in R.
1217 : : // Always returns a range and true.
1218 : :
1219 : : bool
1220 : 70360295 : ranger_cache::edge_range (vrange &r, edge e, tree name, enum rfd_mode mode)
1221 : : {
1222 : 70360295 : exit_range (r, name, e->src, mode);
1223 : : // If this is not an abnormal edge, check for inferred ranges on exit.
1224 : 70360295 : if ((e->flags & (EDGE_EH | EDGE_ABNORMAL)) == 0)
1225 : 69994306 : infer_oracle ().maybe_adjust_range (r, name, e->src);
1226 : 70360295 : value_range er (TREE_TYPE (name));
1227 : 70360295 : if (gori ().edge_range_p (er, e, name, *this))
1228 : 14937236 : r.intersect (er);
1229 : 140720590 : return true;
1230 : 70360295 : }
1231 : :
1232 : :
1233 : :
1234 : : // Implement range_of_expr.
1235 : :
1236 : : bool
1237 : 152670810 : ranger_cache::range_of_expr (vrange &r, tree name, gimple *stmt)
1238 : : {
1239 : 152670810 : if (!gimple_range_ssa_p (name))
1240 : : {
1241 : 28772673 : get_tree_range (r, name, stmt);
1242 : 28772673 : return true;
1243 : : }
1244 : :
1245 : 123898137 : basic_block bb = gimple_bb (stmt);
1246 : 123898137 : gimple *def_stmt = SSA_NAME_DEF_STMT (name);
1247 : 123898137 : basic_block def_bb = gimple_bb (def_stmt);
1248 : :
1249 : 123898137 : if (bb == def_bb)
1250 : 73102278 : range_of_def (r, name, bb);
1251 : : else
1252 : 50795859 : entry_range (r, name, bb, RFD_NONE);
1253 : : return true;
1254 : : }
1255 : :
1256 : :
1257 : : // Implement range_on_edge. Always return the best available range using
1258 : : // the current cache values.
1259 : :
1260 : : bool
1261 : 60249003 : ranger_cache::range_on_edge (vrange &r, edge e, tree expr)
1262 : : {
1263 : 60249003 : if (gimple_range_ssa_p (expr))
1264 : 58238458 : return edge_range (r, e, expr, RFD_NONE);
1265 : 2010545 : return get_tree_range (r, expr, NULL);
1266 : : }
1267 : :
1268 : : // Return a static range for NAME on entry to basic block BB in R. If
1269 : : // calc is true, fill any cache entries required between BB and the
1270 : : // def block for NAME. Otherwise, return false if the cache is empty.
1271 : :
1272 : : bool
1273 : 330479538 : ranger_cache::block_range (vrange &r, basic_block bb, tree name, bool calc)
1274 : : {
1275 : 330479538 : gcc_checking_assert (gimple_range_ssa_p (name));
1276 : :
1277 : : // If there are no range calculations anywhere in the IL, global range
1278 : : // applies everywhere, so don't bother caching it.
1279 : 330479538 : if (!gori ().has_edge_range_p (name))
1280 : : return false;
1281 : :
1282 : 201570410 : if (calc)
1283 : : {
1284 : 97316829 : gimple *def_stmt = SSA_NAME_DEF_STMT (name);
1285 : 97316829 : basic_block def_bb = NULL;
1286 : 97316829 : if (def_stmt)
1287 : 97316829 : def_bb = gimple_bb (def_stmt);;
1288 : 97316829 : if (!def_bb)
1289 : : {
1290 : : // If we get to the entry block, this better be a default def
1291 : : // or range_on_entry was called for a block not dominated by
1292 : : // the def.
1293 : 15499890 : gcc_checking_assert (SSA_NAME_IS_DEFAULT_DEF (name));
1294 : 15499890 : def_bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1295 : : }
1296 : :
1297 : : // There is no range on entry for the definition block.
1298 : 97316829 : if (def_bb == bb)
1299 : : return false;
1300 : :
1301 : : // Otherwise, go figure out what is known in predecessor blocks.
1302 : 96973587 : fill_block_cache (name, bb, def_bb);
1303 : 96973587 : gcc_checking_assert (m_on_entry.bb_range_p (name, bb));
1304 : : }
1305 : 201227168 : return m_on_entry.get_bb_range (r, name, bb);
1306 : : }
1307 : :
1308 : : // If there is anything in the propagation update_list, continue
1309 : : // processing NAME until the list of blocks is empty.
1310 : :
1311 : : void
1312 : 3560109 : ranger_cache::propagate_cache (tree name)
1313 : : {
1314 : 3560109 : basic_block bb;
1315 : 3560109 : edge_iterator ei;
1316 : 3560109 : edge e;
1317 : 3560109 : tree type = TREE_TYPE (name);
1318 : 3560109 : value_range new_range (type);
1319 : 3560109 : value_range current_range (type);
1320 : 3560109 : value_range e_range (type);
1321 : :
1322 : : // Process each block by seeing if its calculated range on entry is
1323 : : // the same as its cached value. If there is a difference, update
1324 : : // the cache to reflect the new value, and check to see if any
1325 : : // successors have cache entries which may need to be checked for
1326 : : // updates.
1327 : :
1328 : 10988821 : while (!m_update->empty_p ())
1329 : : {
1330 : 3868603 : bb = m_update->pop ();
1331 : 3868603 : gcc_checking_assert (m_on_entry.bb_range_p (name, bb));
1332 : 3868603 : m_on_entry.get_bb_range (current_range, name, bb);
1333 : :
1334 : 3868603 : if (DEBUG_RANGE_CACHE)
1335 : : {
1336 : 0 : fprintf (dump_file, "FWD visiting block %d for ", bb->index);
1337 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1338 : 0 : fprintf (dump_file, " starting range : ");
1339 : 0 : current_range.dump (dump_file);
1340 : 0 : fprintf (dump_file, "\n");
1341 : : }
1342 : :
1343 : : // Calculate the "new" range on entry by unioning the pred edges.
1344 : 3868603 : new_range.set_undefined ();
1345 : 7551729 : FOR_EACH_EDGE (e, ei, bb->preds)
1346 : : {
1347 : 4319072 : edge_range (e_range, e, name, RFD_READ_ONLY);
1348 : 4319072 : if (DEBUG_RANGE_CACHE)
1349 : : {
1350 : 0 : fprintf (dump_file, " edge %d->%d :", e->src->index, bb->index);
1351 : 0 : e_range.dump (dump_file);
1352 : 0 : fprintf (dump_file, "\n");
1353 : : }
1354 : 4319072 : new_range.union_ (e_range);
1355 : 4319072 : if (new_range.varying_p ())
1356 : : break;
1357 : : }
1358 : :
1359 : : // If the range on entry has changed, update it.
1360 : 3868603 : if (new_range != current_range)
1361 : : {
1362 : 1331028 : bool ok_p = m_on_entry.set_bb_range (name, bb, new_range);
1363 : : // If the cache couldn't set the value, mark it as failed.
1364 : 1331028 : if (!ok_p)
1365 : 0 : m_update->propagation_failed (bb);
1366 : 1331028 : if (DEBUG_RANGE_CACHE)
1367 : : {
1368 : 0 : if (!ok_p)
1369 : : {
1370 : 0 : fprintf (dump_file, " Cache failure to store value:");
1371 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1372 : 0 : fprintf (dump_file, " ");
1373 : : }
1374 : : else
1375 : : {
1376 : 0 : fprintf (dump_file, " Updating range to ");
1377 : 0 : new_range.dump (dump_file);
1378 : : }
1379 : 0 : fprintf (dump_file, "\n Updating blocks :");
1380 : : }
1381 : : // Mark each successor that has a range to re-check its range
1382 : 3173459 : FOR_EACH_EDGE (e, ei, bb->succs)
1383 : 1842431 : if (m_on_entry.bb_range_p (name, e->dest))
1384 : : {
1385 : 272188 : if (DEBUG_RANGE_CACHE)
1386 : 0 : fprintf (dump_file, " bb%d",e->dest->index);
1387 : 272188 : m_update->add (e->dest);
1388 : : }
1389 : 1331028 : if (DEBUG_RANGE_CACHE)
1390 : 0 : fprintf (dump_file, "\n");
1391 : : }
1392 : : }
1393 : 3560109 : if (DEBUG_RANGE_CACHE)
1394 : : {
1395 : 0 : fprintf (dump_file, "DONE visiting blocks for ");
1396 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1397 : 0 : fprintf (dump_file, "\n");
1398 : : }
1399 : 3560109 : m_update->clear_failures ();
1400 : 3560109 : }
1401 : :
1402 : : // Check to see if an update to the value for NAME in BB has any effect
1403 : : // on values already in the on-entry cache for successor blocks.
1404 : : // If it does, update them. Don't visit any blocks which don't have a cache
1405 : : // entry.
1406 : :
1407 : : void
1408 : 46244834 : ranger_cache::propagate_updated_value (tree name, basic_block bb)
1409 : : {
1410 : 46244834 : edge e;
1411 : 46244834 : edge_iterator ei;
1412 : :
1413 : : // The update work list should be empty at this point.
1414 : 46244834 : gcc_checking_assert (m_update->empty_p ());
1415 : 46244834 : gcc_checking_assert (bb);
1416 : :
1417 : 46244834 : if (DEBUG_RANGE_CACHE)
1418 : : {
1419 : 0 : fprintf (dump_file, " UPDATE cache for ");
1420 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1421 : 0 : fprintf (dump_file, " in BB %d : successors : ", bb->index);
1422 : : }
1423 : 134123401 : FOR_EACH_EDGE (e, ei, bb->succs)
1424 : : {
1425 : : // Only update active cache entries.
1426 : 87878567 : if (m_on_entry.bb_range_p (name, e->dest))
1427 : : {
1428 : 3531928 : m_update->add (e->dest);
1429 : 3531928 : if (DEBUG_RANGE_CACHE)
1430 : 0 : fprintf (dump_file, " UPDATE: bb%d", e->dest->index);
1431 : : }
1432 : : }
1433 : 46244834 : if (!m_update->empty_p ())
1434 : : {
1435 : 3499728 : if (DEBUG_RANGE_CACHE)
1436 : 0 : fprintf (dump_file, "\n");
1437 : 3499728 : propagate_cache (name);
1438 : : }
1439 : : else
1440 : : {
1441 : 42745106 : if (DEBUG_RANGE_CACHE)
1442 : 0 : fprintf (dump_file, " : No updates!\n");
1443 : : }
1444 : 46244834 : }
1445 : :
1446 : : // Make sure that the range-on-entry cache for NAME is set for block BB.
1447 : : // Work back through the CFG to DEF_BB ensuring the range is calculated
1448 : : // on the block/edges leading back to that point.
1449 : :
1450 : : void
1451 : 96973587 : ranger_cache::fill_block_cache (tree name, basic_block bb, basic_block def_bb)
1452 : : {
1453 : 96973587 : edge_iterator ei;
1454 : 96973587 : edge e;
1455 : 96973587 : tree type = TREE_TYPE (name);
1456 : 96973587 : value_range block_result (type);
1457 : 96973587 : value_range undefined (type);
1458 : :
1459 : : // At this point we shouldn't be looking at the def, entry block.
1460 : 96973587 : gcc_checking_assert (bb != def_bb && bb != ENTRY_BLOCK_PTR_FOR_FN (cfun));
1461 : 96973587 : unsigned start_length = m_workback.length ();
1462 : :
1463 : : // If the block cache is set, then we've already visited this block.
1464 : 96973587 : if (m_on_entry.bb_range_p (name, bb))
1465 : : return;
1466 : :
1467 : 42020019 : if (DEBUG_RANGE_CACHE)
1468 : : {
1469 : 0 : fprintf (dump_file, "\n");
1470 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1471 : 0 : fprintf (dump_file, " : ");
1472 : : }
1473 : :
1474 : : // Check if a dominators can supply the range.
1475 : 42020019 : if (range_from_dom (block_result, name, bb, RFD_FILL))
1476 : : {
1477 : 41959638 : if (DEBUG_RANGE_CACHE)
1478 : : {
1479 : 0 : fprintf (dump_file, "Filled from dominator! : ");
1480 : 0 : block_result.dump (dump_file);
1481 : 0 : fprintf (dump_file, "\n");
1482 : : }
1483 : : // See if any equivalences can refine it.
1484 : : // PR 109462, like 108139 below, a one way equivalence introduced
1485 : : // by a PHI node can also be through the definition side. Disallow it.
1486 : 41959638 : tree equiv_name;
1487 : 41959638 : relation_kind rel;
1488 : 41959638 : int prec = TYPE_PRECISION (type);
1489 : : // If there are too many basic blocks, do not attempt to process
1490 : : // equivalencies.
1491 : 41959638 : if (last_basic_block_for_fn (cfun) > param_vrp_sparse_threshold)
1492 : : {
1493 : 265725 : m_on_entry.set_bb_range (name, bb, block_result);
1494 : 531450 : gcc_checking_assert (m_workback.length () == start_length);
1495 : : return;
1496 : : }
1497 : 49459381 : FOR_EACH_PARTIAL_AND_FULL_EQUIV (m_relation, bb, name, equiv_name, rel)
1498 : : {
1499 : 7765468 : basic_block equiv_bb = gimple_bb (SSA_NAME_DEF_STMT (equiv_name));
1500 : :
1501 : : // Ignore partial equivs that are smaller than this object.
1502 : 14064878 : if (rel != VREL_EQ && prec > pe_to_bits (rel))
1503 : 3068465 : continue;
1504 : :
1505 : : // Check if the equiv has any ranges calculated.
1506 : 6848485 : if (!gori ().has_edge_range_p (equiv_name))
1507 : 285283 : continue;
1508 : :
1509 : : // Check if the equiv definition dominates this block
1510 : 6563202 : if (equiv_bb == bb ||
1511 : 6376982 : (equiv_bb && !dominated_by_p (CDI_DOMINATORS, bb, equiv_bb)))
1512 : 1866199 : continue;
1513 : :
1514 : 4697003 : if (DEBUG_RANGE_CACHE)
1515 : : {
1516 : 0 : if (rel == VREL_EQ)
1517 : 0 : fprintf (dump_file, "Checking Equivalence (");
1518 : : else
1519 : 0 : fprintf (dump_file, "Checking Partial equiv (");
1520 : 0 : print_relation (dump_file, rel);
1521 : 0 : fprintf (dump_file, ") ");
1522 : 0 : print_generic_expr (dump_file, equiv_name, TDF_SLIM);
1523 : 0 : fprintf (dump_file, "\n");
1524 : : }
1525 : 4697003 : value_range equiv_range (TREE_TYPE (equiv_name));
1526 : 4697003 : if (range_from_dom (equiv_range, equiv_name, bb, RFD_READ_ONLY))
1527 : : {
1528 : 4697003 : if (rel != VREL_EQ)
1529 : 3430960 : range_cast (equiv_range, type);
1530 : : else
1531 : 1266043 : adjust_equivalence_range (equiv_range);
1532 : :
1533 : 4697003 : if (block_result.intersect (equiv_range))
1534 : : {
1535 : 92866 : if (DEBUG_RANGE_CACHE)
1536 : : {
1537 : 0 : if (rel == VREL_EQ)
1538 : 0 : fprintf (dump_file, "Equivalence update! : ");
1539 : : else
1540 : 0 : fprintf (dump_file, "Partial equiv update! : ");
1541 : 0 : print_generic_expr (dump_file, equiv_name, TDF_SLIM);
1542 : 0 : fprintf (dump_file, " has range : ");
1543 : 0 : equiv_range.dump (dump_file);
1544 : 0 : fprintf (dump_file, " refining range to :");
1545 : 0 : block_result.dump (dump_file);
1546 : 0 : fprintf (dump_file, "\n");
1547 : : }
1548 : : }
1549 : : }
1550 : 4697003 : }
1551 : :
1552 : 41693913 : m_on_entry.set_bb_range (name, bb, block_result);
1553 : 83387826 : gcc_checking_assert (m_workback.length () == start_length);
1554 : : return;
1555 : : }
1556 : :
1557 : : // Visit each block back to the DEF. Initialize each one to UNDEFINED.
1558 : : // m_visited at the end will contain all the blocks that we needed to set
1559 : : // the range_on_entry cache for.
1560 : 60381 : m_workback.quick_push (bb);
1561 : 60381 : undefined.set_undefined ();
1562 : 60381 : m_on_entry.set_bb_range (name, bb, undefined);
1563 : 60381 : gcc_checking_assert (m_update->empty_p ());
1564 : :
1565 : 552240 : while (m_workback.length () > start_length)
1566 : : {
1567 : 215739 : basic_block node = m_workback.pop ();
1568 : 215739 : if (DEBUG_RANGE_CACHE)
1569 : : {
1570 : 0 : fprintf (dump_file, "BACK visiting block %d for ", node->index);
1571 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1572 : 0 : fprintf (dump_file, "\n");
1573 : : }
1574 : :
1575 : 481468 : FOR_EACH_EDGE (e, ei, node->preds)
1576 : : {
1577 : 265729 : basic_block pred = e->src;
1578 : 265729 : value_range r (TREE_TYPE (name));
1579 : :
1580 : 265729 : if (DEBUG_RANGE_CACHE)
1581 : 0 : fprintf (dump_file, " %d->%d ",e->src->index, e->dest->index);
1582 : :
1583 : : // If the pred block is the def block add this BB to update list.
1584 : 265729 : if (pred == def_bb)
1585 : : {
1586 : 62338 : m_update->add (node);
1587 : 62338 : continue;
1588 : : }
1589 : :
1590 : : // If the pred is entry but NOT def, then it is used before
1591 : : // defined, it'll get set to [] and no need to update it.
1592 : 203391 : if (pred == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1593 : : {
1594 : 0 : if (DEBUG_RANGE_CACHE)
1595 : 0 : fprintf (dump_file, "entry: bail.");
1596 : 0 : continue;
1597 : : }
1598 : :
1599 : : // Regardless of whether we have visited pred or not, if the
1600 : : // pred has inferred ranges, revisit this block.
1601 : : // Don't search the DOM tree.
1602 : 203391 : if (infer_oracle ().has_range_p (pred, name))
1603 : : {
1604 : 1610 : if (DEBUG_RANGE_CACHE)
1605 : 0 : fprintf (dump_file, "Inferred range: update ");
1606 : 1610 : m_update->add (node);
1607 : : }
1608 : :
1609 : : // If the pred block already has a range, or if it can contribute
1610 : : // something new. Ie, the edge generates a range of some sort.
1611 : 203391 : if (m_on_entry.get_bb_range (r, name, pred))
1612 : : {
1613 : 48033 : if (DEBUG_RANGE_CACHE)
1614 : : {
1615 : 0 : fprintf (dump_file, "has cache, ");
1616 : 0 : r.dump (dump_file);
1617 : 0 : fprintf (dump_file, ", ");
1618 : : }
1619 : 48033 : if (!r.undefined_p () || gori ().has_edge_range_p (name, e))
1620 : : {
1621 : 24705 : m_update->add (node);
1622 : 24705 : if (DEBUG_RANGE_CACHE)
1623 : 0 : fprintf (dump_file, "update. ");
1624 : : }
1625 : 48033 : continue;
1626 : : }
1627 : :
1628 : 155358 : if (DEBUG_RANGE_CACHE)
1629 : 0 : fprintf (dump_file, "pushing undefined pred block.\n");
1630 : : // If the pred hasn't been visited (has no range), add it to
1631 : : // the list.
1632 : 155358 : gcc_checking_assert (!m_on_entry.bb_range_p (name, pred));
1633 : 155358 : m_on_entry.set_bb_range (name, pred, undefined);
1634 : 155358 : m_workback.quick_push (pred);
1635 : 265729 : }
1636 : : }
1637 : :
1638 : 60381 : if (DEBUG_RANGE_CACHE)
1639 : 0 : fprintf (dump_file, "\n");
1640 : :
1641 : : // Now fill in the marked blocks with values.
1642 : 60381 : propagate_cache (name);
1643 : 60381 : if (DEBUG_RANGE_CACHE)
1644 : 0 : fprintf (dump_file, " Propagation update done.\n");
1645 : 96973587 : }
1646 : :
1647 : : // Resolve the range of BB if the dominators range is R by calculating incoming
1648 : : // edges to this block. All lead back to the dominator so should be cheap.
1649 : : // The range for BB is set and returned in R.
1650 : :
1651 : : void
1652 : 3447934 : ranger_cache::resolve_dom (vrange &r, tree name, basic_block bb)
1653 : : {
1654 : 3447934 : basic_block def_bb = gimple_bb (SSA_NAME_DEF_STMT (name));
1655 : 3447934 : basic_block dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1656 : :
1657 : : // if it doesn't already have a value, store the incoming range.
1658 : 3447934 : if (!m_on_entry.bb_range_p (name, dom_bb) && def_bb != dom_bb)
1659 : : {
1660 : : // If the range can't be store, don't try to accumulate
1661 : : // the range in PREV_BB due to excessive recalculations.
1662 : 849950 : if (!m_on_entry.set_bb_range (name, dom_bb, r))
1663 : 0 : return;
1664 : : }
1665 : : // With the dominator set, we should be able to cheaply query
1666 : : // each incoming edge now and accumulate the results.
1667 : 3447934 : r.set_undefined ();
1668 : 3447934 : edge e;
1669 : 3447934 : edge_iterator ei;
1670 : 3447934 : value_range er (TREE_TYPE (name));
1671 : 11271189 : FOR_EACH_EDGE (e, ei, bb->preds)
1672 : : {
1673 : : // If the predecessor is dominated by this block, then there is a back
1674 : : // edge, and won't provide anything useful. We'll actually end up with
1675 : : // VARYING as we will not resolve this node.
1676 : 7823255 : if (dominated_by_p (CDI_DOMINATORS, e->src, bb))
1677 : 20490 : continue;
1678 : 7802765 : edge_range (er, e, name, RFD_READ_ONLY);
1679 : 7802765 : r.union_ (er);
1680 : : }
1681 : : // Set the cache in PREV_BB so it is not calculated again.
1682 : 3447934 : m_on_entry.set_bb_range (name, bb, r);
1683 : 3447934 : }
1684 : :
1685 : : // Get the range of NAME from dominators of BB and return it in R. Search the
1686 : : // dominator tree based on MODE.
1687 : :
1688 : : bool
1689 : 95328458 : ranger_cache::range_from_dom (vrange &r, tree name, basic_block start_bb,
1690 : : enum rfd_mode mode)
1691 : : {
1692 : 95328458 : if (mode == RFD_NONE || !dom_info_available_p (CDI_DOMINATORS))
1693 : 38600546 : return false;
1694 : :
1695 : : // Search back to the definition block or entry block.
1696 : 56727912 : basic_block def_bb = gimple_bb (SSA_NAME_DEF_STMT (name));
1697 : 56727912 : if (def_bb == NULL)
1698 : 11348438 : def_bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1699 : :
1700 : 56727912 : basic_block bb;
1701 : 56727912 : basic_block prev_bb = start_bb;
1702 : :
1703 : : // Track any inferred ranges seen.
1704 : 56727912 : value_range infer (TREE_TYPE (name));
1705 : 56727912 : infer.set_varying (TREE_TYPE (name));
1706 : :
1707 : : // Range on entry to the DEF block should not be queried.
1708 : 56727912 : gcc_checking_assert (start_bb != def_bb);
1709 : 56727912 : unsigned start_limit = m_workback.length ();
1710 : :
1711 : : // Default value is global range.
1712 : 56727912 : get_global_range (r, name);
1713 : :
1714 : : // The dominator of EXIT_BLOCK doesn't seem to be set, so at least handle
1715 : : // the common single exit cases.
1716 : 56812702 : if (start_bb == EXIT_BLOCK_PTR_FOR_FN (cfun) && single_pred_p (start_bb))
1717 : 84669 : bb = single_pred_edge (start_bb)->src;
1718 : : else
1719 : 56643243 : bb = get_immediate_dominator (CDI_DOMINATORS, start_bb);
1720 : :
1721 : : // Search until a value is found, pushing blocks which may need calculating.
1722 : 274804050 : for ( ; bb; prev_bb = bb, bb = get_immediate_dominator (CDI_DOMINATORS, bb))
1723 : : {
1724 : : // Accumulate any block exit inferred ranges.
1725 : 274224990 : infer_oracle ().maybe_adjust_range (infer, name, bb);
1726 : :
1727 : : // This block has an outgoing range.
1728 : 274224990 : if (gori ().has_edge_range_p (name, bb))
1729 : 35359945 : m_workback.quick_push (prev_bb);
1730 : : else
1731 : : {
1732 : : // Normally join blocks don't carry any new range information on
1733 : : // incoming edges. If the first incoming edge to this block does
1734 : : // generate a range, calculate the ranges if all incoming edges
1735 : : // are also dominated by the dominator. (Avoids backedges which
1736 : : // will break the rule of moving only upward in the dominator tree).
1737 : : // If the first pred does not generate a range, then we will be
1738 : : // using the dominator range anyway, so that's all the check needed.
1739 : 238865045 : if (EDGE_COUNT (prev_bb->preds) > 1
1740 : 238865045 : && gori ().has_edge_range_p (name, EDGE_PRED (prev_bb, 0)->src))
1741 : : {
1742 : 466678 : edge e;
1743 : 466678 : edge_iterator ei;
1744 : 466678 : bool all_dom = true;
1745 : 1539202 : FOR_EACH_EDGE (e, ei, prev_bb->preds)
1746 : 1072524 : if (e->src != bb
1747 : 1072524 : && !dominated_by_p (CDI_DOMINATORS, e->src, bb))
1748 : : {
1749 : : all_dom = false;
1750 : : break;
1751 : : }
1752 : 466678 : if (all_dom)
1753 : 466678 : m_workback.quick_push (prev_bb);
1754 : : }
1755 : : }
1756 : :
1757 : 274224990 : if (def_bb == bb)
1758 : : break;
1759 : :
1760 : 236520429 : if (m_on_entry.get_bb_range (r, name, bb))
1761 : : break;
1762 : : }
1763 : :
1764 : 56727912 : if (DEBUG_RANGE_CACHE)
1765 : : {
1766 : 0 : fprintf (dump_file, "CACHE: BB %d DOM query for ", start_bb->index);
1767 : 0 : print_generic_expr (dump_file, name, TDF_SLIM);
1768 : 0 : fprintf (dump_file, ", found ");
1769 : 0 : r.dump (dump_file);
1770 : 0 : if (bb)
1771 : 0 : fprintf (dump_file, " at BB%d\n", bb->index);
1772 : : else
1773 : 0 : fprintf (dump_file, " at function top\n");
1774 : : }
1775 : :
1776 : : // Now process any blocks wit incoming edges that nay have adjustments.
1777 : 185109070 : while (m_workback.length () > start_limit)
1778 : : {
1779 : 35826623 : value_range er (TREE_TYPE (name));
1780 : 35826623 : prev_bb = m_workback.pop ();
1781 : 71653246 : if (!single_pred_p (prev_bb))
1782 : : {
1783 : : // Non single pred means we need to cache a value in the dominator
1784 : : // so we can cheaply calculate incoming edges to this block, and
1785 : : // then store the resulting value. If processing mode is not
1786 : : // RFD_FILL, then the cache cant be stored to, so don't try.
1787 : : // Otherwise this becomes a quadratic timed calculation.
1788 : 6366866 : if (mode == RFD_FILL)
1789 : 3447934 : resolve_dom (r, name, prev_bb);
1790 : 6366866 : continue;
1791 : : }
1792 : :
1793 : 29459757 : edge e = single_pred_edge (prev_bb);
1794 : 29459757 : bb = e->src;
1795 : 29459757 : if (gori ().edge_range_p (er, e, name, *this))
1796 : : {
1797 : 26784850 : r.intersect (er);
1798 : : // If this is a normal edge, apply any inferred ranges.
1799 : 26784850 : if ((e->flags & (EDGE_EH | EDGE_ABNORMAL)) == 0)
1800 : 26784850 : infer_oracle ().maybe_adjust_range (r, name, bb);
1801 : :
1802 : 26784850 : if (DEBUG_RANGE_CACHE)
1803 : : {
1804 : 0 : fprintf (dump_file, "CACHE: Adjusted edge range for %d->%d : ",
1805 : : bb->index, prev_bb->index);
1806 : 0 : r.dump (dump_file);
1807 : 0 : fprintf (dump_file, "\n");
1808 : : }
1809 : : }
1810 : 35826623 : }
1811 : :
1812 : : // Apply non-null if appropriate.
1813 : 56727912 : if (!has_abnormal_call_or_eh_pred_edge_p (start_bb))
1814 : 56504710 : r.intersect (infer);
1815 : :
1816 : 56727912 : if (DEBUG_RANGE_CACHE)
1817 : : {
1818 : 0 : fprintf (dump_file, "CACHE: Range for DOM returns : ");
1819 : 0 : r.dump (dump_file);
1820 : 0 : fprintf (dump_file, "\n");
1821 : : }
1822 : 56727912 : return true;
1823 : 56727912 : }
1824 : :
1825 : : // This routine will register an inferred value in block BB, and possibly
1826 : : // update the on-entry cache if appropriate.
1827 : :
1828 : : void
1829 : 14817124 : ranger_cache::register_inferred_value (const vrange &ir, tree name,
1830 : : basic_block bb)
1831 : : {
1832 : 14817124 : value_range r (TREE_TYPE (name));
1833 : 14817124 : if (!m_on_entry.get_bb_range (r, name, bb))
1834 : 9326521 : exit_range (r, name, bb, RFD_READ_ONLY);
1835 : 14817124 : if (r.intersect (ir))
1836 : : {
1837 : 4452633 : m_on_entry.set_bb_range (name, bb, r);
1838 : : // If this range was invariant before, remove invariant.
1839 : 4452633 : if (!gori ().has_edge_range_p (name))
1840 : 3793376 : gori_ssa ()->set_range_invariant (name, false);
1841 : : }
1842 : 14817124 : }
1843 : :
1844 : : // This routine is used during a block walk to adjust any inferred ranges
1845 : : // of operands on stmt S.
1846 : :
1847 : : void
1848 : 216057175 : ranger_cache::apply_inferred_ranges (gimple *s)
1849 : : {
1850 : 216057175 : bool update = true;
1851 : :
1852 : 216057175 : basic_block bb = gimple_bb (s);
1853 : 216057175 : gimple_infer_range infer(s);
1854 : 216057175 : if (infer.num () == 0)
1855 : : return;
1856 : :
1857 : : // Do not update the on-entry cache for block ending stmts.
1858 : 14571120 : if (stmt_ends_bb_p (s))
1859 : : {
1860 : 1128073 : edge_iterator ei;
1861 : 1128073 : edge e;
1862 : 2024501 : FOR_EACH_EDGE (e, ei, gimple_bb (s)->succs)
1863 : 2019229 : if (!(e->flags & (EDGE_ABNORMAL|EDGE_EH)))
1864 : : break;
1865 : 1128073 : if (e == NULL)
1866 : 5272 : update = false;
1867 : : }
1868 : :
1869 : 14571120 : infer_oracle ().add_ranges (s, infer);
1870 : 14571120 : if (update)
1871 : 29362166 : for (unsigned x = 0; x < infer.num (); x++)
1872 : 14796318 : register_inferred_value (infer.range (x), infer.name (x), bb);
1873 : : }
|