re PR preprocessor/36674 (#include location is offset by one row in errors from prepr...
[gcc.git] / gcc / tree-ssa-operands.c
1 /* SSA operands management for trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
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 "tm.h"
25 #include "tree.h"
26 #include "flags.h"
27 #include "function.h"
28 #include "diagnostic.h"
29 #include "tree-flow.h"
30 #include "tree-inline.h"
31 #include "tree-pass.h"
32 #include "ggc.h"
33 #include "timevar.h"
34 #include "toplev.h"
35 #include "langhooks.h"
36 #include "ipa-reference.h"
37
38 /* This file contains the code required to manage the operands cache of the
39 SSA optimizer. For every stmt, we maintain an operand cache in the stmt
40 annotation. This cache contains operands that will be of interest to
41 optimizers and other passes wishing to manipulate the IL.
42
43 The operand type are broken up into REAL and VIRTUAL operands. The real
44 operands are represented as pointers into the stmt's operand tree. Thus
45 any manipulation of the real operands will be reflected in the actual tree.
46 Virtual operands are represented solely in the cache, although the base
47 variable for the SSA_NAME may, or may not occur in the stmt's tree.
48 Manipulation of the virtual operands will not be reflected in the stmt tree.
49
50 The routines in this file are concerned with creating this operand cache
51 from a stmt tree.
52
53 The operand tree is the parsed by the various get_* routines which look
54 through the stmt tree for the occurrence of operands which may be of
55 interest, and calls are made to the append_* routines whenever one is
56 found. There are 4 of these routines, each representing one of the
57 4 types of operands. Defs, Uses, Virtual Uses, and Virtual May Defs.
58
59 The append_* routines check for duplication, and simply keep a list of
60 unique objects for each operand type in the build_* extendable vectors.
61
62 Once the stmt tree is completely parsed, the finalize_ssa_operands()
63 routine is called, which proceeds to perform the finalization routine
64 on each of the 4 operand vectors which have been built up.
65
66 If the stmt had a previous operand cache, the finalization routines
67 attempt to match up the new operands with the old ones. If it's a perfect
68 match, the old vector is simply reused. If it isn't a perfect match, then
69 a new vector is created and the new operands are placed there. For
70 virtual operands, if the previous cache had SSA_NAME version of a
71 variable, and that same variable occurs in the same operands cache, then
72 the new cache vector will also get the same SSA_NAME.
73
74 i.e., if a stmt had a VUSE of 'a_5', and 'a' occurs in the new
75 operand vector for VUSE, then the new vector will also be modified
76 such that it contains 'a_5' rather than 'a'. */
77
78 /* Structure storing statistics on how many call clobbers we have, and
79 how many where avoided. */
80
81 static struct
82 {
83 /* Number of call-clobbered ops we attempt to add to calls in
84 add_call_clobbered_mem_symbols. */
85 unsigned int clobbered_vars;
86
87 /* Number of write-clobbers (VDEFs) avoided by using
88 not_written information. */
89 unsigned int static_write_clobbers_avoided;
90
91 /* Number of reads (VUSEs) avoided by using not_read information. */
92 unsigned int static_read_clobbers_avoided;
93
94 /* Number of write-clobbers avoided because the variable can't escape to
95 this call. */
96 unsigned int unescapable_clobbers_avoided;
97
98 /* Number of read-only uses we attempt to add to calls in
99 add_call_read_mem_symbols. */
100 unsigned int readonly_clobbers;
101
102 /* Number of read-only uses we avoid using not_read information. */
103 unsigned int static_readonly_clobbers_avoided;
104 } clobber_stats;
105
106
107 /* Flags to describe operand properties in helpers. */
108
109 /* By default, operands are loaded. */
110 #define opf_use 0
111
112 /* Operand is the target of an assignment expression or a
113 call-clobbered variable. */
114 #define opf_def (1 << 0)
115
116 /* No virtual operands should be created in the expression. This is used
117 when traversing ADDR_EXPR nodes which have different semantics than
118 other expressions. Inside an ADDR_EXPR node, the only operands that we
119 need to consider are indices into arrays. For instance, &a.b[i] should
120 generate a USE of 'i' but it should not generate a VUSE for 'a' nor a
121 VUSE for 'b'. */
122 #define opf_no_vops (1 << 1)
123
124 /* Operand is an implicit reference. This is used to distinguish
125 explicit assignments in the form of MODIFY_EXPR from
126 clobbering sites like function calls or ASM_EXPRs. */
127 #define opf_implicit (1 << 2)
128
129 /* Array for building all the def operands. */
130 static VEC(tree,heap) *build_defs;
131
132 /* Array for building all the use operands. */
133 static VEC(tree,heap) *build_uses;
134
135 /* The built VDEF operand. */
136 static tree build_vdef;
137
138 /* The built VUSE operand. */
139 static tree build_vuse;
140
141 /* Bitmap obstack for our datastructures that needs to survive across
142 compilations of multiple functions. */
143 static bitmap_obstack operands_bitmap_obstack;
144
145 static void get_expr_operands (gimple, tree *, int);
146
147 /* Number of functions with initialized ssa_operands. */
148 static int n_initialized = 0;
149
150 /* Stack of statements to change. Every call to
151 push_stmt_changes pushes the stmt onto the stack. Calls to
152 pop_stmt_changes pop a stmt off of the stack and compute the set
153 of changes for the popped statement. */
154 static VEC(gimple_p,heap) *scb_stack;
155
156 /* Return the DECL_UID of the base variable of T. */
157
158 static inline unsigned
159 get_name_decl (const_tree t)
160 {
161 if (TREE_CODE (t) != SSA_NAME)
162 return DECL_UID (t);
163 else
164 return DECL_UID (SSA_NAME_VAR (t));
165 }
166
167
168 /* Return true if the SSA operands cache is active. */
169
170 bool
171 ssa_operands_active (void)
172 {
173 /* This function may be invoked from contexts where CFUN is NULL
174 (IPA passes), return false for now. FIXME: operands may be
175 active in each individual function, maybe this function should
176 take CFUN as a parameter. */
177 if (cfun == NULL)
178 return false;
179
180 return cfun->gimple_df && gimple_ssa_operands (cfun)->ops_active;
181 }
182
183
184 /* Create the VOP variable, an artificial global variable to act as a
185 representative of all of the virtual operands FUD chain. */
186
187 static void
188 create_vop_var (void)
189 {
190 tree global_var;
191
192 gcc_assert (cfun->gimple_df->vop == NULL_TREE);
193
194 global_var = build_decl (VAR_DECL, get_identifier (".MEM"),
195 void_type_node);
196 DECL_ARTIFICIAL (global_var) = 1;
197 TREE_READONLY (global_var) = 0;
198 DECL_EXTERNAL (global_var) = 1;
199 TREE_STATIC (global_var) = 1;
200 TREE_USED (global_var) = 1;
201 DECL_CONTEXT (global_var) = NULL_TREE;
202 TREE_THIS_VOLATILE (global_var) = 0;
203 TREE_ADDRESSABLE (global_var) = 0;
204
205 create_var_ann (global_var);
206 add_referenced_var (global_var);
207 cfun->gimple_df->vop = global_var;
208 }
209
210 /* These are the sizes of the operand memory buffer in bytes which gets
211 allocated each time more operands space is required. The final value is
212 the amount that is allocated every time after that.
213 In 1k we can fit 25 use operands (or 63 def operands) on a host with
214 8 byte pointers, that would be 10 statements each with 1 def and 2
215 uses. */
216
217 #define OP_SIZE_INIT 0
218 #define OP_SIZE_1 (1024 - sizeof (void *))
219 #define OP_SIZE_2 (1024 * 4 - sizeof (void *))
220 #define OP_SIZE_3 (1024 * 16 - sizeof (void *))
221
222 /* Initialize the operand cache routines. */
223
224 void
225 init_ssa_operands (void)
226 {
227 if (!n_initialized++)
228 {
229 build_defs = VEC_alloc (tree, heap, 5);
230 build_uses = VEC_alloc (tree, heap, 10);
231 build_vuse = NULL_TREE;
232 build_vdef = NULL_TREE;
233 bitmap_obstack_initialize (&operands_bitmap_obstack);
234 scb_stack = VEC_alloc (gimple_p, heap, 20);
235 }
236
237 gcc_assert (gimple_ssa_operands (cfun)->operand_memory == NULL);
238 gimple_ssa_operands (cfun)->operand_memory_index
239 = gimple_ssa_operands (cfun)->ssa_operand_mem_size;
240 gimple_ssa_operands (cfun)->ops_active = true;
241 memset (&clobber_stats, 0, sizeof (clobber_stats));
242 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_INIT;
243 create_vop_var ();
244 }
245
246
247 /* Dispose of anything required by the operand routines. */
248
249 void
250 fini_ssa_operands (void)
251 {
252 struct ssa_operand_memory_d *ptr;
253
254 if (!--n_initialized)
255 {
256 VEC_free (tree, heap, build_defs);
257 VEC_free (tree, heap, build_uses);
258 build_vdef = NULL_TREE;
259 build_vuse = NULL_TREE;
260
261 /* The change buffer stack had better be empty. */
262 gcc_assert (VEC_length (gimple_p, scb_stack) == 0);
263 VEC_free (gimple_p, heap, scb_stack);
264 scb_stack = NULL;
265 }
266
267 gimple_ssa_operands (cfun)->free_defs = NULL;
268 gimple_ssa_operands (cfun)->free_uses = NULL;
269
270 while ((ptr = gimple_ssa_operands (cfun)->operand_memory) != NULL)
271 {
272 gimple_ssa_operands (cfun)->operand_memory
273 = gimple_ssa_operands (cfun)->operand_memory->next;
274 ggc_free (ptr);
275 }
276
277 gimple_ssa_operands (cfun)->ops_active = false;
278
279 if (!n_initialized)
280 bitmap_obstack_release (&operands_bitmap_obstack);
281
282 cfun->gimple_df->vop = NULL_TREE;
283
284 if (dump_file && (dump_flags & TDF_STATS))
285 {
286 fprintf (dump_file, "Original clobbered vars: %d\n",
287 clobber_stats.clobbered_vars);
288 fprintf (dump_file, "Static write clobbers avoided: %d\n",
289 clobber_stats.static_write_clobbers_avoided);
290 fprintf (dump_file, "Static read clobbers avoided: %d\n",
291 clobber_stats.static_read_clobbers_avoided);
292 fprintf (dump_file, "Unescapable clobbers avoided: %d\n",
293 clobber_stats.unescapable_clobbers_avoided);
294 fprintf (dump_file, "Original read-only clobbers: %d\n",
295 clobber_stats.readonly_clobbers);
296 fprintf (dump_file, "Static read-only clobbers avoided: %d\n",
297 clobber_stats.static_readonly_clobbers_avoided);
298 }
299 }
300
301
302 /* Return memory for an operand of size SIZE. */
303
304 static inline void *
305 ssa_operand_alloc (unsigned size)
306 {
307 char *ptr;
308
309 gcc_assert (size == sizeof (struct use_optype_d)
310 || size == sizeof (struct def_optype_d));
311
312 if (gimple_ssa_operands (cfun)->operand_memory_index + size
313 >= gimple_ssa_operands (cfun)->ssa_operand_mem_size)
314 {
315 struct ssa_operand_memory_d *ptr;
316
317 switch (gimple_ssa_operands (cfun)->ssa_operand_mem_size)
318 {
319 case OP_SIZE_INIT:
320 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_1;
321 break;
322 case OP_SIZE_1:
323 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_2;
324 break;
325 case OP_SIZE_2:
326 case OP_SIZE_3:
327 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_3;
328 break;
329 default:
330 gcc_unreachable ();
331 }
332
333 ptr = (struct ssa_operand_memory_d *)
334 ggc_alloc (sizeof (void *)
335 + gimple_ssa_operands (cfun)->ssa_operand_mem_size);
336 ptr->next = gimple_ssa_operands (cfun)->operand_memory;
337 gimple_ssa_operands (cfun)->operand_memory = ptr;
338 gimple_ssa_operands (cfun)->operand_memory_index = 0;
339 }
340
341 ptr = &(gimple_ssa_operands (cfun)->operand_memory
342 ->mem[gimple_ssa_operands (cfun)->operand_memory_index]);
343 gimple_ssa_operands (cfun)->operand_memory_index += size;
344 return ptr;
345 }
346
347
348 /* Allocate a DEF operand. */
349
350 static inline struct def_optype_d *
351 alloc_def (void)
352 {
353 struct def_optype_d *ret;
354 if (gimple_ssa_operands (cfun)->free_defs)
355 {
356 ret = gimple_ssa_operands (cfun)->free_defs;
357 gimple_ssa_operands (cfun)->free_defs
358 = gimple_ssa_operands (cfun)->free_defs->next;
359 }
360 else
361 ret = (struct def_optype_d *)
362 ssa_operand_alloc (sizeof (struct def_optype_d));
363 return ret;
364 }
365
366
367 /* Allocate a USE operand. */
368
369 static inline struct use_optype_d *
370 alloc_use (void)
371 {
372 struct use_optype_d *ret;
373 if (gimple_ssa_operands (cfun)->free_uses)
374 {
375 ret = gimple_ssa_operands (cfun)->free_uses;
376 gimple_ssa_operands (cfun)->free_uses
377 = gimple_ssa_operands (cfun)->free_uses->next;
378 }
379 else
380 ret = (struct use_optype_d *)
381 ssa_operand_alloc (sizeof (struct use_optype_d));
382 return ret;
383 }
384
385
386 /* Adds OP to the list of defs after LAST. */
387
388 static inline def_optype_p
389 add_def_op (tree *op, def_optype_p last)
390 {
391 def_optype_p new_def;
392
393 new_def = alloc_def ();
394 DEF_OP_PTR (new_def) = op;
395 last->next = new_def;
396 new_def->next = NULL;
397 return new_def;
398 }
399
400
401 /* Adds OP to the list of uses of statement STMT after LAST. */
402
403 static inline use_optype_p
404 add_use_op (gimple stmt, tree *op, use_optype_p last)
405 {
406 use_optype_p new_use;
407
408 new_use = alloc_use ();
409 USE_OP_PTR (new_use)->use = op;
410 link_imm_use_stmt (USE_OP_PTR (new_use), *op, stmt);
411 last->next = new_use;
412 new_use->next = NULL;
413 return new_use;
414 }
415
416
417
418 /* Takes elements from build_defs and turns them into def operands of STMT.
419 TODO -- Make build_defs VEC of tree *. */
420
421 static inline void
422 finalize_ssa_defs (gimple stmt)
423 {
424 unsigned new_i;
425 struct def_optype_d new_list;
426 def_optype_p old_ops, last;
427 unsigned int num = VEC_length (tree, build_defs);
428
429 /* There should only be a single real definition per assignment. */
430 gcc_assert ((stmt && gimple_code (stmt) != GIMPLE_ASSIGN) || num <= 1);
431
432 /* Pre-pend the vdef we may have built. */
433 if (build_vdef != NULL_TREE)
434 {
435 tree oldvdef = gimple_vdef (stmt);
436 if (oldvdef
437 && TREE_CODE (oldvdef) == SSA_NAME)
438 oldvdef = SSA_NAME_VAR (oldvdef);
439 if (oldvdef != build_vdef)
440 gimple_set_vdef (stmt, build_vdef);
441 VEC_safe_insert (tree, heap, build_defs, 0, (tree)gimple_vdef_ptr (stmt));
442 ++num;
443 }
444
445 new_list.next = NULL;
446 last = &new_list;
447
448 old_ops = gimple_def_ops (stmt);
449
450 new_i = 0;
451
452 /* Clear and unlink a no longer necessary VDEF. */
453 if (build_vdef == NULL_TREE
454 && gimple_vdef (stmt) != NULL_TREE)
455 {
456 if (TREE_CODE (gimple_vdef (stmt)) == SSA_NAME)
457 {
458 unlink_stmt_vdef (stmt);
459 release_ssa_name (gimple_vdef (stmt));
460 }
461 gimple_set_vdef (stmt, NULL_TREE);
462 }
463
464 /* If we have a non-SSA_NAME VDEF, mark it for renaming. */
465 if (gimple_vdef (stmt)
466 && TREE_CODE (gimple_vdef (stmt)) != SSA_NAME)
467 mark_sym_for_renaming (gimple_vdef (stmt));
468
469 /* Check for the common case of 1 def that hasn't changed. */
470 if (old_ops && old_ops->next == NULL && num == 1
471 && (tree *) VEC_index (tree, build_defs, 0) == DEF_OP_PTR (old_ops))
472 return;
473
474 /* If there is anything in the old list, free it. */
475 if (old_ops)
476 {
477 old_ops->next = gimple_ssa_operands (cfun)->free_defs;
478 gimple_ssa_operands (cfun)->free_defs = old_ops;
479 }
480
481 /* If there is anything remaining in the build_defs list, simply emit it. */
482 for ( ; new_i < num; new_i++)
483 last = add_def_op ((tree *) VEC_index (tree, build_defs, new_i), last);
484
485 /* Now set the stmt's operands. */
486 gimple_set_def_ops (stmt, new_list.next);
487 }
488
489
490 /* Takes elements from build_uses and turns them into use operands of STMT.
491 TODO -- Make build_uses VEC of tree *. */
492
493 static inline void
494 finalize_ssa_uses (gimple stmt)
495 {
496 unsigned new_i;
497 struct use_optype_d new_list;
498 use_optype_p old_ops, ptr, last;
499
500 /* Pre-pend the VUSE we may have built. */
501 if (build_vuse != NULL_TREE)
502 {
503 tree oldvuse = gimple_vuse (stmt);
504 if (oldvuse
505 && TREE_CODE (oldvuse) == SSA_NAME)
506 oldvuse = SSA_NAME_VAR (oldvuse);
507 if (oldvuse != (build_vuse != NULL_TREE
508 ? build_vuse : build_vdef))
509 gimple_set_vuse (stmt, NULL_TREE);
510 VEC_safe_insert (tree, heap, build_uses, 0, (tree)gimple_vuse_ptr (stmt));
511 }
512
513 new_list.next = NULL;
514 last = &new_list;
515
516 old_ops = gimple_use_ops (stmt);
517
518 /* Clear a no longer necessary VUSE. */
519 if (build_vuse == NULL_TREE
520 && gimple_vuse (stmt) != NULL_TREE)
521 gimple_set_vuse (stmt, NULL_TREE);
522
523 /* If there is anything in the old list, free it. */
524 if (old_ops)
525 {
526 for (ptr = old_ops; ptr; ptr = ptr->next)
527 delink_imm_use (USE_OP_PTR (ptr));
528 old_ops->next = gimple_ssa_operands (cfun)->free_uses;
529 gimple_ssa_operands (cfun)->free_uses = old_ops;
530 }
531
532 /* If we added a VUSE, make sure to set the operand if it is not already
533 present and mark it for renaming. */
534 if (build_vuse != NULL_TREE
535 && gimple_vuse (stmt) == NULL_TREE)
536 {
537 gimple_set_vuse (stmt, gimple_vop (cfun));
538 mark_sym_for_renaming (gimple_vop (cfun));
539 }
540
541 /* Now create nodes for all the new nodes. */
542 for (new_i = 0; new_i < VEC_length (tree, build_uses); new_i++)
543 last = add_use_op (stmt,
544 (tree *) VEC_index (tree, build_uses, new_i),
545 last);
546
547 /* Now set the stmt's operands. */
548 gimple_set_use_ops (stmt, new_list.next);
549 }
550
551
552 /* Clear the in_list bits and empty the build array for VDEFs and
553 VUSEs. */
554
555 static inline void
556 cleanup_build_arrays (void)
557 {
558 build_vdef = NULL_TREE;
559 build_vuse = NULL_TREE;
560 VEC_truncate (tree, build_defs, 0);
561 VEC_truncate (tree, build_uses, 0);
562 }
563
564
565 /* Finalize all the build vectors, fill the new ones into INFO. */
566
567 static inline void
568 finalize_ssa_stmt_operands (gimple stmt)
569 {
570 finalize_ssa_defs (stmt);
571 finalize_ssa_uses (stmt);
572 cleanup_build_arrays ();
573 }
574
575
576 /* Start the process of building up operands vectors in INFO. */
577
578 static inline void
579 start_ssa_stmt_operands (void)
580 {
581 gcc_assert (VEC_length (tree, build_defs) == 0);
582 gcc_assert (VEC_length (tree, build_uses) == 0);
583 gcc_assert (build_vuse == NULL_TREE);
584 gcc_assert (build_vdef == NULL_TREE);
585 }
586
587
588 /* Add DEF_P to the list of pointers to operands. */
589
590 static inline void
591 append_def (tree *def_p)
592 {
593 VEC_safe_push (tree, heap, build_defs, (tree) def_p);
594 }
595
596
597 /* Add USE_P to the list of pointers to operands. */
598
599 static inline void
600 append_use (tree *use_p)
601 {
602 VEC_safe_push (tree, heap, build_uses, (tree) use_p);
603 }
604
605
606 /* Add VAR to the set of variables that require a VDEF operator. */
607
608 static inline void
609 append_vdef (tree var)
610 {
611 if (!optimize)
612 return;
613
614 gcc_assert ((build_vdef == NULL_TREE
615 || build_vdef == var)
616 && (build_vuse == NULL_TREE
617 || build_vuse == var));
618
619 build_vdef = var;
620 build_vuse = var;
621 }
622
623
624 /* Add VAR to the set of variables that require a VUSE operator. */
625
626 static inline void
627 append_vuse (tree var)
628 {
629 if (!optimize)
630 return;
631
632 gcc_assert (build_vuse == NULL_TREE
633 || build_vuse == var);
634
635 build_vuse = var;
636 }
637
638 /* Add virtual operands for STMT. FLAGS is as in get_expr_operands. */
639
640 static void
641 add_virtual_operand (gimple stmt ATTRIBUTE_UNUSED, int flags)
642 {
643 /* Add virtual operands to the stmt, unless the caller has specifically
644 requested not to do that (used when adding operands inside an
645 ADDR_EXPR expression). */
646 if (flags & opf_no_vops)
647 return;
648
649 if (flags & opf_def)
650 append_vdef (gimple_vop (cfun));
651 else
652 append_vuse (gimple_vop (cfun));
653 }
654
655
656 /* Add *VAR_P to the appropriate operand array for statement STMT.
657 FLAGS is as in get_expr_operands. If *VAR_P is a GIMPLE register,
658 it will be added to the statement's real operands, otherwise it is
659 added to virtual operands. */
660
661 static void
662 add_stmt_operand (tree *var_p, gimple stmt, int flags)
663 {
664 tree var, sym;
665 var_ann_t v_ann;
666
667 gcc_assert (SSA_VAR_P (*var_p));
668
669 var = *var_p;
670 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
671 v_ann = var_ann (sym);
672
673 /* Mark statements with volatile operands. */
674 if (TREE_THIS_VOLATILE (sym))
675 gimple_set_has_volatile_ops (stmt, true);
676
677 if (is_gimple_reg (sym))
678 {
679 /* The variable is a GIMPLE register. Add it to real operands. */
680 if (flags & opf_def)
681 append_def (var_p);
682 else
683 append_use (var_p);
684 }
685 else
686 add_virtual_operand (stmt, flags);
687 }
688
689 /* Mark the base address of REF as having its address taken.
690 REF may be a single variable whose address has been taken or any
691 other valid GIMPLE memory reference (structure reference, array,
692 etc). */
693
694 static void
695 mark_address_taken (tree ref)
696 {
697 tree var;
698
699 /* Note that it is *NOT OKAY* to use the target of a COMPONENT_REF
700 as the only thing we take the address of. If VAR is a structure,
701 taking the address of a field means that the whole structure may
702 be referenced using pointer arithmetic. See PR 21407 and the
703 ensuing mailing list discussion. */
704 var = get_base_address (ref);
705 if (var && DECL_P (var))
706 TREE_ADDRESSABLE (var) = 1;
707 }
708
709
710 /* A subroutine of get_expr_operands to handle INDIRECT_REF,
711 ALIGN_INDIRECT_REF and MISALIGNED_INDIRECT_REF.
712
713 STMT is the statement being processed, EXPR is the INDIRECT_REF
714 that got us here.
715
716 FLAGS is as in get_expr_operands.
717
718 RECURSE_ON_BASE should be set to true if we want to continue
719 calling get_expr_operands on the base pointer, and false if
720 something else will do it for us. */
721
722 static void
723 get_indirect_ref_operands (gimple stmt, tree expr, int flags,
724 bool recurse_on_base)
725 {
726 tree *pptr = &TREE_OPERAND (expr, 0);
727
728 if (TREE_THIS_VOLATILE (expr))
729 gimple_set_has_volatile_ops (stmt, true);
730
731 /* Add the VOP. */
732 add_virtual_operand (stmt, flags);
733
734 /* If requested, add a USE operand for the base pointer. */
735 if (recurse_on_base)
736 get_expr_operands (stmt, pptr, opf_use);
737 }
738
739
740 /* A subroutine of get_expr_operands to handle TARGET_MEM_REF. */
741
742 static void
743 get_tmr_operands (gimple stmt, tree expr, int flags)
744 {
745 /* First record the real operands. */
746 get_expr_operands (stmt, &TMR_BASE (expr), opf_use);
747 get_expr_operands (stmt, &TMR_INDEX (expr), opf_use);
748
749 if (TMR_SYMBOL (expr))
750 mark_address_taken (TMR_SYMBOL (expr));
751
752 add_virtual_operand (stmt, flags);
753 }
754
755
756 /* If STMT is a call that may clobber globals and other symbols that
757 escape, add them to the VDEF/VUSE lists for it. */
758
759 static void
760 maybe_add_call_vops (gimple stmt)
761 {
762 int call_flags = gimple_call_flags (stmt);
763
764 /* If aliases have been computed already, add VDEF or VUSE
765 operands for all the symbols that have been found to be
766 call-clobbered. */
767 if (!(call_flags & ECF_NOVOPS))
768 {
769 /* A 'pure' or a 'const' function never call-clobbers anything.
770 A 'noreturn' function might, but since we don't return anyway
771 there is no point in recording that. */
772 if (!(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
773 add_virtual_operand (stmt, opf_def);
774 else if (!(call_flags & ECF_CONST))
775 add_virtual_operand (stmt, opf_use);
776 }
777 }
778
779
780 /* Scan operands in the ASM_EXPR stmt referred to in INFO. */
781
782 static void
783 get_asm_expr_operands (gimple stmt)
784 {
785 size_t i, noutputs;
786 const char **oconstraints;
787 const char *constraint;
788 bool allows_mem, allows_reg, is_inout;
789
790 noutputs = gimple_asm_noutputs (stmt);
791 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
792
793 /* Gather all output operands. */
794 for (i = 0; i < gimple_asm_noutputs (stmt); i++)
795 {
796 tree link = gimple_asm_output_op (stmt, i);
797 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
798 oconstraints[i] = constraint;
799 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
800 &allows_reg, &is_inout);
801
802 /* This should have been split in gimplify_asm_expr. */
803 gcc_assert (!allows_reg || !is_inout);
804
805 /* Memory operands are addressable. Note that STMT needs the
806 address of this operand. */
807 if (!allows_reg && allows_mem)
808 {
809 tree t = get_base_address (TREE_VALUE (link));
810 if (t && DECL_P (t))
811 mark_address_taken (t);
812 }
813
814 get_expr_operands (stmt, &TREE_VALUE (link), opf_def);
815 }
816
817 /* Gather all input operands. */
818 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
819 {
820 tree link = gimple_asm_input_op (stmt, i);
821 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
822 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
823 &allows_mem, &allows_reg);
824
825 /* Memory operands are addressable. Note that STMT needs the
826 address of this operand. */
827 if (!allows_reg && allows_mem)
828 {
829 tree t = get_base_address (TREE_VALUE (link));
830 if (t && DECL_P (t))
831 mark_address_taken (t);
832 }
833
834 get_expr_operands (stmt, &TREE_VALUE (link), 0);
835 }
836
837 /* Clobber all memory and addressable symbols for asm ("" : : : "memory"); */
838 for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
839 {
840 tree link = gimple_asm_clobber_op (stmt, i);
841 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0)
842 {
843 add_virtual_operand (stmt, opf_def);
844 break;
845 }
846 }
847 }
848
849
850 /* Recursively scan the expression pointed to by EXPR_P in statement
851 STMT. FLAGS is one of the OPF_* constants modifying how to
852 interpret the operands found. */
853
854 static void
855 get_expr_operands (gimple stmt, tree *expr_p, int flags)
856 {
857 enum tree_code code;
858 enum tree_code_class codeclass;
859 tree expr = *expr_p;
860
861 if (expr == NULL)
862 return;
863
864 code = TREE_CODE (expr);
865 codeclass = TREE_CODE_CLASS (code);
866
867 switch (code)
868 {
869 case ADDR_EXPR:
870 /* Taking the address of a variable does not represent a
871 reference to it, but the fact that the statement takes its
872 address will be of interest to some passes (e.g. alias
873 resolution). */
874 mark_address_taken (TREE_OPERAND (expr, 0));
875
876 /* If the address is invariant, there may be no interesting
877 variable references inside. */
878 if (is_gimple_min_invariant (expr))
879 return;
880
881 /* Otherwise, there may be variables referenced inside but there
882 should be no VUSEs created, since the referenced objects are
883 not really accessed. The only operands that we should find
884 here are ARRAY_REF indices which will always be real operands
885 (GIMPLE does not allow non-registers as array indices). */
886 flags |= opf_no_vops;
887 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
888 return;
889
890 case SSA_NAME:
891 add_stmt_operand (expr_p, stmt, flags);
892 return;
893
894 case VAR_DECL:
895 case PARM_DECL:
896 case RESULT_DECL:
897 add_stmt_operand (expr_p, stmt, flags);
898 return;
899
900 case MISALIGNED_INDIRECT_REF:
901 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
902 /* fall through */
903
904 case ALIGN_INDIRECT_REF:
905 case INDIRECT_REF:
906 get_indirect_ref_operands (stmt, expr, flags, true);
907 return;
908
909 case TARGET_MEM_REF:
910 get_tmr_operands (stmt, expr, flags);
911 return;
912
913 case ARRAY_REF:
914 case ARRAY_RANGE_REF:
915 case COMPONENT_REF:
916 case REALPART_EXPR:
917 case IMAGPART_EXPR:
918 {
919 tree ref;
920 HOST_WIDE_INT offset, size, maxsize;
921
922 if (TREE_THIS_VOLATILE (expr))
923 gimple_set_has_volatile_ops (stmt, true);
924
925 ref = get_ref_base_and_extent (expr, &offset, &size, &maxsize);
926 if (TREE_CODE (ref) == INDIRECT_REF)
927 {
928 get_indirect_ref_operands (stmt, ref, flags, false);
929 flags |= opf_no_vops;
930 }
931
932 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
933
934 if (code == COMPONENT_REF)
935 {
936 if (TREE_THIS_VOLATILE (TREE_OPERAND (expr, 1)))
937 gimple_set_has_volatile_ops (stmt, true);
938 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
939 }
940 else if (code == ARRAY_REF || code == ARRAY_RANGE_REF)
941 {
942 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
943 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
944 get_expr_operands (stmt, &TREE_OPERAND (expr, 3), opf_use);
945 }
946
947 return;
948 }
949
950 case WITH_SIZE_EXPR:
951 /* WITH_SIZE_EXPR is a pass-through reference to its first argument,
952 and an rvalue reference to its second argument. */
953 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
954 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
955 return;
956
957 case COND_EXPR:
958 case VEC_COND_EXPR:
959 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_use);
960 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
961 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
962 return;
963
964 case CONSTRUCTOR:
965 {
966 /* General aggregate CONSTRUCTORs have been decomposed, but they
967 are still in use as the COMPLEX_EXPR equivalent for vectors. */
968 constructor_elt *ce;
969 unsigned HOST_WIDE_INT idx;
970
971 for (idx = 0;
972 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (expr), idx, ce);
973 idx++)
974 get_expr_operands (stmt, &ce->value, opf_use);
975
976 return;
977 }
978
979 case BIT_FIELD_REF:
980 if (TREE_THIS_VOLATILE (expr))
981 gimple_set_has_volatile_ops (stmt, true);
982 /* FALLTHRU */
983
984 case TRUTH_NOT_EXPR:
985 case VIEW_CONVERT_EXPR:
986 do_unary:
987 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
988 return;
989
990 case TRUTH_AND_EXPR:
991 case TRUTH_OR_EXPR:
992 case TRUTH_XOR_EXPR:
993 case COMPOUND_EXPR:
994 case OBJ_TYPE_REF:
995 case ASSERT_EXPR:
996 do_binary:
997 {
998 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
999 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
1000 return;
1001 }
1002
1003 case DOT_PROD_EXPR:
1004 case REALIGN_LOAD_EXPR:
1005 {
1006 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
1007 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
1008 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), flags);
1009 return;
1010 }
1011
1012 case CHANGE_DYNAMIC_TYPE_EXPR:
1013 gcc_unreachable ();
1014
1015 case FUNCTION_DECL:
1016 case LABEL_DECL:
1017 case CONST_DECL:
1018 case CASE_LABEL_EXPR:
1019 case FILTER_EXPR:
1020 case EXC_PTR_EXPR:
1021 /* Expressions that make no memory references. */
1022 return;
1023
1024 default:
1025 if (codeclass == tcc_unary)
1026 goto do_unary;
1027 if (codeclass == tcc_binary || codeclass == tcc_comparison)
1028 goto do_binary;
1029 if (codeclass == tcc_constant || codeclass == tcc_type)
1030 return;
1031 }
1032
1033 /* If we get here, something has gone wrong. */
1034 #ifdef ENABLE_CHECKING
1035 fprintf (stderr, "unhandled expression in get_expr_operands():\n");
1036 debug_tree (expr);
1037 fputs ("\n", stderr);
1038 #endif
1039 gcc_unreachable ();
1040 }
1041
1042
1043 /* Parse STMT looking for operands. When finished, the various
1044 build_* operand vectors will have potential operands in them. */
1045
1046 static void
1047 parse_ssa_operands (gimple stmt)
1048 {
1049 enum gimple_code code = gimple_code (stmt);
1050
1051 if (code == GIMPLE_ASM)
1052 get_asm_expr_operands (stmt);
1053 else
1054 {
1055 size_t i, start = 0;
1056
1057 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1058 {
1059 get_expr_operands (stmt, gimple_op_ptr (stmt, 0), opf_def);
1060 start = 1;
1061 }
1062
1063 for (i = start; i < gimple_num_ops (stmt); i++)
1064 get_expr_operands (stmt, gimple_op_ptr (stmt, i), opf_use);
1065
1066 /* Add call-clobbered operands, if needed. */
1067 if (code == GIMPLE_CALL)
1068 maybe_add_call_vops (stmt);
1069 }
1070 }
1071
1072
1073 /* Create an operands cache for STMT. */
1074
1075 static void
1076 build_ssa_operands (gimple stmt)
1077 {
1078 /* Initially assume that the statement has no volatile operands. */
1079 gimple_set_has_volatile_ops (stmt, false);
1080
1081 start_ssa_stmt_operands ();
1082 parse_ssa_operands (stmt);
1083 finalize_ssa_stmt_operands (stmt);
1084 }
1085
1086
1087 /* Releases the operands of STMT back to their freelists, and clears
1088 the stmt operand lists. */
1089
1090 void
1091 free_stmt_operands (gimple stmt)
1092 {
1093 def_optype_p defs = gimple_def_ops (stmt), last_def;
1094 use_optype_p uses = gimple_use_ops (stmt), last_use;
1095
1096 if (defs)
1097 {
1098 for (last_def = defs; last_def->next; last_def = last_def->next)
1099 continue;
1100 last_def->next = gimple_ssa_operands (cfun)->free_defs;
1101 gimple_ssa_operands (cfun)->free_defs = defs;
1102 gimple_set_def_ops (stmt, NULL);
1103 }
1104
1105 if (uses)
1106 {
1107 for (last_use = uses; last_use->next; last_use = last_use->next)
1108 delink_imm_use (USE_OP_PTR (last_use));
1109 delink_imm_use (USE_OP_PTR (last_use));
1110 last_use->next = gimple_ssa_operands (cfun)->free_uses;
1111 gimple_ssa_operands (cfun)->free_uses = uses;
1112 gimple_set_use_ops (stmt, NULL);
1113 }
1114
1115 if (gimple_has_mem_ops (stmt))
1116 {
1117 gimple_set_vuse (stmt, NULL_TREE);
1118 gimple_set_vdef (stmt, NULL_TREE);
1119 }
1120 }
1121
1122
1123 /* Get the operands of statement STMT. */
1124
1125 void
1126 update_stmt_operands (gimple stmt)
1127 {
1128 /* If update_stmt_operands is called before SSA is initialized, do
1129 nothing. */
1130 if (!ssa_operands_active ())
1131 return;
1132
1133 timevar_push (TV_TREE_OPS);
1134
1135 gcc_assert (gimple_modified_p (stmt));
1136 build_ssa_operands (stmt);
1137 gimple_set_modified (stmt, false);
1138
1139 timevar_pop (TV_TREE_OPS);
1140 }
1141
1142
1143 /* Swap operands EXP0 and EXP1 in statement STMT. No attempt is done
1144 to test the validity of the swap operation. */
1145
1146 void
1147 swap_tree_operands (gimple stmt, tree *exp0, tree *exp1)
1148 {
1149 tree op0, op1;
1150 op0 = *exp0;
1151 op1 = *exp1;
1152
1153 /* If the operand cache is active, attempt to preserve the relative
1154 positions of these two operands in their respective immediate use
1155 lists. */
1156 if (ssa_operands_active () && op0 != op1)
1157 {
1158 use_optype_p use0, use1, ptr;
1159 use0 = use1 = NULL;
1160
1161 /* Find the 2 operands in the cache, if they are there. */
1162 for (ptr = gimple_use_ops (stmt); ptr; ptr = ptr->next)
1163 if (USE_OP_PTR (ptr)->use == exp0)
1164 {
1165 use0 = ptr;
1166 break;
1167 }
1168
1169 for (ptr = gimple_use_ops (stmt); ptr; ptr = ptr->next)
1170 if (USE_OP_PTR (ptr)->use == exp1)
1171 {
1172 use1 = ptr;
1173 break;
1174 }
1175
1176 /* If both uses don't have operand entries, there isn't much we can do
1177 at this point. Presumably we don't need to worry about it. */
1178 if (use0 && use1)
1179 {
1180 tree *tmp = USE_OP_PTR (use1)->use;
1181 USE_OP_PTR (use1)->use = USE_OP_PTR (use0)->use;
1182 USE_OP_PTR (use0)->use = tmp;
1183 }
1184 }
1185
1186 /* Now swap the data. */
1187 *exp0 = op1;
1188 *exp1 = op0;
1189 }
1190
1191
1192 /* Scan the immediate_use list for VAR making sure its linked properly.
1193 Return TRUE if there is a problem and emit an error message to F. */
1194
1195 bool
1196 verify_imm_links (FILE *f, tree var)
1197 {
1198 use_operand_p ptr, prev, list;
1199 int count;
1200
1201 gcc_assert (TREE_CODE (var) == SSA_NAME);
1202
1203 list = &(SSA_NAME_IMM_USE_NODE (var));
1204 gcc_assert (list->use == NULL);
1205
1206 if (list->prev == NULL)
1207 {
1208 gcc_assert (list->next == NULL);
1209 return false;
1210 }
1211
1212 prev = list;
1213 count = 0;
1214 for (ptr = list->next; ptr != list; )
1215 {
1216 if (prev != ptr->prev)
1217 goto error;
1218
1219 if (ptr->use == NULL)
1220 goto error; /* 2 roots, or SAFE guard node. */
1221 else if (*(ptr->use) != var)
1222 goto error;
1223
1224 prev = ptr;
1225 ptr = ptr->next;
1226
1227 /* Avoid infinite loops. 50,000,000 uses probably indicates a
1228 problem. */
1229 if (count++ > 50000000)
1230 goto error;
1231 }
1232
1233 /* Verify list in the other direction. */
1234 prev = list;
1235 for (ptr = list->prev; ptr != list; )
1236 {
1237 if (prev != ptr->next)
1238 goto error;
1239 prev = ptr;
1240 ptr = ptr->prev;
1241 if (count-- < 0)
1242 goto error;
1243 }
1244
1245 if (count != 0)
1246 goto error;
1247
1248 return false;
1249
1250 error:
1251 if (ptr->loc.stmt && gimple_modified_p (ptr->loc.stmt))
1252 {
1253 fprintf (f, " STMT MODIFIED. - <%p> ", (void *)ptr->loc.stmt);
1254 print_gimple_stmt (f, ptr->loc.stmt, 0, TDF_SLIM);
1255 }
1256 fprintf (f, " IMM ERROR : (use_p : tree - %p:%p)", (void *)ptr,
1257 (void *)ptr->use);
1258 print_generic_expr (f, USE_FROM_PTR (ptr), TDF_SLIM);
1259 fprintf(f, "\n");
1260 return true;
1261 }
1262
1263
1264 /* Dump all the immediate uses to FILE. */
1265
1266 void
1267 dump_immediate_uses_for (FILE *file, tree var)
1268 {
1269 imm_use_iterator iter;
1270 use_operand_p use_p;
1271
1272 gcc_assert (var && TREE_CODE (var) == SSA_NAME);
1273
1274 print_generic_expr (file, var, TDF_SLIM);
1275 fprintf (file, " : -->");
1276 if (has_zero_uses (var))
1277 fprintf (file, " no uses.\n");
1278 else
1279 if (has_single_use (var))
1280 fprintf (file, " single use.\n");
1281 else
1282 fprintf (file, "%d uses.\n", num_imm_uses (var));
1283
1284 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
1285 {
1286 if (use_p->loc.stmt == NULL && use_p->use == NULL)
1287 fprintf (file, "***end of stmt iterator marker***\n");
1288 else
1289 if (!is_gimple_reg (USE_FROM_PTR (use_p)))
1290 print_gimple_stmt (file, USE_STMT (use_p), 0, TDF_VOPS|TDF_MEMSYMS);
1291 else
1292 print_gimple_stmt (file, USE_STMT (use_p), 0, TDF_SLIM);
1293 }
1294 fprintf(file, "\n");
1295 }
1296
1297
1298 /* Dump all the immediate uses to FILE. */
1299
1300 void
1301 dump_immediate_uses (FILE *file)
1302 {
1303 tree var;
1304 unsigned int x;
1305
1306 fprintf (file, "Immediate_uses: \n\n");
1307 for (x = 1; x < num_ssa_names; x++)
1308 {
1309 var = ssa_name(x);
1310 if (!var)
1311 continue;
1312 dump_immediate_uses_for (file, var);
1313 }
1314 }
1315
1316
1317 /* Dump def-use edges on stderr. */
1318
1319 void
1320 debug_immediate_uses (void)
1321 {
1322 dump_immediate_uses (stderr);
1323 }
1324
1325
1326 /* Dump def-use edges on stderr. */
1327
1328 void
1329 debug_immediate_uses_for (tree var)
1330 {
1331 dump_immediate_uses_for (stderr, var);
1332 }
1333
1334
1335 /* Push *STMT_P on the SCB_STACK. This function is deprecated, do not
1336 introduce new uses of it. */
1337
1338 void
1339 push_stmt_changes (gimple *stmt_p)
1340 {
1341 gimple stmt = *stmt_p;
1342
1343 /* It makes no sense to keep track of PHI nodes. */
1344 if (gimple_code (stmt) == GIMPLE_PHI)
1345 return;
1346
1347 VEC_safe_push (gimple_p, heap, scb_stack, stmt_p);
1348 }
1349
1350 /* Pop the top stmt from SCB_STACK and act on the differences between
1351 what was recorded by push_stmt_changes and the current state of
1352 the statement. This function is deprecated, do not introduce
1353 new uses of it. */
1354
1355 void
1356 pop_stmt_changes (gimple *stmt_p)
1357 {
1358 gimple *stmt2_p, stmt = *stmt_p;
1359
1360 /* It makes no sense to keep track of PHI nodes. */
1361 if (gimple_code (stmt) == GIMPLE_PHI)
1362 return;
1363
1364 stmt2_p = VEC_pop (gimple_p, scb_stack);
1365 gcc_assert (stmt_p == stmt2_p);
1366
1367 /* Force an operand re-scan on the statement and mark any newly
1368 exposed variables. This also will mark the virtual operand
1369 for renaming if necessary. */
1370 update_stmt (stmt);
1371 }
1372
1373 /* Discard the topmost stmt from SCB_STACK. This is useful
1374 when the caller realized that it did not actually modified the
1375 statement. It avoids the expensive operand re-scan.
1376 This function is deprecated, do not introduce new uses of it. */
1377
1378 void
1379 discard_stmt_changes (gimple *stmt_p)
1380 {
1381 gimple *stmt2_p, stmt = *stmt_p;
1382
1383 /* It makes no sense to keep track of PHI nodes. */
1384 if (gimple_code (stmt) == GIMPLE_PHI)
1385 return;
1386
1387 stmt2_p = VEC_pop (gimple_p, scb_stack);
1388 gcc_assert (stmt_p == stmt2_p);
1389 }
1390
1391 /* Unlink STMTs virtual definition from the IL by propagating its use. */
1392
1393 void
1394 unlink_stmt_vdef (gimple stmt)
1395 {
1396 use_operand_p use_p;
1397 imm_use_iterator iter;
1398 gimple use_stmt;
1399 tree vdef = gimple_vdef (stmt);
1400
1401 if (!vdef
1402 || TREE_CODE (vdef) != SSA_NAME)
1403 return;
1404
1405 FOR_EACH_IMM_USE_STMT (use_stmt, iter, gimple_vdef (stmt))
1406 {
1407 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1408 SET_USE (use_p, gimple_vuse (stmt));
1409 }
1410
1411 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vdef (stmt)))
1412 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vuse (stmt)) = 1;
1413 }
1414