Remove deprecated DW_FORM_sig8 define.
[official-gcc.git] / gcc / tree-ssa-operands.c
blob7e2600d6e6d005bc63b0fbd13531cb4d4af0afd5
1 /* SSA operands management for trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
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.
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.
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/>. */
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 "tree-pretty-print.h"
29 #include "gimple-pretty-print.h"
30 #include "tree-flow.h"
31 #include "tree-inline.h"
32 #include "tree-pass.h"
33 #include "ggc.h"
34 #include "timevar.h"
35 #include "langhooks.h"
36 #include "ipa-reference.h"
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.
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.
50 The routines in this file are concerned with creating this operand cache
51 from a stmt tree.
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.
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.
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.
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.
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'. */
78 /* Structure storing statistics on how many call clobbers we have, and
79 how many where avoided. */
81 static struct
83 /* Number of call-clobbered ops we attempt to add to calls in
84 add_call_clobbered_mem_symbols. */
85 unsigned int clobbered_vars;
87 /* Number of write-clobbers (VDEFs) avoided by using
88 not_written information. */
89 unsigned int static_write_clobbers_avoided;
91 /* Number of reads (VUSEs) avoided by using not_read information. */
92 unsigned int static_read_clobbers_avoided;
94 /* Number of write-clobbers avoided because the variable can't escape to
95 this call. */
96 unsigned int unescapable_clobbers_avoided;
98 /* Number of read-only uses we attempt to add to calls in
99 add_call_read_mem_symbols. */
100 unsigned int readonly_clobbers;
102 /* Number of read-only uses we avoid using not_read information. */
103 unsigned int static_readonly_clobbers_avoided;
104 } clobber_stats;
107 /* Flags to describe operand properties in helpers. */
109 /* By default, operands are loaded. */
110 #define opf_use 0
112 /* Operand is the target of an assignment expression or a
113 call-clobbered variable. */
114 #define opf_def (1 << 0)
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)
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)
129 /* Operand is in a place where address-taken does not imply addressable. */
130 #define opf_non_addressable (1 << 3)
132 /* Operand is in a place where opf_non_addressable does not apply. */
133 #define opf_not_non_addressable (1 << 4)
135 /* Array for building all the def operands. */
136 static VEC(tree,heap) *build_defs;
138 /* Array for building all the use operands. */
139 static VEC(tree,heap) *build_uses;
141 /* The built VDEF operand. */
142 static tree build_vdef;
144 /* The built VUSE operand. */
145 static tree build_vuse;
147 /* Bitmap obstack for our datastructures that needs to survive across
148 compilations of multiple functions. */
149 static bitmap_obstack operands_bitmap_obstack;
151 static void get_expr_operands (gimple, tree *, int);
153 /* Number of functions with initialized ssa_operands. */
154 static int n_initialized = 0;
156 /* Return the DECL_UID of the base variable of T. */
158 static inline unsigned
159 get_name_decl (const_tree t)
161 if (TREE_CODE (t) != SSA_NAME)
162 return DECL_UID (t);
163 else
164 return DECL_UID (SSA_NAME_VAR (t));
168 /* Return true if the SSA operands cache is active. */
170 bool
171 ssa_operands_active (void)
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;
180 return cfun->gimple_df && gimple_ssa_operands (cfun)->ops_active;
184 /* Create the VOP variable, an artificial global variable to act as a
185 representative of all of the virtual operands FUD chain. */
187 static void
188 create_vop_var (void)
190 tree global_var;
192 gcc_assert (cfun->gimple_df->vop == NULL_TREE);
194 global_var = build_decl (BUILTINS_LOCATION, VAR_DECL,
195 get_identifier (".MEM"),
196 void_type_node);
197 DECL_ARTIFICIAL (global_var) = 1;
198 TREE_READONLY (global_var) = 0;
199 DECL_EXTERNAL (global_var) = 1;
200 TREE_STATIC (global_var) = 1;
201 TREE_USED (global_var) = 1;
202 DECL_CONTEXT (global_var) = NULL_TREE;
203 TREE_THIS_VOLATILE (global_var) = 0;
204 TREE_ADDRESSABLE (global_var) = 0;
206 create_var_ann (global_var);
207 add_referenced_var (global_var);
208 cfun->gimple_df->vop = global_var;
211 /* These are the sizes of the operand memory buffer in bytes which gets
212 allocated each time more operands space is required. The final value is
213 the amount that is allocated every time after that.
214 In 1k we can fit 25 use operands (or 63 def operands) on a host with
215 8 byte pointers, that would be 10 statements each with 1 def and 2
216 uses. */
218 #define OP_SIZE_INIT 0
219 #define OP_SIZE_1 (1024 - sizeof (void *))
220 #define OP_SIZE_2 (1024 * 4 - sizeof (void *))
221 #define OP_SIZE_3 (1024 * 16 - sizeof (void *))
223 /* Initialize the operand cache routines. */
225 void
226 init_ssa_operands (void)
228 if (!n_initialized++)
230 build_defs = VEC_alloc (tree, heap, 5);
231 build_uses = VEC_alloc (tree, heap, 10);
232 build_vuse = NULL_TREE;
233 build_vdef = NULL_TREE;
234 bitmap_obstack_initialize (&operands_bitmap_obstack);
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 ();
247 /* Dispose of anything required by the operand routines. */
249 void
250 fini_ssa_operands (void)
252 struct ssa_operand_memory_d *ptr;
254 if (!--n_initialized)
256 VEC_free (tree, heap, build_defs);
257 VEC_free (tree, heap, build_uses);
258 build_vdef = NULL_TREE;
259 build_vuse = NULL_TREE;
262 gimple_ssa_operands (cfun)->free_defs = NULL;
263 gimple_ssa_operands (cfun)->free_uses = NULL;
265 while ((ptr = gimple_ssa_operands (cfun)->operand_memory) != NULL)
267 gimple_ssa_operands (cfun)->operand_memory
268 = gimple_ssa_operands (cfun)->operand_memory->next;
269 ggc_free (ptr);
272 gimple_ssa_operands (cfun)->ops_active = false;
274 if (!n_initialized)
275 bitmap_obstack_release (&operands_bitmap_obstack);
277 cfun->gimple_df->vop = NULL_TREE;
279 if (dump_file && (dump_flags & TDF_STATS))
281 fprintf (dump_file, "Original clobbered vars: %d\n",
282 clobber_stats.clobbered_vars);
283 fprintf (dump_file, "Static write clobbers avoided: %d\n",
284 clobber_stats.static_write_clobbers_avoided);
285 fprintf (dump_file, "Static read clobbers avoided: %d\n",
286 clobber_stats.static_read_clobbers_avoided);
287 fprintf (dump_file, "Unescapable clobbers avoided: %d\n",
288 clobber_stats.unescapable_clobbers_avoided);
289 fprintf (dump_file, "Original read-only clobbers: %d\n",
290 clobber_stats.readonly_clobbers);
291 fprintf (dump_file, "Static read-only clobbers avoided: %d\n",
292 clobber_stats.static_readonly_clobbers_avoided);
297 /* Return memory for an operand of size SIZE. */
299 static inline void *
300 ssa_operand_alloc (unsigned size)
302 char *ptr;
304 gcc_assert (size == sizeof (struct use_optype_d)
305 || size == sizeof (struct def_optype_d));
307 if (gimple_ssa_operands (cfun)->operand_memory_index + size
308 >= gimple_ssa_operands (cfun)->ssa_operand_mem_size)
310 struct ssa_operand_memory_d *ptr;
312 switch (gimple_ssa_operands (cfun)->ssa_operand_mem_size)
314 case OP_SIZE_INIT:
315 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_1;
316 break;
317 case OP_SIZE_1:
318 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_2;
319 break;
320 case OP_SIZE_2:
321 case OP_SIZE_3:
322 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_3;
323 break;
324 default:
325 gcc_unreachable ();
329 ptr = ggc_alloc_ssa_operand_memory_d (sizeof (void *)
330 + gimple_ssa_operands (cfun)->ssa_operand_mem_size);
332 ptr->next = gimple_ssa_operands (cfun)->operand_memory;
333 gimple_ssa_operands (cfun)->operand_memory = ptr;
334 gimple_ssa_operands (cfun)->operand_memory_index = 0;
337 ptr = &(gimple_ssa_operands (cfun)->operand_memory
338 ->mem[gimple_ssa_operands (cfun)->operand_memory_index]);
339 gimple_ssa_operands (cfun)->operand_memory_index += size;
340 return ptr;
344 /* Allocate a DEF operand. */
346 static inline struct def_optype_d *
347 alloc_def (void)
349 struct def_optype_d *ret;
350 if (gimple_ssa_operands (cfun)->free_defs)
352 ret = gimple_ssa_operands (cfun)->free_defs;
353 gimple_ssa_operands (cfun)->free_defs
354 = gimple_ssa_operands (cfun)->free_defs->next;
356 else
357 ret = (struct def_optype_d *)
358 ssa_operand_alloc (sizeof (struct def_optype_d));
359 return ret;
363 /* Allocate a USE operand. */
365 static inline struct use_optype_d *
366 alloc_use (void)
368 struct use_optype_d *ret;
369 if (gimple_ssa_operands (cfun)->free_uses)
371 ret = gimple_ssa_operands (cfun)->free_uses;
372 gimple_ssa_operands (cfun)->free_uses
373 = gimple_ssa_operands (cfun)->free_uses->next;
375 else
376 ret = (struct use_optype_d *)
377 ssa_operand_alloc (sizeof (struct use_optype_d));
378 return ret;
382 /* Adds OP to the list of defs after LAST. */
384 static inline def_optype_p
385 add_def_op (tree *op, def_optype_p last)
387 def_optype_p new_def;
389 new_def = alloc_def ();
390 DEF_OP_PTR (new_def) = op;
391 last->next = new_def;
392 new_def->next = NULL;
393 return new_def;
397 /* Adds OP to the list of uses of statement STMT after LAST. */
399 static inline use_optype_p
400 add_use_op (gimple stmt, tree *op, use_optype_p last)
402 use_optype_p new_use;
404 new_use = alloc_use ();
405 USE_OP_PTR (new_use)->use = op;
406 link_imm_use_stmt (USE_OP_PTR (new_use), *op, stmt);
407 last->next = new_use;
408 new_use->next = NULL;
409 return new_use;
414 /* Takes elements from build_defs and turns them into def operands of STMT.
415 TODO -- Make build_defs VEC of tree *. */
417 static inline void
418 finalize_ssa_defs (gimple stmt)
420 unsigned new_i;
421 struct def_optype_d new_list;
422 def_optype_p old_ops, last;
423 unsigned int num = VEC_length (tree, build_defs);
425 /* There should only be a single real definition per assignment. */
426 gcc_assert ((stmt && gimple_code (stmt) != GIMPLE_ASSIGN) || num <= 1);
428 /* Pre-pend the vdef we may have built. */
429 if (build_vdef != NULL_TREE)
431 tree oldvdef = gimple_vdef (stmt);
432 if (oldvdef
433 && TREE_CODE (oldvdef) == SSA_NAME)
434 oldvdef = SSA_NAME_VAR (oldvdef);
435 if (oldvdef != build_vdef)
436 gimple_set_vdef (stmt, build_vdef);
437 VEC_safe_insert (tree, heap, build_defs, 0, (tree)gimple_vdef_ptr (stmt));
438 ++num;
441 new_list.next = NULL;
442 last = &new_list;
444 old_ops = gimple_def_ops (stmt);
446 new_i = 0;
448 /* Clear and unlink a no longer necessary VDEF. */
449 if (build_vdef == NULL_TREE
450 && gimple_vdef (stmt) != NULL_TREE)
452 if (TREE_CODE (gimple_vdef (stmt)) == SSA_NAME)
454 unlink_stmt_vdef (stmt);
455 release_ssa_name (gimple_vdef (stmt));
457 gimple_set_vdef (stmt, NULL_TREE);
460 /* If we have a non-SSA_NAME VDEF, mark it for renaming. */
461 if (gimple_vdef (stmt)
462 && TREE_CODE (gimple_vdef (stmt)) != SSA_NAME)
463 mark_sym_for_renaming (gimple_vdef (stmt));
465 /* Check for the common case of 1 def that hasn't changed. */
466 if (old_ops && old_ops->next == NULL && num == 1
467 && (tree *) VEC_index (tree, build_defs, 0) == DEF_OP_PTR (old_ops))
468 return;
470 /* If there is anything in the old list, free it. */
471 if (old_ops)
473 old_ops->next = gimple_ssa_operands (cfun)->free_defs;
474 gimple_ssa_operands (cfun)->free_defs = old_ops;
477 /* If there is anything remaining in the build_defs list, simply emit it. */
478 for ( ; new_i < num; new_i++)
479 last = add_def_op ((tree *) VEC_index (tree, build_defs, new_i), last);
481 /* Now set the stmt's operands. */
482 gimple_set_def_ops (stmt, new_list.next);
486 /* Takes elements from build_uses and turns them into use operands of STMT.
487 TODO -- Make build_uses VEC of tree *. */
489 static inline void
490 finalize_ssa_uses (gimple stmt)
492 unsigned new_i;
493 struct use_optype_d new_list;
494 use_optype_p old_ops, ptr, last;
496 /* Pre-pend the VUSE we may have built. */
497 if (build_vuse != NULL_TREE)
499 tree oldvuse = gimple_vuse (stmt);
500 if (oldvuse
501 && TREE_CODE (oldvuse) == SSA_NAME)
502 oldvuse = SSA_NAME_VAR (oldvuse);
503 if (oldvuse != (build_vuse != NULL_TREE
504 ? build_vuse : build_vdef))
505 gimple_set_vuse (stmt, NULL_TREE);
506 VEC_safe_insert (tree, heap, build_uses, 0, (tree)gimple_vuse_ptr (stmt));
509 new_list.next = NULL;
510 last = &new_list;
512 old_ops = gimple_use_ops (stmt);
514 /* Clear a no longer necessary VUSE. */
515 if (build_vuse == NULL_TREE
516 && gimple_vuse (stmt) != NULL_TREE)
517 gimple_set_vuse (stmt, NULL_TREE);
519 /* If there is anything in the old list, free it. */
520 if (old_ops)
522 for (ptr = old_ops; ptr; ptr = ptr->next)
523 delink_imm_use (USE_OP_PTR (ptr));
524 old_ops->next = gimple_ssa_operands (cfun)->free_uses;
525 gimple_ssa_operands (cfun)->free_uses = old_ops;
528 /* If we added a VUSE, make sure to set the operand if it is not already
529 present and mark it for renaming. */
530 if (build_vuse != NULL_TREE
531 && gimple_vuse (stmt) == NULL_TREE)
533 gimple_set_vuse (stmt, gimple_vop (cfun));
534 mark_sym_for_renaming (gimple_vop (cfun));
537 /* Now create nodes for all the new nodes. */
538 for (new_i = 0; new_i < VEC_length (tree, build_uses); new_i++)
539 last = add_use_op (stmt,
540 (tree *) VEC_index (tree, build_uses, new_i),
541 last);
543 /* Now set the stmt's operands. */
544 gimple_set_use_ops (stmt, new_list.next);
548 /* Clear the in_list bits and empty the build array for VDEFs and
549 VUSEs. */
551 static inline void
552 cleanup_build_arrays (void)
554 build_vdef = NULL_TREE;
555 build_vuse = NULL_TREE;
556 VEC_truncate (tree, build_defs, 0);
557 VEC_truncate (tree, build_uses, 0);
561 /* Finalize all the build vectors, fill the new ones into INFO. */
563 static inline void
564 finalize_ssa_stmt_operands (gimple stmt)
566 finalize_ssa_defs (stmt);
567 finalize_ssa_uses (stmt);
568 cleanup_build_arrays ();
572 /* Start the process of building up operands vectors in INFO. */
574 static inline void
575 start_ssa_stmt_operands (void)
577 gcc_assert (VEC_length (tree, build_defs) == 0);
578 gcc_assert (VEC_length (tree, build_uses) == 0);
579 gcc_assert (build_vuse == NULL_TREE);
580 gcc_assert (build_vdef == NULL_TREE);
584 /* Add DEF_P to the list of pointers to operands. */
586 static inline void
587 append_def (tree *def_p)
589 VEC_safe_push (tree, heap, build_defs, (tree) def_p);
593 /* Add USE_P to the list of pointers to operands. */
595 static inline void
596 append_use (tree *use_p)
598 VEC_safe_push (tree, heap, build_uses, (tree) use_p);
602 /* Add VAR to the set of variables that require a VDEF operator. */
604 static inline void
605 append_vdef (tree var)
607 if (!optimize)
608 return;
610 gcc_assert ((build_vdef == NULL_TREE
611 || build_vdef == var)
612 && (build_vuse == NULL_TREE
613 || build_vuse == var));
615 build_vdef = var;
616 build_vuse = var;
620 /* Add VAR to the set of variables that require a VUSE operator. */
622 static inline void
623 append_vuse (tree var)
625 if (!optimize)
626 return;
628 gcc_assert (build_vuse == NULL_TREE
629 || build_vuse == var);
631 build_vuse = var;
634 /* Add virtual operands for STMT. FLAGS is as in get_expr_operands. */
636 static void
637 add_virtual_operand (gimple stmt ATTRIBUTE_UNUSED, int flags)
639 /* Add virtual operands to the stmt, unless the caller has specifically
640 requested not to do that (used when adding operands inside an
641 ADDR_EXPR expression). */
642 if (flags & opf_no_vops)
643 return;
645 gcc_assert (!is_gimple_debug (stmt));
647 if (flags & opf_def)
648 append_vdef (gimple_vop (cfun));
649 else
650 append_vuse (gimple_vop (cfun));
654 /* Add *VAR_P to the appropriate operand array for statement STMT.
655 FLAGS is as in get_expr_operands. If *VAR_P is a GIMPLE register,
656 it will be added to the statement's real operands, otherwise it is
657 added to virtual operands. */
659 static void
660 add_stmt_operand (tree *var_p, gimple stmt, int flags)
662 tree var, sym;
664 gcc_assert (SSA_VAR_P (*var_p));
666 var = *var_p;
667 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
669 /* Mark statements with volatile operands. */
670 if (TREE_THIS_VOLATILE (sym))
671 gimple_set_has_volatile_ops (stmt, true);
673 if (is_gimple_reg (sym))
675 /* The variable is a GIMPLE register. Add it to real operands. */
676 if (flags & opf_def)
677 append_def (var_p);
678 else
679 append_use (var_p);
681 else
682 add_virtual_operand (stmt, flags);
685 /* Mark the base address of REF as having its address taken.
686 REF may be a single variable whose address has been taken or any
687 other valid GIMPLE memory reference (structure reference, array,
688 etc). */
690 static void
691 mark_address_taken (tree ref)
693 tree var;
695 /* Note that it is *NOT OKAY* to use the target of a COMPONENT_REF
696 as the only thing we take the address of. If VAR is a structure,
697 taking the address of a field means that the whole structure may
698 be referenced using pointer arithmetic. See PR 21407 and the
699 ensuing mailing list discussion. */
700 var = get_base_address (ref);
701 if (var)
703 if (DECL_P (var))
704 TREE_ADDRESSABLE (var) = 1;
705 else if (TREE_CODE (var) == MEM_REF
706 && TREE_CODE (TREE_OPERAND (var, 0)) == ADDR_EXPR
707 && DECL_P (TREE_OPERAND (TREE_OPERAND (var, 0), 0)))
708 TREE_ADDRESSABLE (TREE_OPERAND (TREE_OPERAND (var, 0), 0)) = 1;
713 /* A subroutine of get_expr_operands to handle MEM_REF.
715 STMT is the statement being processed, EXPR is the MEM_REF
716 that got us here.
718 FLAGS is as in get_expr_operands.
720 RECURSE_ON_BASE should be set to true if we want to continue
721 calling get_expr_operands on the base pointer, and false if
722 something else will do it for us. */
724 static void
725 get_indirect_ref_operands (gimple stmt, tree expr, int flags,
726 bool recurse_on_base)
728 tree *pptr = &TREE_OPERAND (expr, 0);
730 if (TREE_THIS_VOLATILE (expr))
731 gimple_set_has_volatile_ops (stmt, true);
733 /* Add the VOP. */
734 add_virtual_operand (stmt, flags);
736 /* If requested, add a USE operand for the base pointer. */
737 if (recurse_on_base)
738 get_expr_operands (stmt, pptr,
739 opf_non_addressable | opf_use
740 | (flags & (opf_no_vops|opf_not_non_addressable)));
744 /* A subroutine of get_expr_operands to handle TARGET_MEM_REF. */
746 static void
747 get_tmr_operands (gimple stmt, tree expr, int flags)
749 if (TREE_THIS_VOLATILE (expr))
750 gimple_set_has_volatile_ops (stmt, true);
752 /* First record the real operands. */
753 get_expr_operands (stmt, &TMR_BASE (expr), opf_use | (flags & opf_no_vops));
754 get_expr_operands (stmt, &TMR_INDEX (expr), opf_use | (flags & opf_no_vops));
755 get_expr_operands (stmt, &TMR_INDEX2 (expr), opf_use | (flags & opf_no_vops));
757 add_virtual_operand (stmt, flags);
761 /* If STMT is a call that may clobber globals and other symbols that
762 escape, add them to the VDEF/VUSE lists for it. */
764 static void
765 maybe_add_call_vops (gimple stmt)
767 int call_flags = gimple_call_flags (stmt);
769 /* If aliases have been computed already, add VDEF or VUSE
770 operands for all the symbols that have been found to be
771 call-clobbered. */
772 if (!(call_flags & ECF_NOVOPS))
774 /* A 'pure' or a 'const' function never call-clobbers anything.
775 A 'noreturn' function might, but since we don't return anyway
776 there is no point in recording that. */
777 if (!(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
778 add_virtual_operand (stmt, opf_def);
779 else if (!(call_flags & ECF_CONST))
780 add_virtual_operand (stmt, opf_use);
785 /* Scan operands in the ASM_EXPR stmt referred to in INFO. */
787 static void
788 get_asm_expr_operands (gimple stmt)
790 size_t i, noutputs;
791 const char **oconstraints;
792 const char *constraint;
793 bool allows_mem, allows_reg, is_inout;
795 noutputs = gimple_asm_noutputs (stmt);
796 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
798 /* Gather all output operands. */
799 for (i = 0; i < gimple_asm_noutputs (stmt); i++)
801 tree link = gimple_asm_output_op (stmt, i);
802 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
803 oconstraints[i] = constraint;
804 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
805 &allows_reg, &is_inout);
807 /* This should have been split in gimplify_asm_expr. */
808 gcc_assert (!allows_reg || !is_inout);
810 /* Memory operands are addressable. Note that STMT needs the
811 address of this operand. */
812 if (!allows_reg && allows_mem)
813 mark_address_taken (TREE_VALUE (link));
815 get_expr_operands (stmt, &TREE_VALUE (link), opf_def | opf_not_non_addressable);
818 /* Gather all input operands. */
819 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
821 tree link = gimple_asm_input_op (stmt, i);
822 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
823 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
824 &allows_mem, &allows_reg);
826 /* Memory operands are addressable. Note that STMT needs the
827 address of this operand. */
828 if (!allows_reg && allows_mem)
829 mark_address_taken (TREE_VALUE (link));
831 get_expr_operands (stmt, &TREE_VALUE (link), opf_not_non_addressable);
834 /* Clobber all memory and addressable symbols for asm ("" : : : "memory"); */
835 for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
837 tree link = gimple_asm_clobber_op (stmt, i);
838 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0)
840 add_virtual_operand (stmt, opf_def);
841 break;
847 /* Recursively scan the expression pointed to by EXPR_P in statement
848 STMT. FLAGS is one of the OPF_* constants modifying how to
849 interpret the operands found. */
851 static void
852 get_expr_operands (gimple stmt, tree *expr_p, int flags)
854 enum tree_code code;
855 enum tree_code_class codeclass;
856 tree expr = *expr_p;
857 int uflags = opf_use;
859 if (expr == NULL)
860 return;
862 if (is_gimple_debug (stmt))
863 uflags |= (flags & opf_no_vops);
865 code = TREE_CODE (expr);
866 codeclass = TREE_CODE_CLASS (code);
868 switch (code)
870 case ADDR_EXPR:
871 /* Taking the address of a variable does not represent a
872 reference to it, but the fact that the statement takes its
873 address will be of interest to some passes (e.g. alias
874 resolution). */
875 if ((!(flags & opf_non_addressable)
876 || (flags & opf_not_non_addressable))
877 && !is_gimple_debug (stmt))
878 mark_address_taken (TREE_OPERAND (expr, 0));
880 /* If the address is invariant, there may be no interesting
881 variable references inside. */
882 if (is_gimple_min_invariant (expr))
883 return;
885 /* Otherwise, there may be variables referenced inside but there
886 should be no VUSEs created, since the referenced objects are
887 not really accessed. The only operands that we should find
888 here are ARRAY_REF indices which will always be real operands
889 (GIMPLE does not allow non-registers as array indices). */
890 flags |= opf_no_vops;
891 get_expr_operands (stmt, &TREE_OPERAND (expr, 0),
892 flags | opf_not_non_addressable);
893 return;
895 case SSA_NAME:
896 add_stmt_operand (expr_p, stmt, flags);
897 return;
899 case VAR_DECL:
900 case PARM_DECL:
901 case RESULT_DECL:
902 add_stmt_operand (expr_p, stmt, flags);
903 return;
905 case DEBUG_EXPR_DECL:
906 gcc_assert (gimple_debug_bind_p (stmt));
907 return;
909 case MEM_REF:
910 get_indirect_ref_operands (stmt, expr, flags, true);
911 return;
913 case TARGET_MEM_REF:
914 get_tmr_operands (stmt, expr, flags);
915 return;
917 case ARRAY_REF:
918 case ARRAY_RANGE_REF:
919 case COMPONENT_REF:
920 case REALPART_EXPR:
921 case IMAGPART_EXPR:
923 if (TREE_THIS_VOLATILE (expr))
924 gimple_set_has_volatile_ops (stmt, true);
926 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
928 if (code == COMPONENT_REF)
930 if (TREE_THIS_VOLATILE (TREE_OPERAND (expr, 1)))
931 gimple_set_has_volatile_ops (stmt, true);
932 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), uflags);
934 else if (code == ARRAY_REF || code == ARRAY_RANGE_REF)
936 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), uflags);
937 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), uflags);
938 get_expr_operands (stmt, &TREE_OPERAND (expr, 3), uflags);
941 return;
944 case WITH_SIZE_EXPR:
945 /* WITH_SIZE_EXPR is a pass-through reference to its first argument,
946 and an rvalue reference to its second argument. */
947 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), uflags);
948 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
949 return;
951 case COND_EXPR:
952 case VEC_COND_EXPR:
953 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), uflags);
954 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), uflags);
955 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), uflags);
956 return;
958 case CONSTRUCTOR:
960 /* General aggregate CONSTRUCTORs have been decomposed, but they
961 are still in use as the COMPLEX_EXPR equivalent for vectors. */
962 constructor_elt *ce;
963 unsigned HOST_WIDE_INT idx;
965 for (idx = 0;
966 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (expr), idx, ce);
967 idx++)
968 get_expr_operands (stmt, &ce->value, uflags);
970 return;
973 case BIT_FIELD_REF:
974 if (TREE_THIS_VOLATILE (expr))
975 gimple_set_has_volatile_ops (stmt, true);
976 /* FALLTHRU */
978 case TRUTH_NOT_EXPR:
979 case VIEW_CONVERT_EXPR:
980 do_unary:
981 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
982 return;
984 case TRUTH_AND_EXPR:
985 case TRUTH_OR_EXPR:
986 case TRUTH_XOR_EXPR:
987 case COMPOUND_EXPR:
988 case OBJ_TYPE_REF:
989 case ASSERT_EXPR:
990 do_binary:
992 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
993 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
994 return;
997 case DOT_PROD_EXPR:
998 case REALIGN_LOAD_EXPR:
999 case WIDEN_MULT_PLUS_EXPR:
1000 case WIDEN_MULT_MINUS_EXPR:
1001 case FMA_EXPR:
1003 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
1004 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
1005 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), flags);
1006 return;
1009 case FUNCTION_DECL:
1010 case LABEL_DECL:
1011 case CONST_DECL:
1012 case CASE_LABEL_EXPR:
1013 /* Expressions that make no memory references. */
1014 return;
1016 default:
1017 if (codeclass == tcc_unary)
1018 goto do_unary;
1019 if (codeclass == tcc_binary || codeclass == tcc_comparison)
1020 goto do_binary;
1021 if (codeclass == tcc_constant || codeclass == tcc_type)
1022 return;
1025 /* If we get here, something has gone wrong. */
1026 #ifdef ENABLE_CHECKING
1027 fprintf (stderr, "unhandled expression in get_expr_operands():\n");
1028 debug_tree (expr);
1029 fputs ("\n", stderr);
1030 #endif
1031 gcc_unreachable ();
1035 /* Parse STMT looking for operands. When finished, the various
1036 build_* operand vectors will have potential operands in them. */
1038 static void
1039 parse_ssa_operands (gimple stmt)
1041 enum gimple_code code = gimple_code (stmt);
1043 if (code == GIMPLE_ASM)
1044 get_asm_expr_operands (stmt);
1045 else if (is_gimple_debug (stmt))
1047 if (gimple_debug_bind_p (stmt)
1048 && gimple_debug_bind_has_value_p (stmt))
1049 get_expr_operands (stmt, gimple_debug_bind_get_value_ptr (stmt),
1050 opf_use | opf_no_vops);
1052 else
1054 size_t i, start = 0;
1056 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1058 get_expr_operands (stmt, gimple_op_ptr (stmt, 0), opf_def);
1059 start = 1;
1062 for (i = start; i < gimple_num_ops (stmt); i++)
1063 get_expr_operands (stmt, gimple_op_ptr (stmt, i), opf_use);
1065 /* Add call-clobbered operands, if needed. */
1066 if (code == GIMPLE_CALL)
1067 maybe_add_call_vops (stmt);
1069 if (code == GIMPLE_RETURN)
1070 append_vuse (gimple_vop (cfun));
1075 /* Create an operands cache for STMT. */
1077 static void
1078 build_ssa_operands (gimple stmt)
1080 /* Initially assume that the statement has no volatile operands. */
1081 gimple_set_has_volatile_ops (stmt, false);
1083 start_ssa_stmt_operands ();
1084 parse_ssa_operands (stmt);
1085 finalize_ssa_stmt_operands (stmt);
1089 /* Releases the operands of STMT back to their freelists, and clears
1090 the stmt operand lists. */
1092 void
1093 free_stmt_operands (gimple stmt)
1095 def_optype_p defs = gimple_def_ops (stmt), last_def;
1096 use_optype_p uses = gimple_use_ops (stmt), last_use;
1098 if (defs)
1100 for (last_def = defs; last_def->next; last_def = last_def->next)
1101 continue;
1102 last_def->next = gimple_ssa_operands (cfun)->free_defs;
1103 gimple_ssa_operands (cfun)->free_defs = defs;
1104 gimple_set_def_ops (stmt, NULL);
1107 if (uses)
1109 for (last_use = uses; last_use->next; last_use = last_use->next)
1110 delink_imm_use (USE_OP_PTR (last_use));
1111 delink_imm_use (USE_OP_PTR (last_use));
1112 last_use->next = gimple_ssa_operands (cfun)->free_uses;
1113 gimple_ssa_operands (cfun)->free_uses = uses;
1114 gimple_set_use_ops (stmt, NULL);
1117 if (gimple_has_mem_ops (stmt))
1119 gimple_set_vuse (stmt, NULL_TREE);
1120 gimple_set_vdef (stmt, NULL_TREE);
1125 /* Get the operands of statement STMT. */
1127 void
1128 update_stmt_operands (gimple stmt)
1130 /* If update_stmt_operands is called before SSA is initialized, do
1131 nothing. */
1132 if (!ssa_operands_active ())
1133 return;
1135 timevar_push (TV_TREE_OPS);
1137 gcc_assert (gimple_modified_p (stmt));
1138 build_ssa_operands (stmt);
1139 gimple_set_modified (stmt, false);
1141 timevar_pop (TV_TREE_OPS);
1145 /* Swap operands EXP0 and EXP1 in statement STMT. No attempt is done
1146 to test the validity of the swap operation. */
1148 void
1149 swap_tree_operands (gimple stmt, tree *exp0, tree *exp1)
1151 tree op0, op1;
1152 op0 = *exp0;
1153 op1 = *exp1;
1155 /* If the operand cache is active, attempt to preserve the relative
1156 positions of these two operands in their respective immediate use
1157 lists. */
1158 if (ssa_operands_active () && op0 != op1)
1160 use_optype_p use0, use1, ptr;
1161 use0 = use1 = NULL;
1163 /* Find the 2 operands in the cache, if they are there. */
1164 for (ptr = gimple_use_ops (stmt); ptr; ptr = ptr->next)
1165 if (USE_OP_PTR (ptr)->use == exp0)
1167 use0 = ptr;
1168 break;
1171 for (ptr = gimple_use_ops (stmt); ptr; ptr = ptr->next)
1172 if (USE_OP_PTR (ptr)->use == exp1)
1174 use1 = ptr;
1175 break;
1178 /* If both uses don't have operand entries, there isn't much we can do
1179 at this point. Presumably we don't need to worry about it. */
1180 if (use0 && use1)
1182 tree *tmp = USE_OP_PTR (use1)->use;
1183 USE_OP_PTR (use1)->use = USE_OP_PTR (use0)->use;
1184 USE_OP_PTR (use0)->use = tmp;
1188 /* Now swap the data. */
1189 *exp0 = op1;
1190 *exp1 = op0;
1194 /* Scan the immediate_use list for VAR making sure its linked properly.
1195 Return TRUE if there is a problem and emit an error message to F. */
1197 DEBUG_FUNCTION bool
1198 verify_imm_links (FILE *f, tree var)
1200 use_operand_p ptr, prev, list;
1201 int count;
1203 gcc_assert (TREE_CODE (var) == SSA_NAME);
1205 list = &(SSA_NAME_IMM_USE_NODE (var));
1206 gcc_assert (list->use == NULL);
1208 if (list->prev == NULL)
1210 gcc_assert (list->next == NULL);
1211 return false;
1214 prev = list;
1215 count = 0;
1216 for (ptr = list->next; ptr != list; )
1218 if (prev != ptr->prev)
1219 goto error;
1221 if (ptr->use == NULL)
1222 goto error; /* 2 roots, or SAFE guard node. */
1223 else if (*(ptr->use) != var)
1224 goto error;
1226 prev = ptr;
1227 ptr = ptr->next;
1229 /* Avoid infinite loops. 50,000,000 uses probably indicates a
1230 problem. */
1231 if (count++ > 50000000)
1232 goto error;
1235 /* Verify list in the other direction. */
1236 prev = list;
1237 for (ptr = list->prev; ptr != list; )
1239 if (prev != ptr->next)
1240 goto error;
1241 prev = ptr;
1242 ptr = ptr->prev;
1243 if (count-- < 0)
1244 goto error;
1247 if (count != 0)
1248 goto error;
1250 return false;
1252 error:
1253 if (ptr->loc.stmt && gimple_modified_p (ptr->loc.stmt))
1255 fprintf (f, " STMT MODIFIED. - <%p> ", (void *)ptr->loc.stmt);
1256 print_gimple_stmt (f, ptr->loc.stmt, 0, TDF_SLIM);
1258 fprintf (f, " IMM ERROR : (use_p : tree - %p:%p)", (void *)ptr,
1259 (void *)ptr->use);
1260 print_generic_expr (f, USE_FROM_PTR (ptr), TDF_SLIM);
1261 fprintf(f, "\n");
1262 return true;
1266 /* Dump all the immediate uses to FILE. */
1268 void
1269 dump_immediate_uses_for (FILE *file, tree var)
1271 imm_use_iterator iter;
1272 use_operand_p use_p;
1274 gcc_assert (var && TREE_CODE (var) == SSA_NAME);
1276 print_generic_expr (file, var, TDF_SLIM);
1277 fprintf (file, " : -->");
1278 if (has_zero_uses (var))
1279 fprintf (file, " no uses.\n");
1280 else
1281 if (has_single_use (var))
1282 fprintf (file, " single use.\n");
1283 else
1284 fprintf (file, "%d uses.\n", num_imm_uses (var));
1286 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
1288 if (use_p->loc.stmt == NULL && use_p->use == NULL)
1289 fprintf (file, "***end of stmt iterator marker***\n");
1290 else
1291 if (!is_gimple_reg (USE_FROM_PTR (use_p)))
1292 print_gimple_stmt (file, USE_STMT (use_p), 0, TDF_VOPS|TDF_MEMSYMS);
1293 else
1294 print_gimple_stmt (file, USE_STMT (use_p), 0, TDF_SLIM);
1296 fprintf(file, "\n");
1300 /* Dump all the immediate uses to FILE. */
1302 void
1303 dump_immediate_uses (FILE *file)
1305 tree var;
1306 unsigned int x;
1308 fprintf (file, "Immediate_uses: \n\n");
1309 for (x = 1; x < num_ssa_names; x++)
1311 var = ssa_name(x);
1312 if (!var)
1313 continue;
1314 dump_immediate_uses_for (file, var);
1319 /* Dump def-use edges on stderr. */
1321 DEBUG_FUNCTION void
1322 debug_immediate_uses (void)
1324 dump_immediate_uses (stderr);
1328 /* Dump def-use edges on stderr. */
1330 DEBUG_FUNCTION void
1331 debug_immediate_uses_for (tree var)
1333 dump_immediate_uses_for (stderr, var);
1337 /* Unlink STMTs virtual definition from the IL by propagating its use. */
1339 void
1340 unlink_stmt_vdef (gimple stmt)
1342 use_operand_p use_p;
1343 imm_use_iterator iter;
1344 gimple use_stmt;
1345 tree vdef = gimple_vdef (stmt);
1347 if (!vdef
1348 || TREE_CODE (vdef) != SSA_NAME)
1349 return;
1351 FOR_EACH_IMM_USE_STMT (use_stmt, iter, gimple_vdef (stmt))
1353 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1354 SET_USE (use_p, gimple_vuse (stmt));
1357 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vdef (stmt)))
1358 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vuse (stmt)) = 1;