* gcc.dg/const-elim-1.c: xfail for xtensa.
[official-gcc.git] / gcc / var-tracking.c
blob38983ec0524b69d817e8d3f185df32193fa94545
1 /* Variable tracking routines for the GNU compiler.
2 Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 /* This file contains the variable tracking pass. It computes where
22 variables are located (which registers or where in memory) at each position
23 in instruction stream and emits notes describing the locations.
24 Debug information (DWARF2 location lists) is finally generated from
25 these notes.
26 With this debug information, it is possible to show variables
27 even when debugging optimized code.
29 How does the variable tracking pass work?
31 First, it scans RTL code for uses, stores and clobbers (register/memory
32 references in instructions), for call insns and for stack adjustments
33 separately for each basic block and saves them to an array of micro
34 operations.
35 The micro operations of one instruction are ordered so that
36 pre-modifying stack adjustment < use < use with no var < call insn <
37 < set < clobber < post-modifying stack adjustment
39 Then, a forward dataflow analysis is performed to find out how locations
40 of variables change through code and to propagate the variable locations
41 along control flow graph.
42 The IN set for basic block BB is computed as a union of OUT sets of BB's
43 predecessors, the OUT set for BB is copied from the IN set for BB and
44 is changed according to micro operations in BB.
46 The IN and OUT sets for basic blocks consist of a current stack adjustment
47 (used for adjusting offset of variables addressed using stack pointer),
48 the table of structures describing the locations of parts of a variable
49 and for each physical register a linked list for each physical register.
50 The linked list is a list of variable parts stored in the register,
51 i.e. it is a list of triplets (reg, decl, offset) where decl is
52 REG_EXPR (reg) and offset is REG_OFFSET (reg). The linked list is used for
53 effective deleting appropriate variable parts when we set or clobber the
54 register.
56 There may be more than one variable part in a register. The linked lists
57 should be pretty short so it is a good data structure here.
58 For example in the following code, register allocator may assign same
59 register to variables A and B, and both of them are stored in the same
60 register in CODE:
62 if (cond)
63 set A;
64 else
65 set B;
66 CODE;
67 if (cond)
68 use A;
69 else
70 use B;
72 Finally, the NOTE_INSN_VAR_LOCATION notes describing the variable locations
73 are emitted to appropriate positions in RTL code. Each such a note describes
74 the location of one variable at the point in instruction stream where the
75 note is. There is no need to emit a note for each variable before each
76 instruction, we only emit these notes where the location of variable changes
77 (this means that we also emit notes for changes between the OUT set of the
78 previous block and the IN set of the current block).
80 The notes consist of two parts:
81 1. the declaration (from REG_EXPR or MEM_EXPR)
82 2. the location of a variable - it is either a simple register/memory
83 reference (for simple variables, for example int),
84 or a parallel of register/memory references (for a large variables
85 which consist of several parts, for example long long).
89 #include "config.h"
90 #include "system.h"
91 #include "coretypes.h"
92 #include "tm.h"
93 #include "rtl.h"
94 #include "tree.h"
95 #include "hard-reg-set.h"
96 #include "basic-block.h"
97 #include "flags.h"
98 #include "output.h"
99 #include "insn-config.h"
100 #include "reload.h"
101 #include "sbitmap.h"
102 #include "alloc-pool.h"
103 #include "fibheap.h"
104 #include "hashtab.h"
106 /* Type of micro operation. */
107 enum micro_operation_type
109 MO_USE, /* Use location (REG or MEM). */
110 MO_USE_NO_VAR,/* Use location which is not associated with a variable
111 or the variable is not trackable. */
112 MO_SET, /* Set location. */
113 MO_CLOBBER, /* Clobber location. */
114 MO_CALL, /* Call insn. */
115 MO_ADJUST /* Adjust stack pointer. */
118 /* Where shall the note be emitted? BEFORE or AFTER the instruction. */
119 enum emit_note_where
121 EMIT_NOTE_BEFORE_INSN,
122 EMIT_NOTE_AFTER_INSN
125 /* Structure holding information about micro operation. */
126 typedef struct micro_operation_def
128 /* Type of micro operation. */
129 enum micro_operation_type type;
131 union {
132 /* Location. */
133 rtx loc;
135 /* Stack adjustment. */
136 HOST_WIDE_INT adjust;
137 } u;
139 /* The instruction which the micro operation is in. */
140 rtx insn;
141 } micro_operation;
143 /* Structure for passing some other parameters to function
144 emit_note_insn_var_location. */
145 typedef struct emit_note_data_def
147 /* The instruction which the note will be emitted before/after. */
148 rtx insn;
150 /* Where the note will be emitted (before/after insn)? */
151 enum emit_note_where where;
152 } emit_note_data;
154 /* Description of location of a part of a variable. The content of a physical
155 register is described by a chain of these structures.
156 The chains are pretty short (usually 1 or 2 elements) and thus
157 chain is the best data structure. */
158 typedef struct attrs_def
160 /* Pointer to next member of the list. */
161 struct attrs_def *next;
163 /* The rtx of register. */
164 rtx loc;
166 /* The declaration corresponding to LOC. */
167 tree decl;
169 /* Offset from start of DECL. */
170 HOST_WIDE_INT offset;
171 } *attrs;
173 /* Structure holding the IN or OUT set for a basic block. */
174 typedef struct dataflow_set_def
176 /* Adjustment of stack offset. */
177 HOST_WIDE_INT stack_adjust;
179 /* Attributes for registers (lists of attrs). */
180 attrs regs[FIRST_PSEUDO_REGISTER];
182 /* Variable locations. */
183 htab_t vars;
184 } dataflow_set;
186 /* The structure (one for each basic block) containing the information
187 needed for variable tracking. */
188 typedef struct variable_tracking_info_def
190 /* Number of micro operations stored in the MOS array. */
191 int n_mos;
193 /* The array of micro operations. */
194 micro_operation *mos;
196 /* The IN and OUT set for dataflow analysis. */
197 dataflow_set in;
198 dataflow_set out;
200 /* Has the block been visited in DFS? */
201 bool visited;
202 } *variable_tracking_info;
204 /* Structure for chaining the locations. */
205 typedef struct location_chain_def
207 /* Next element in the chain. */
208 struct location_chain_def *next;
210 /* The location (REG or MEM). */
211 rtx loc;
212 } *location_chain;
214 /* Structure describing one part of variable. */
215 typedef struct variable_part_def
217 /* Chain of locations of the part. */
218 location_chain loc_chain;
220 /* Location which was last emitted to location list. */
221 rtx cur_loc;
223 /* The offset in the variable. */
224 HOST_WIDE_INT offset;
225 } variable_part;
227 /* Maximum number of location parts. */
228 #define MAX_VAR_PARTS 16
230 /* Structure describing where the variable is located. */
231 typedef struct variable_def
233 /* The declaration of the variable. */
234 tree decl;
236 /* Number of variable parts. */
237 int n_var_parts;
239 /* The variable parts. */
240 variable_part var_part[MAX_VAR_PARTS];
241 } *variable;
243 /* Hash function for DECL for VARIABLE_HTAB. */
244 #define VARIABLE_HASH_VAL(decl) ((size_t) (decl))
246 /* Pointer to the BB's information specific to variable tracking pass. */
247 #define VTI(BB) ((variable_tracking_info) (BB)->aux)
249 /* Alloc pool for struct attrs_def. */
250 static alloc_pool attrs_pool;
252 /* Alloc pool for struct variable_def. */
253 static alloc_pool var_pool;
255 /* Alloc pool for struct location_chain_def. */
256 static alloc_pool loc_chain_pool;
258 /* Changed variables, notes will be emitted for them. */
259 static htab_t changed_variables;
261 /* Shall notes be emitted? */
262 static bool emit_notes;
264 /* Fake variable for stack pointer. */
265 GTY(()) tree frame_base_decl;
267 /* Local function prototypes. */
268 static void stack_adjust_offset_pre_post (rtx, HOST_WIDE_INT *,
269 HOST_WIDE_INT *);
270 static void insn_stack_adjust_offset_pre_post (rtx, HOST_WIDE_INT *,
271 HOST_WIDE_INT *);
272 static void bb_stack_adjust_offset (basic_block);
273 static HOST_WIDE_INT prologue_stack_adjust (void);
274 static bool vt_stack_adjustments (void);
275 static rtx adjust_stack_reference (rtx, HOST_WIDE_INT);
276 static hashval_t variable_htab_hash (const void *);
277 static int variable_htab_eq (const void *, const void *);
278 static void variable_htab_free (void *);
280 static void init_attrs_list_set (attrs *);
281 static void attrs_list_clear (attrs *);
282 static attrs attrs_list_member (attrs, tree, HOST_WIDE_INT);
283 static void attrs_list_insert (attrs *, tree, HOST_WIDE_INT, rtx);
284 static void attrs_list_copy (attrs *, attrs);
285 static void attrs_list_union (attrs *, attrs);
287 static void vars_clear (htab_t);
288 static int vars_copy_1 (void **, void *);
289 static void vars_copy (htab_t, htab_t);
290 static void var_reg_delete_and_set (dataflow_set *, rtx);
291 static void var_reg_delete (dataflow_set *, rtx);
292 static void var_regno_delete (dataflow_set *, int);
293 static void var_mem_delete_and_set (dataflow_set *, rtx);
294 static void var_mem_delete (dataflow_set *, rtx);
296 static void dataflow_set_init (dataflow_set *, int);
297 static void dataflow_set_clear (dataflow_set *);
298 static void dataflow_set_copy (dataflow_set *, dataflow_set *);
299 static int variable_union_info_cmp_pos (const void *, const void *);
300 static int variable_union (void **, void *);
301 static void dataflow_set_union (dataflow_set *, dataflow_set *);
302 static bool variable_part_different_p (variable_part *, variable_part *);
303 static bool variable_different_p (variable, variable);
304 static int dataflow_set_different_1 (void **, void *);
305 static int dataflow_set_different_2 (void **, void *);
306 static bool dataflow_set_different (dataflow_set *, dataflow_set *);
307 static void dataflow_set_destroy (dataflow_set *);
309 static bool contains_symbol_ref (rtx);
310 static bool track_expr_p (tree);
311 static int count_uses (rtx *, void *);
312 static void count_uses_1 (rtx *, void *);
313 static void count_stores (rtx, rtx, void *);
314 static int add_uses (rtx *, void *);
315 static void add_uses_1 (rtx *, void *);
316 static void add_stores (rtx, rtx, void *);
317 static bool compute_bb_dataflow (basic_block);
318 static void vt_find_locations (void);
320 static void dump_attrs_list (attrs);
321 static int dump_variable (void **, void *);
322 static void dump_vars (htab_t);
323 static void dump_dataflow_set (dataflow_set *);
324 static void dump_dataflow_sets (void);
326 static void variable_was_changed (variable, htab_t);
327 static void set_frame_base_location (dataflow_set *, rtx);
328 static void set_variable_part (dataflow_set *, rtx, tree, HOST_WIDE_INT);
329 static void delete_variable_part (dataflow_set *, rtx, tree, HOST_WIDE_INT);
330 static int emit_note_insn_var_location (void **, void *);
331 static void emit_notes_for_changes (rtx, enum emit_note_where);
332 static int emit_notes_for_differences_1 (void **, void *);
333 static int emit_notes_for_differences_2 (void **, void *);
334 static void emit_notes_for_differences (rtx, dataflow_set *, dataflow_set *);
335 static void emit_notes_in_bb (basic_block);
336 static void vt_emit_notes (void);
338 static bool vt_get_decl_and_offset (rtx, tree *, HOST_WIDE_INT *);
339 static void vt_add_function_parameters (void);
340 static void vt_initialize (void);
341 static void vt_finalize (void);
343 /* Given a SET, calculate the amount of stack adjustment it contains
344 PRE- and POST-modifying stack pointer.
345 This function is similar to stack_adjust_offset. */
347 static void
348 stack_adjust_offset_pre_post (rtx pattern, HOST_WIDE_INT *pre,
349 HOST_WIDE_INT *post)
351 rtx src = SET_SRC (pattern);
352 rtx dest = SET_DEST (pattern);
353 enum rtx_code code;
355 if (dest == stack_pointer_rtx)
357 /* (set (reg sp) (plus (reg sp) (const_int))) */
358 code = GET_CODE (src);
359 if (! (code == PLUS || code == MINUS)
360 || XEXP (src, 0) != stack_pointer_rtx
361 || GET_CODE (XEXP (src, 1)) != CONST_INT)
362 return;
364 if (code == MINUS)
365 *post += INTVAL (XEXP (src, 1));
366 else
367 *post -= INTVAL (XEXP (src, 1));
369 else if (GET_CODE (dest) == MEM)
371 /* (set (mem (pre_dec (reg sp))) (foo)) */
372 src = XEXP (dest, 0);
373 code = GET_CODE (src);
375 switch (code)
377 case PRE_MODIFY:
378 case POST_MODIFY:
379 if (XEXP (src, 0) == stack_pointer_rtx)
381 rtx val = XEXP (XEXP (src, 1), 1);
382 /* We handle only adjustments by constant amount. */
383 if (GET_CODE (XEXP (src, 1)) != PLUS ||
384 GET_CODE (val) != CONST_INT)
385 abort ();
386 if (code == PRE_MODIFY)
387 *pre -= INTVAL (val);
388 else
389 *post -= INTVAL (val);
390 break;
392 return;
394 case PRE_DEC:
395 if (XEXP (src, 0) == stack_pointer_rtx)
397 *pre += GET_MODE_SIZE (GET_MODE (dest));
398 break;
400 return;
402 case POST_DEC:
403 if (XEXP (src, 0) == stack_pointer_rtx)
405 *post += GET_MODE_SIZE (GET_MODE (dest));
406 break;
408 return;
410 case PRE_INC:
411 if (XEXP (src, 0) == stack_pointer_rtx)
413 *pre -= GET_MODE_SIZE (GET_MODE (dest));
414 break;
416 return;
418 case POST_INC:
419 if (XEXP (src, 0) == stack_pointer_rtx)
421 *post -= GET_MODE_SIZE (GET_MODE (dest));
422 break;
424 return;
426 default:
427 return;
432 /* Given an INSN, calculate the amount of stack adjustment it contains
433 PRE- and POST-modifying stack pointer. */
435 static void
436 insn_stack_adjust_offset_pre_post (rtx insn, HOST_WIDE_INT *pre,
437 HOST_WIDE_INT *post)
439 *pre = 0;
440 *post = 0;
442 if (GET_CODE (PATTERN (insn)) == SET)
443 stack_adjust_offset_pre_post (PATTERN (insn), pre, post);
444 else if (GET_CODE (PATTERN (insn)) == PARALLEL
445 || GET_CODE (PATTERN (insn)) == SEQUENCE)
447 int i;
449 /* There may be stack adjustments inside compound insns. Search
450 for them. */
451 for ( i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
452 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
453 stack_adjust_offset_pre_post (XVECEXP (PATTERN (insn), 0, i),
454 pre, post);
458 /* Compute stack adjustment in basic block BB. */
460 static void
461 bb_stack_adjust_offset (basic_block bb)
463 HOST_WIDE_INT offset;
464 int i;
466 offset = VTI (bb)->in.stack_adjust;
467 for (i = 0; i < VTI (bb)->n_mos; i++)
469 if (VTI (bb)->mos[i].type == MO_ADJUST)
470 offset += VTI (bb)->mos[i].u.adjust;
471 else if (VTI (bb)->mos[i].type != MO_CALL)
473 if (GET_CODE (VTI (bb)->mos[i].u.loc) == MEM)
475 VTI (bb)->mos[i].u.loc
476 = adjust_stack_reference (VTI (bb)->mos[i].u.loc, -offset);
480 VTI (bb)->out.stack_adjust = offset;
483 /* Compute stack adjustment caused by function prolog. */
485 static HOST_WIDE_INT
486 prologue_stack_adjust (void)
488 HOST_WIDE_INT offset = 0;
489 basic_block bb = ENTRY_BLOCK_PTR->next_bb;
490 rtx insn;
491 rtx end;
493 if (!BB_END (bb))
494 return 0;
496 end = NEXT_INSN (BB_END (bb));
497 for (insn = BB_HEAD (bb); insn != end; insn = NEXT_INSN (insn))
499 if (GET_CODE (insn) == NOTE
500 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_PROLOGUE_END)
501 break;
503 if (INSN_P (insn))
505 HOST_WIDE_INT tmp;
507 insn_stack_adjust_offset_pre_post (insn, &tmp, &tmp);
508 offset += tmp;
512 return offset;
515 /* Compute stack adjustments for all blocks by traversing DFS tree.
516 Return true when the adjustments on all incoming edges are consistent.
517 Heavily borrowed from flow_depth_first_order_compute. */
519 static bool
520 vt_stack_adjustments (void)
522 edge *stack;
523 int sp;
525 /* Initialize entry block. */
526 VTI (ENTRY_BLOCK_PTR)->visited = true;
527 VTI (ENTRY_BLOCK_PTR)->out.stack_adjust = 0;
529 /* Allocate stack for back-tracking up CFG. */
530 stack = xmalloc ((n_basic_blocks + 1) * sizeof (edge));
531 sp = 0;
533 /* Push the first edge on to the stack. */
534 stack[sp++] = ENTRY_BLOCK_PTR->succ;
536 while (sp)
538 edge e;
539 basic_block src;
540 basic_block dest;
542 /* Look at the edge on the top of the stack. */
543 e = stack[sp - 1];
544 src = e->src;
545 dest = e->dest;
547 /* Check if the edge destination has been visited yet. */
548 if (!VTI (dest)->visited)
550 VTI (dest)->visited = true;
551 VTI (dest)->in.stack_adjust = VTI (src)->out.stack_adjust;
552 bb_stack_adjust_offset (dest);
554 if (dest->succ)
555 /* Since the DEST node has been visited for the first
556 time, check its successors. */
557 stack[sp++] = dest->succ;
559 else
561 /* Check whether the adjustments on the edges are the same. */
562 if (VTI (dest)->in.stack_adjust != VTI (src)->out.stack_adjust)
564 free (stack);
565 return false;
568 if (e->succ_next)
569 /* Go to the next edge. */
570 stack[sp - 1] = e->succ_next;
571 else
572 /* Return to previous level if there are no more edges. */
573 sp--;
577 free (stack);
578 return true;
581 /* Adjust stack reference MEM by ADJUSTMENT bytes and return the new rtx. */
583 static rtx
584 adjust_stack_reference (rtx mem, HOST_WIDE_INT adjustment)
586 rtx adjusted_mem;
587 rtx tmp;
589 adjusted_mem = copy_rtx (mem);
590 XEXP (adjusted_mem, 0) = replace_rtx (XEXP (adjusted_mem, 0),
591 stack_pointer_rtx,
592 gen_rtx_PLUS (Pmode, stack_pointer_rtx,
593 GEN_INT (adjustment)));
594 tmp = simplify_rtx (XEXP (adjusted_mem, 0));
595 if (tmp)
596 XEXP (adjusted_mem, 0) = tmp;
598 return adjusted_mem;
601 /* The hash function for variable_htab, computes the hash value
602 from the declaration of variable X. */
604 static hashval_t
605 variable_htab_hash (const void *x)
607 const variable v = (const variable) x;
609 return (VARIABLE_HASH_VAL (v->decl));
612 /* Compare the declaration of variable X with declaration Y. */
614 static int
615 variable_htab_eq (const void *x, const void *y)
617 const variable v = (const variable) x;
618 const tree decl = (const tree) y;
620 return (VARIABLE_HASH_VAL (v->decl) == VARIABLE_HASH_VAL (decl));
623 /* Free the element of VARIABLE_HTAB (its type is struct variable_def). */
625 static void
626 variable_htab_free (void *elem)
628 int i;
629 variable var = (variable) elem;
630 location_chain node, next;
632 for (i = 0; i < var->n_var_parts; i++)
634 for (node = var->var_part[i].loc_chain; node; node = next)
636 next = node->next;
637 pool_free (loc_chain_pool, node);
639 var->var_part[i].loc_chain = NULL;
641 pool_free (var_pool, var);
644 /* Initialize the set (array) SET of attrs to empty lists. */
646 static void
647 init_attrs_list_set (attrs *set)
649 int i;
651 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
652 set[i] = NULL;
655 /* Make the list *LISTP empty. */
657 static void
658 attrs_list_clear (attrs *listp)
660 attrs list, next;
662 for (list = *listp; list; list = next)
664 next = list->next;
665 pool_free (attrs_pool, list);
667 *listp = NULL;
670 /* Return true if the pair of DECL and OFFSET is the member of the LIST. */
672 static attrs
673 attrs_list_member (attrs list, tree decl, HOST_WIDE_INT offset)
675 for (; list; list = list->next)
676 if (list->decl == decl && list->offset == offset)
677 return list;
678 return NULL;
681 /* Insert the triplet DECL, OFFSET, LOC to the list *LISTP. */
683 static void
684 attrs_list_insert (attrs *listp, tree decl, HOST_WIDE_INT offset, rtx loc)
686 attrs list;
688 list = pool_alloc (attrs_pool);
689 list->loc = loc;
690 list->decl = decl;
691 list->offset = offset;
692 list->next = *listp;
693 *listp = list;
696 /* Copy all nodes from SRC and create a list *DSTP of the copies. */
698 static void
699 attrs_list_copy (attrs *dstp, attrs src)
701 attrs n;
703 attrs_list_clear (dstp);
704 for (; src; src = src->next)
706 n = pool_alloc (attrs_pool);
707 n->loc = src->loc;
708 n->decl = src->decl;
709 n->offset = src->offset;
710 n->next = *dstp;
711 *dstp = n;
715 /* Add all nodes from SRC which are not in *DSTP to *DSTP. */
717 static void
718 attrs_list_union (attrs *dstp, attrs src)
720 for (; src; src = src->next)
722 if (!attrs_list_member (*dstp, src->decl, src->offset))
723 attrs_list_insert (dstp, src->decl, src->offset, src->loc);
727 /* Delete all variables from hash table VARS. */
729 static void
730 vars_clear (htab_t vars)
732 htab_empty (vars);
735 /* Copy one variable from *SLOT to hash table DATA. */
737 static int
738 vars_copy_1 (void **slot, void *data)
740 htab_t dst = (htab_t) data;
741 variable src, *dstp, var;
742 int i;
744 src = *(variable *) slot;
745 dstp = (variable *) htab_find_slot_with_hash (dst, src->decl,
746 VARIABLE_HASH_VAL (src->decl),
747 INSERT);
748 var = pool_alloc (var_pool);
749 var->decl = src->decl;
750 var->n_var_parts = src->n_var_parts;
751 *dstp = (void *) var;
753 for (i = 0; i < var->n_var_parts; i++)
755 location_chain last, node;
757 var->var_part[i].offset = src->var_part[i].offset;
758 last = NULL;
759 for (node = src->var_part[i].loc_chain; node; node = node->next)
761 location_chain new_lc;
763 new_lc = pool_alloc (loc_chain_pool);
764 new_lc->next = NULL;
765 new_lc->loc = node->loc;
767 if (last)
768 last->next = new_lc;
769 else
770 var->var_part[i].loc_chain = new_lc;
771 last = new_lc;
774 /* We are at the basic block boundary when copying variable description
775 so set the CUR_LOC to be the first element of the chain. */
776 if (var->var_part[i].loc_chain)
777 var->var_part[i].cur_loc = var->var_part[i].loc_chain->loc;
778 else
779 var->var_part[i].cur_loc = NULL;
782 /* Continue traversing the hash table. */
783 return 1;
786 /* Copy all variables from hash table SRC to hash table DST. */
788 static void
789 vars_copy (htab_t dst, htab_t src)
791 vars_clear (dst);
792 htab_traverse (src, vars_copy_1, dst);
795 /* Delete current content of register LOC in dataflow set SET
796 and set the register to contain REG_EXPR (LOC), REG_OFFSET (LOC). */
798 static void
799 var_reg_delete_and_set (dataflow_set *set, rtx loc)
801 attrs *reg = &set->regs[REGNO (loc)];
802 tree decl = REG_EXPR (loc);
803 HOST_WIDE_INT offset = REG_OFFSET (loc);
804 attrs node, prev, next;
806 prev = NULL;
807 for (node = *reg; node; node = next)
809 next = node->next;
810 if (node->decl != decl || node->offset != offset)
812 delete_variable_part (set, node->loc, node->decl, node->offset);
814 if (prev)
815 prev->next = next;
816 else
817 *reg = next;
818 pool_free (attrs_pool, node);
820 else
822 node->loc = loc;
823 prev = node;
826 if (*reg == NULL)
827 attrs_list_insert (reg, decl, offset, loc);
828 set_variable_part (set, loc, decl, offset);
831 /* Delete current content of register LOC in dataflow set SET. */
833 static void
834 var_reg_delete (dataflow_set *set, rtx loc)
836 attrs *reg = &set->regs[REGNO (loc)];
837 attrs node, next;
839 for (node = *reg; node; node = next)
841 next = node->next;
842 delete_variable_part (set, node->loc, node->decl, node->offset);
843 pool_free (attrs_pool, node);
845 *reg = NULL;
848 /* Delete content of register with number REGNO in dataflow set SET. */
850 static void
851 var_regno_delete (dataflow_set *set, int regno)
853 attrs *reg = &set->regs[regno];
854 attrs node, next;
856 for (node = *reg; node; node = next)
858 next = node->next;
859 delete_variable_part (set, node->loc, node->decl, node->offset);
860 pool_free (attrs_pool, node);
862 *reg = NULL;
865 /* Delete and set the location part of variable MEM_EXPR (LOC)
866 in dataflow set SET to LOC.
867 Adjust the address first if it is stack pointer based. */
869 static void
870 var_mem_delete_and_set (dataflow_set *set, rtx loc)
872 tree decl = MEM_EXPR (loc);
873 HOST_WIDE_INT offset = MEM_OFFSET (loc) ? INTVAL (MEM_OFFSET (loc)) : 0;
875 set_variable_part (set, loc, decl, offset);
878 /* Delete the location part LOC from dataflow set SET.
879 Adjust the address first if it is stack pointer based. */
881 static void
882 var_mem_delete (dataflow_set *set, rtx loc)
884 tree decl = MEM_EXPR (loc);
885 HOST_WIDE_INT offset = MEM_OFFSET (loc) ? INTVAL (MEM_OFFSET (loc)) : 0;
887 delete_variable_part (set, loc, decl, offset);
890 /* Initialize dataflow set SET to be empty.
891 VARS_SIZE is the initial size of hash table VARS. */
893 static void
894 dataflow_set_init (dataflow_set *set, int vars_size)
896 init_attrs_list_set (set->regs);
897 set->vars = htab_create (vars_size, variable_htab_hash, variable_htab_eq,
898 variable_htab_free);
899 set->stack_adjust = 0;
902 /* Delete the contents of dataflow set SET. */
904 static void
905 dataflow_set_clear (dataflow_set *set)
907 int i;
909 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
910 attrs_list_clear (&set->regs[i]);
912 vars_clear (set->vars);
915 /* Copy the contents of dataflow set SRC to DST. */
917 static void
918 dataflow_set_copy (dataflow_set *dst, dataflow_set *src)
920 int i;
922 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
923 attrs_list_copy (&dst->regs[i], src->regs[i]);
925 vars_copy (dst->vars, src->vars);
926 dst->stack_adjust = src->stack_adjust;
929 /* Information for merging lists of locations for a given offset of variable.
931 struct variable_union_info
933 /* Node of the location chain. */
934 location_chain lc;
936 /* The sum of positions in the input chains. */
937 int pos;
939 /* The position in the chains of SRC and DST dataflow sets. */
940 int pos_src;
941 int pos_dst;
944 /* Compare function for qsort, order the structures by POS element. */
946 static int
947 variable_union_info_cmp_pos (const void *n1, const void *n2)
949 const struct variable_union_info *i1 = n1;
950 const struct variable_union_info *i2 = n2;
952 if (i1->pos != i2->pos)
953 return i1->pos - i2->pos;
955 return (i1->pos_dst - i2->pos_dst);
958 /* Compute union of location parts of variable *SLOT and the same variable
959 from hash table DATA. Compute "sorted" union of the location chains
960 for common offsets, i.e. the locations of a variable part are sorted by
961 a priority where the priority is the sum of the positions in the 2 chains
962 (if a location is only in one list the position in the second list is
963 defined to be larger than the length of the chains).
964 When we are updating the location parts the newest location is in the
965 beginning of the chain, so when we do the described "sorted" union
966 we keep the newest locations in the beginning. */
968 static int
969 variable_union (void **slot, void *data)
971 variable src, dst, *dstp;
972 dataflow_set *set = (dataflow_set *) data;
973 int i, j, k;
975 src = *(variable *) slot;
976 dstp = (variable *) htab_find_slot_with_hash (set->vars, src->decl,
977 VARIABLE_HASH_VAL (src->decl),
978 INSERT);
979 if (!*dstp)
981 *dstp = dst = pool_alloc (var_pool);
982 dst->decl = src->decl;
983 dst->n_var_parts = 0;
985 else
986 dst = *dstp;
988 #ifdef ENABLE_CHECKING
989 if (src->n_var_parts == 0)
990 abort ();
991 #endif
993 /* Count the number of location parts, result is K. */
994 for (i = 0, j = 0, k = 0;
995 i < src->n_var_parts && j < dst->n_var_parts; k++)
997 if (src->var_part[i].offset == dst->var_part[j].offset)
999 i++;
1000 j++;
1002 else if (src->var_part[i].offset < dst->var_part[j].offset)
1003 i++;
1004 else
1005 j++;
1007 if (i < src->n_var_parts)
1008 k += src->n_var_parts - i;
1009 if (j < dst->n_var_parts)
1010 k += dst->n_var_parts - j;
1011 #ifdef ENABLE_CHECKING
1012 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
1013 thus there are at most MAX_VAR_PARTS different offsets. */
1014 if (k > MAX_VAR_PARTS)
1015 abort ();
1016 #endif
1018 i = src->n_var_parts - 1;
1019 j = dst->n_var_parts - 1;
1020 dst->n_var_parts = k;
1022 for (k--; k >= 0; k--)
1024 location_chain node;
1026 if (i >= 0 && j >= 0
1027 && src->var_part[i].offset == dst->var_part[j].offset)
1029 /* Compute the "sorted" union of the chains, i.e. the locations which
1030 are in both chains go first, they are sorted by the sum of
1031 positions in the chains. */
1032 int dst_l, src_l;
1033 int ii, jj, n;
1034 struct variable_union_info *vui;
1036 src_l = 0;
1037 for (node = src->var_part[i].loc_chain; node; node = node->next)
1038 src_l++;
1039 dst_l = 0;
1040 for (node = dst->var_part[j].loc_chain; node; node = node->next)
1041 dst_l++;
1042 vui = xcalloc (src_l + dst_l, sizeof (struct variable_union_info));
1044 /* Fill in the locations from DST. */
1045 for (node = dst->var_part[j].loc_chain, jj = 0; node;
1046 node = node->next, jj++)
1048 vui[jj].lc = node;
1049 vui[jj].pos_dst = jj;
1051 /* Value larger than a sum of 2 valid positions. */
1052 vui[jj].pos_src = src_l + dst_l;
1055 /* Fill in the locations from SRC. */
1056 n = dst_l;
1057 for (node = src->var_part[i].loc_chain, ii = 0; node;
1058 node = node->next, ii++)
1060 /* Find location from NODE. */
1061 for (jj = 0; jj < dst_l; jj++)
1063 if ((GET_CODE (vui[jj].lc->loc) == REG
1064 && GET_CODE (node->loc) == REG
1065 && REGNO (vui[jj].lc->loc) == REGNO (node->loc))
1066 || rtx_equal_p (vui[jj].lc->loc, node->loc))
1068 vui[jj].pos_src = ii;
1069 break;
1072 if (jj >= dst_l) /* The location has not been found. */
1074 location_chain new_node;
1076 /* Copy the location from SRC. */
1077 new_node = pool_alloc (loc_chain_pool);
1078 new_node->loc = node->loc;
1079 vui[n].lc = new_node;
1080 vui[n].pos_src = ii;
1081 vui[n].pos_dst = src_l + dst_l;
1082 n++;
1086 for (ii = 0; ii < src_l + dst_l; ii++)
1087 vui[ii].pos = vui[ii].pos_src + vui[ii].pos_dst;
1089 qsort (vui, n, sizeof (struct variable_union_info),
1090 variable_union_info_cmp_pos);
1092 /* Reconnect the nodes in sorted order. */
1093 for (ii = 1; ii < n; ii++)
1094 vui[ii - 1].lc->next = vui[ii].lc;
1095 vui[n - 1].lc->next = NULL;
1097 dst->var_part[k].loc_chain = vui[0].lc;
1098 dst->var_part[k].offset = dst->var_part[j].offset;
1100 free (vui);
1101 i--;
1102 j--;
1104 else if ((i >= 0 && j >= 0
1105 && src->var_part[i].offset < dst->var_part[j].offset)
1106 || i < 0)
1108 dst->var_part[k] = dst->var_part[j];
1109 j--;
1111 else if ((i >= 0 && j >= 0
1112 && src->var_part[i].offset > dst->var_part[j].offset)
1113 || j < 0)
1115 location_chain last = NULL;
1117 /* Copy the chain from SRC. */
1118 for (node = src->var_part[i].loc_chain; node; node = node->next)
1120 location_chain new_lc;
1122 new_lc = pool_alloc (loc_chain_pool);
1123 new_lc->next = NULL;
1124 new_lc->loc = node->loc;
1126 if (last)
1127 last->next = new_lc;
1128 else
1129 dst->var_part[k].loc_chain = new_lc;
1130 last = new_lc;
1133 dst->var_part[k].offset = src->var_part[i].offset;
1134 i--;
1137 /* We are at the basic block boundary when computing union
1138 so set the CUR_LOC to be the first element of the chain. */
1139 if (dst->var_part[k].loc_chain)
1140 dst->var_part[k].cur_loc = dst->var_part[k].loc_chain->loc;
1141 else
1142 dst->var_part[k].cur_loc = NULL;
1145 /* Continue traversing the hash table. */
1146 return 1;
1149 /* Compute union of dataflow sets SRC and DST and store it to DST. */
1151 static void
1152 dataflow_set_union (dataflow_set *dst, dataflow_set *src)
1154 int i;
1156 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1157 attrs_list_union (&dst->regs[i], src->regs[i]);
1159 htab_traverse (src->vars, variable_union, dst);
1162 /* Flag whether two dataflow sets being compared contain different data. */
1163 static bool
1164 dataflow_set_different_value;
1166 static bool
1167 variable_part_different_p (variable_part *vp1, variable_part *vp2)
1169 location_chain lc1, lc2;
1171 for (lc1 = vp1->loc_chain; lc1; lc1 = lc1->next)
1173 for (lc2 = vp2->loc_chain; lc2; lc2 = lc2->next)
1175 if (GET_CODE (lc1->loc) == REG && GET_CODE (lc2->loc) == REG)
1177 if (REGNO (lc1->loc) == REGNO (lc2->loc))
1178 break;
1180 if (rtx_equal_p (lc1->loc, lc2->loc))
1181 break;
1183 if (!lc2)
1184 return true;
1186 return false;
1189 /* Return true if variables VAR1 and VAR2 are different (only the first
1190 location in the list of locations is checked for each offset,
1191 i.e. when true is returned a note should be emitted). */
1193 static bool
1194 variable_different_p (variable var1, variable var2)
1196 int i;
1198 if (var1->n_var_parts != var2->n_var_parts)
1199 return true;
1201 for (i = 0; i < var1->n_var_parts; i++)
1203 if (var1->var_part[i].offset != var2->var_part[i].offset)
1204 return true;
1205 if (variable_part_different_p (&var1->var_part[i], &var2->var_part[i]))
1206 return true;
1207 if (variable_part_different_p (&var2->var_part[i], &var1->var_part[i]))
1208 return true;
1210 return false;
1213 /* Compare variable *SLOT with the same variable in hash table DATA
1214 and set DATAFLOW_SET_DIFFERENT_VALUE if they are different. */
1216 static int
1217 dataflow_set_different_1 (void **slot, void *data)
1219 htab_t htab = (htab_t) data;
1220 variable var1, var2;
1222 var1 = *(variable *) slot;
1223 var2 = (variable) htab_find_with_hash (htab, var1->decl,
1224 VARIABLE_HASH_VAL (var1->decl));
1225 if (!var2)
1227 dataflow_set_different_value = true;
1229 /* Stop traversing the hash table. */
1230 return 0;
1233 if (variable_different_p (var1, var2))
1235 dataflow_set_different_value = true;
1237 /* Stop traversing the hash table. */
1238 return 0;
1241 /* Continue traversing the hash table. */
1242 return 1;
1245 /* Compare variable *SLOT with the same variable in hash table DATA
1246 and set DATAFLOW_SET_DIFFERENT_VALUE if they are different. */
1248 static int
1249 dataflow_set_different_2 (void **slot, void *data)
1251 htab_t htab = (htab_t) data;
1252 variable var1, var2;
1254 var1 = *(variable *) slot;
1255 var2 = (variable) htab_find_with_hash (htab, var1->decl,
1256 VARIABLE_HASH_VAL (var1->decl));
1257 if (!var2)
1259 dataflow_set_different_value = true;
1261 /* Stop traversing the hash table. */
1262 return 0;
1265 #ifdef ENABLE_CHECKING
1266 /* If both variables are defined they have been already checked for
1267 equivalence. */
1268 if (variable_different_p (var1, var2))
1269 abort ();
1270 #endif
1272 /* Continue traversing the hash table. */
1273 return 1;
1276 /* Return true if dataflow sets OLD_SET and NEW_SET differ. */
1278 static bool
1279 dataflow_set_different (dataflow_set *old_set, dataflow_set *new_set)
1281 dataflow_set_different_value = false;
1283 htab_traverse (old_set->vars, dataflow_set_different_1, new_set->vars);
1284 if (!dataflow_set_different_value)
1286 /* We have compared the variables which are in both hash tables
1287 so now only check whether there are some variables in NEW_SET->VARS
1288 which are not in OLD_SET->VARS. */
1289 htab_traverse (new_set->vars, dataflow_set_different_2, old_set->vars);
1291 return dataflow_set_different_value;
1294 /* Free the contents of dataflow set SET. */
1296 static void
1297 dataflow_set_destroy (dataflow_set *set)
1299 int i;
1301 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1302 attrs_list_clear (&set->regs[i]);
1304 htab_delete (set->vars);
1305 set->vars = NULL;
1308 /* Return true if RTL X contains a SYMBOL_REF. */
1310 static bool
1311 contains_symbol_ref (rtx x)
1313 const char *fmt;
1314 RTX_CODE code;
1315 int i;
1317 if (!x)
1318 return false;
1320 code = GET_CODE (x);
1321 if (code == SYMBOL_REF)
1322 return true;
1324 fmt = GET_RTX_FORMAT (code);
1325 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1327 if (fmt[i] == 'e')
1329 if (contains_symbol_ref (XEXP (x, i)))
1330 return true;
1332 else if (fmt[i] == 'E')
1334 int j;
1335 for (j = 0; j < XVECLEN (x, i); j++)
1336 if (contains_symbol_ref (XVECEXP (x, i, j)))
1337 return true;
1341 return false;
1344 /* Shall EXPR be tracked? */
1346 static bool
1347 track_expr_p (tree expr)
1349 rtx decl_rtl;
1351 /* If EXPR is not a parameter or a variable do not track it. */
1352 if (TREE_CODE (expr) != VAR_DECL && TREE_CODE (expr) != PARM_DECL)
1353 return 0;
1355 /* It also must have a name... */
1356 if (!DECL_NAME (expr))
1357 return 0;
1359 /* ... and a RTL assigned to it. */
1360 decl_rtl = DECL_RTL_IF_SET (expr);
1361 if (!decl_rtl)
1362 return 0;
1364 /* Do not track global variables until we are able to emit correct location
1365 list for them. */
1366 if (TREE_STATIC (expr))
1367 return 0;
1369 /* When the EXPR is a DECL for alias of some variable (see example)
1370 the TREE_STATIC flag is not used. Disable tracking all DECLs whose
1371 DECL_RTL contains SYMBOL_REF.
1373 Example:
1374 extern char **_dl_argv_internal __attribute__ ((alias ("_dl_argv")));
1375 char **_dl_argv;
1377 if (GET_CODE (decl_rtl) == MEM
1378 && contains_symbol_ref (XEXP (decl_rtl, 0)))
1379 return 0;
1381 /* If RTX is a memory it should not be very large (because it would be
1382 an array or struct). */
1383 if (GET_CODE (decl_rtl) == MEM)
1385 /* Do not track structures and arrays. */
1386 if (GET_MODE (decl_rtl) == BLKmode)
1387 return 0;
1388 if (MEM_SIZE (decl_rtl)
1389 && INTVAL (MEM_SIZE (decl_rtl)) > MAX_VAR_PARTS)
1390 return 0;
1393 return 1;
1396 /* Count uses (register and memory references) LOC which will be tracked.
1397 INSN is instruction which the LOC is part of. */
1399 static int
1400 count_uses (rtx *loc, void *insn)
1402 basic_block bb = BLOCK_FOR_INSN ((rtx) insn);
1404 if (GET_CODE (*loc) == REG)
1406 #ifdef ENABLE_CHECKING
1407 if (REGNO (*loc) >= FIRST_PSEUDO_REGISTER)
1408 abort ();
1409 #endif
1410 VTI (bb)->n_mos++;
1412 else if (GET_CODE (*loc) == MEM
1413 && MEM_EXPR (*loc)
1414 && track_expr_p (MEM_EXPR (*loc)))
1416 VTI (bb)->n_mos++;
1419 return 0;
1422 /* Helper function for finding all uses of REG/MEM in X in insn INSN. */
1424 static void
1425 count_uses_1 (rtx *x, void *insn)
1427 for_each_rtx (x, count_uses, insn);
1430 /* Count stores (register and memory references) LOC which will be tracked.
1431 INSN is instruction which the LOC is part of. */
1433 static void
1434 count_stores (rtx loc, rtx expr ATTRIBUTE_UNUSED, void *insn)
1436 count_uses (&loc, insn);
1439 /* Add uses (register and memory references) LOC which will be tracked
1440 to VTI (bb)->mos. INSN is instruction which the LOC is part of. */
1442 static int
1443 add_uses (rtx *loc, void *insn)
1445 if (GET_CODE (*loc) == REG)
1447 basic_block bb = BLOCK_FOR_INSN ((rtx) insn);
1448 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
1450 mo->type = ((REG_EXPR (*loc) && track_expr_p (REG_EXPR (*loc)))
1451 ? MO_USE : MO_USE_NO_VAR);
1452 mo->u.loc = *loc;
1453 mo->insn = (rtx) insn;
1455 else if (GET_CODE (*loc) == MEM
1456 && MEM_EXPR (*loc)
1457 && track_expr_p (MEM_EXPR (*loc)))
1459 basic_block bb = BLOCK_FOR_INSN ((rtx) insn);
1460 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
1462 mo->type = MO_USE;
1463 mo->u.loc = *loc;
1464 mo->insn = (rtx) insn;
1467 return 0;
1470 /* Helper function for finding all uses of REG/MEM in X in insn INSN. */
1472 static void
1473 add_uses_1 (rtx *x, void *insn)
1475 for_each_rtx (x, add_uses, insn);
1478 /* Add stores (register and memory references) LOC which will be tracked
1479 to VTI (bb)->mos. EXPR is the RTL expression containing the store.
1480 INSN is instruction which the LOC is part of. */
1482 static void
1483 add_stores (rtx loc, rtx expr, void *insn)
1485 if (GET_CODE (loc) == REG)
1487 basic_block bb = BLOCK_FOR_INSN ((rtx) insn);
1488 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
1490 mo->type = ((GET_CODE (expr) != CLOBBER && REG_EXPR (loc)
1491 && track_expr_p (REG_EXPR (loc)))
1492 ? MO_SET : MO_CLOBBER);
1493 mo->u.loc = loc;
1494 mo->insn = (rtx) insn;
1496 else if (GET_CODE (loc) == MEM
1497 && MEM_EXPR (loc)
1498 && track_expr_p (MEM_EXPR (loc)))
1500 basic_block bb = BLOCK_FOR_INSN ((rtx) insn);
1501 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
1503 mo->type = GET_CODE (expr) == CLOBBER ? MO_CLOBBER : MO_SET;
1504 mo->u.loc = loc;
1505 mo->insn = (rtx) insn;
1509 /* Compute the changes of variable locations in the basic block BB. */
1511 static bool
1512 compute_bb_dataflow (basic_block bb)
1514 int i, n, r;
1515 bool changed;
1516 dataflow_set old_out;
1517 dataflow_set *in = &VTI (bb)->in;
1518 dataflow_set *out = &VTI (bb)->out;
1520 dataflow_set_init (&old_out, htab_elements (VTI (bb)->out.vars) + 3);
1521 dataflow_set_copy (&old_out, out);
1522 dataflow_set_copy (out, in);
1524 n = VTI (bb)->n_mos;
1525 for (i = 0; i < n; i++)
1527 switch (VTI (bb)->mos[i].type)
1529 case MO_CALL:
1530 for (r = 0; r < FIRST_PSEUDO_REGISTER; r++)
1531 if (TEST_HARD_REG_BIT (call_used_reg_set, r))
1532 var_regno_delete (out, r);
1533 break;
1535 case MO_USE:
1536 case MO_SET:
1538 rtx loc = VTI (bb)->mos[i].u.loc;
1540 if (GET_CODE (loc) == REG)
1541 var_reg_delete_and_set (out, loc);
1542 else if (GET_CODE (loc) == MEM)
1543 var_mem_delete_and_set (out, loc);
1545 break;
1547 case MO_USE_NO_VAR:
1548 case MO_CLOBBER:
1550 rtx loc = VTI (bb)->mos[i].u.loc;
1552 if (GET_CODE (loc) == REG)
1553 var_reg_delete (out, loc);
1554 else if (GET_CODE (loc) == MEM)
1555 var_mem_delete (out, loc);
1557 break;
1559 case MO_ADJUST:
1561 rtx base;
1563 out->stack_adjust += VTI (bb)->mos[i].u.adjust;
1564 base = gen_rtx_MEM (Pmode,
1565 gen_rtx_PLUS (Pmode, stack_pointer_rtx,
1566 GEN_INT (out->stack_adjust)));
1567 set_frame_base_location (out, base);
1569 break;
1573 changed = dataflow_set_different (&old_out, out);
1574 dataflow_set_destroy (&old_out);
1575 return changed;
1578 /* Find the locations of variables in the whole function. */
1580 static void
1581 vt_find_locations (void)
1583 fibheap_t worklist, pending, fibheap_swap;
1584 sbitmap visited, in_worklist, in_pending, sbitmap_swap;
1585 basic_block bb;
1586 edge e;
1587 int *bb_order;
1588 int *rc_order;
1589 int i;
1591 /* Compute reverse completion order of depth first search of the CFG
1592 so that the data-flow runs faster. */
1593 rc_order = (int *) xmalloc (n_basic_blocks * sizeof (int));
1594 bb_order = (int *) xmalloc (last_basic_block * sizeof (int));
1595 flow_depth_first_order_compute (NULL, rc_order);
1596 for (i = 0; i < n_basic_blocks; i++)
1597 bb_order[rc_order[i]] = i;
1598 free (rc_order);
1600 worklist = fibheap_new ();
1601 pending = fibheap_new ();
1602 visited = sbitmap_alloc (last_basic_block);
1603 in_worklist = sbitmap_alloc (last_basic_block);
1604 in_pending = sbitmap_alloc (last_basic_block);
1605 sbitmap_zero (in_worklist);
1606 sbitmap_zero (in_pending);
1608 FOR_EACH_BB (bb)
1610 fibheap_insert (pending, bb_order[bb->index], bb);
1611 SET_BIT (in_pending, bb->index);
1614 while (!fibheap_empty (pending))
1616 fibheap_swap = pending;
1617 pending = worklist;
1618 worklist = fibheap_swap;
1619 sbitmap_swap = in_pending;
1620 in_pending = in_worklist;
1621 in_worklist = sbitmap_swap;
1623 sbitmap_zero (visited);
1625 while (!fibheap_empty (worklist))
1627 bb = fibheap_extract_min (worklist);
1628 RESET_BIT (in_worklist, bb->index);
1629 if (!TEST_BIT (visited, bb->index))
1631 bool changed;
1633 SET_BIT (visited, bb->index);
1635 /* Calculate the IN set as union of predecessor OUT sets. */
1636 dataflow_set_clear (&VTI (bb)->in);
1637 for (e = bb->pred; e; e = e->pred_next)
1639 dataflow_set_union (&VTI (bb)->in, &VTI (e->src)->out);
1642 changed = compute_bb_dataflow (bb);
1643 if (changed)
1645 for (e = bb->succ; e; e = e->succ_next)
1647 if (e->dest == EXIT_BLOCK_PTR)
1648 continue;
1650 if (e->dest == bb)
1651 continue;
1653 if (TEST_BIT (visited, e->dest->index))
1655 if (!TEST_BIT (in_pending, e->dest->index))
1657 /* Send E->DEST to next round. */
1658 SET_BIT (in_pending, e->dest->index);
1659 fibheap_insert (pending,
1660 bb_order[e->dest->index],
1661 e->dest);
1664 else if (!TEST_BIT (in_worklist, e->dest->index))
1666 /* Add E->DEST to current round. */
1667 SET_BIT (in_worklist, e->dest->index);
1668 fibheap_insert (worklist, bb_order[e->dest->index],
1669 e->dest);
1677 free (bb_order);
1678 fibheap_delete (worklist);
1679 fibheap_delete (pending);
1680 sbitmap_free (visited);
1681 sbitmap_free (in_worklist);
1682 sbitmap_free (in_pending);
1685 /* Print the content of the LIST to dump file. */
1687 static void
1688 dump_attrs_list (attrs list)
1690 for (; list; list = list->next)
1692 print_mem_expr (dump_file, list->decl);
1693 fprintf (dump_file, "+");
1694 fprintf (dump_file, HOST_WIDE_INT_PRINT_DEC, list->offset);
1696 fprintf (dump_file, "\n");
1699 /* Print the information about variable *SLOT to dump file. */
1701 static int
1702 dump_variable (void **slot, void *data ATTRIBUTE_UNUSED)
1704 variable var = *(variable *) slot;
1705 int i;
1706 location_chain node;
1708 fprintf (dump_file, " name: %s\n",
1709 IDENTIFIER_POINTER (DECL_NAME (var->decl)));
1710 for (i = 0; i < var->n_var_parts; i++)
1712 fprintf (dump_file, " offset %ld\n",
1713 (long) var->var_part[i].offset);
1714 for (node = var->var_part[i].loc_chain; node; node = node->next)
1716 fprintf (dump_file, " ");
1717 print_rtl_single (dump_file, node->loc);
1721 /* Continue traversing the hash table. */
1722 return 1;
1725 /* Print the information about variables from hash table VARS to dump file. */
1727 static void
1728 dump_vars (htab_t vars)
1730 if (htab_elements (vars) > 0)
1732 fprintf (dump_file, "Variables:\n");
1733 htab_traverse (vars, dump_variable, NULL);
1737 /* Print the dataflow set SET to dump file. */
1739 static void
1740 dump_dataflow_set (dataflow_set *set)
1742 int i;
1744 fprintf (dump_file, "Stack adjustment: ");
1745 fprintf (dump_file, HOST_WIDE_INT_PRINT_DEC, set->stack_adjust);
1746 fprintf (dump_file, "\n");
1747 for (i = 1; i < FIRST_PSEUDO_REGISTER; i++)
1749 if (set->regs[i])
1751 fprintf (dump_file, "Reg %d:", i);
1752 dump_attrs_list (set->regs[i]);
1755 dump_vars (set->vars);
1756 fprintf (dump_file, "\n");
1759 /* Print the IN and OUT sets for each basic block to dump file. */
1761 static void
1762 dump_dataflow_sets (void)
1764 basic_block bb;
1766 FOR_EACH_BB (bb)
1768 fprintf (dump_file, "\nBasic block %d:\n", bb->index);
1769 fprintf (dump_file, "IN:\n");
1770 dump_dataflow_set (&VTI (bb)->in);
1771 fprintf (dump_file, "OUT:\n");
1772 dump_dataflow_set (&VTI (bb)->out);
1776 /* Add variable VAR to the hash table of changed variables and
1777 if it has no locations delete it from hash table HTAB. */
1779 static void
1780 variable_was_changed (variable var, htab_t htab)
1782 hashval_t hash = VARIABLE_HASH_VAL (var->decl);
1784 if (emit_notes)
1786 variable *slot;
1788 slot = (variable *) htab_find_slot_with_hash (changed_variables,
1789 var->decl, hash, INSERT);
1791 if (htab && var->n_var_parts == 0)
1793 variable empty_var;
1794 void **old;
1796 empty_var = pool_alloc (var_pool);
1797 empty_var->decl = var->decl;
1798 empty_var->n_var_parts = 0;
1799 *slot = empty_var;
1801 old = htab_find_slot_with_hash (htab, var->decl, hash,
1802 NO_INSERT);
1803 if (old)
1804 htab_clear_slot (htab, old);
1806 else
1808 *slot = var;
1811 else
1813 #ifdef ENABLE_CHECKING
1814 if (!htab)
1815 abort ();
1816 #endif
1817 if (var->n_var_parts == 0)
1819 void **slot = htab_find_slot_with_hash (htab, var->decl, hash,
1820 NO_INSERT);
1821 if (slot)
1822 htab_clear_slot (htab, slot);
1827 /* Set the location of frame_base_decl to LOC in dataflow set SET. This
1828 function expects that
1829 frame_base_decl has already one location for offset 0 in the variable table.
1832 static void
1833 set_frame_base_location (dataflow_set *set, rtx loc)
1835 variable var;
1837 var = htab_find_with_hash (set->vars, frame_base_decl,
1838 VARIABLE_HASH_VAL (frame_base_decl));
1839 #ifdef ENABLE_CHECKING
1840 if (!var)
1841 abort ();
1842 if (var->n_var_parts != 1)
1843 abort ();
1844 if (var->var_part[0].offset != 0)
1845 abort ();
1846 if (!var->var_part[0].loc_chain)
1847 abort ();
1848 #endif
1850 var->var_part[0].loc_chain->loc = loc;
1851 variable_was_changed (var, set->vars);
1854 /* Set the part of variable's location in the dataflow set SET. The variable
1855 part is specified by variable's declaration DECL and offset OFFSET and the
1856 part's location by LOC. */
1858 static void
1859 set_variable_part (dataflow_set *set, rtx loc, tree decl, HOST_WIDE_INT offset)
1861 int pos, low, high;
1862 location_chain node, prev, next;
1863 variable var;
1864 void **slot;
1866 slot = htab_find_slot_with_hash (set->vars, decl,
1867 VARIABLE_HASH_VAL (decl), INSERT);
1868 if (!*slot)
1870 /* Create new variable information. */
1871 var = pool_alloc (var_pool);
1872 var->decl = decl;
1873 var->n_var_parts = 1;
1874 var->var_part[0].offset = offset;
1875 var->var_part[0].loc_chain = NULL;
1876 var->var_part[0].cur_loc = NULL;
1877 *slot = var;
1878 pos = 0;
1880 else
1882 var = (variable) *slot;
1884 /* Find the location part. */
1885 low = 0;
1886 high = var->n_var_parts;
1887 while (low != high)
1889 pos = (low + high) / 2;
1890 if (var->var_part[pos].offset < offset)
1891 low = pos + 1;
1892 else
1893 high = pos;
1895 pos = low;
1897 if (pos == var->n_var_parts || var->var_part[pos].offset != offset)
1899 /* We have not find the location part, new one will be created. */
1901 #ifdef ENABLE_CHECKING
1902 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
1903 thus there are at most MAX_VAR_PARTS different offsets. */
1904 if (var->n_var_parts >= MAX_VAR_PARTS)
1905 abort ();
1906 #endif
1908 /* We have to move the elements of array starting at index low to the
1909 next position. */
1910 for (high = var->n_var_parts; high > low; high--)
1911 var->var_part[high] = var->var_part[high - 1];
1913 var->n_var_parts++;
1914 var->var_part[pos].offset = offset;
1915 var->var_part[pos].loc_chain = NULL;
1916 var->var_part[pos].cur_loc = NULL;
1920 /* Delete the location from list. */
1921 prev = NULL;
1922 for (node = var->var_part[pos].loc_chain; node; node = next)
1924 next = node->next;
1925 if ((GET_CODE (node->loc) == REG && GET_CODE (loc) == REG
1926 && REGNO (node->loc) == REGNO (loc))
1927 || rtx_equal_p (node->loc, loc))
1929 if (prev)
1930 prev->next = next;
1931 else
1932 var->var_part[pos].loc_chain = next;
1933 pool_free (loc_chain_pool, node);
1934 break;
1936 else
1937 prev = node;
1940 /* Add the location to the beginning. */
1941 node = pool_alloc (loc_chain_pool);
1942 node->loc = loc;
1943 node->next = var->var_part[pos].loc_chain;
1944 var->var_part[pos].loc_chain = node;
1946 /* If no location was emitted do so. */
1947 if (var->var_part[pos].cur_loc == NULL)
1949 var->var_part[pos].cur_loc = loc;
1950 variable_was_changed (var, set->vars);
1954 /* Delete the part of variable's location from dataflow set SET. The variable
1955 part is specified by variable's declaration DECL and offset OFFSET and the
1956 part's location by LOC. */
1958 static void
1959 delete_variable_part (dataflow_set *set, rtx loc, tree decl,
1960 HOST_WIDE_INT offset)
1962 int pos, low, high;
1963 void **slot;
1965 slot = htab_find_slot_with_hash (set->vars, decl, VARIABLE_HASH_VAL (decl),
1966 NO_INSERT);
1967 if (slot)
1969 variable var = (variable) *slot;
1971 /* Find the location part. */
1972 low = 0;
1973 high = var->n_var_parts;
1974 while (low != high)
1976 pos = (low + high) / 2;
1977 if (var->var_part[pos].offset < offset)
1978 low = pos + 1;
1979 else
1980 high = pos;
1982 pos = low;
1984 if (pos < var->n_var_parts && var->var_part[pos].offset == offset)
1986 location_chain node, prev, next;
1987 bool changed;
1989 /* Delete the location part. */
1990 prev = NULL;
1991 for (node = var->var_part[pos].loc_chain; node; node = next)
1993 next = node->next;
1994 if ((GET_CODE (node->loc) == REG && GET_CODE (loc) == REG
1995 && REGNO (node->loc) == REGNO (loc))
1996 || rtx_equal_p (node->loc, loc))
1998 if (prev)
1999 prev->next = next;
2000 else
2001 var->var_part[pos].loc_chain = next;
2002 pool_free (loc_chain_pool, node);
2003 break;
2005 else
2006 prev = node;
2009 /* If we have deleted the location which was last emitted
2010 we have to emit new location so add the variable to set
2011 of changed variables. */
2012 if (var->var_part[pos].cur_loc
2013 && ((GET_CODE (loc) == REG
2014 && GET_CODE (var->var_part[pos].cur_loc) == REG
2015 && REGNO (loc) == REGNO (var->var_part[pos].cur_loc))
2016 || rtx_equal_p (loc, var->var_part[pos].cur_loc)))
2018 changed = true;
2019 if (var->var_part[pos].loc_chain)
2020 var->var_part[pos].cur_loc = var->var_part[pos].loc_chain->loc;
2022 else
2023 changed = false;
2025 if (var->var_part[pos].loc_chain == NULL)
2027 var->n_var_parts--;
2028 while (pos < var->n_var_parts)
2030 var->var_part[pos] = var->var_part[pos + 1];
2031 pos++;
2034 if (changed)
2035 variable_was_changed (var, set->vars);
2040 /* Emit the NOTE_INSN_VAR_LOCATION for variable *VARP. DATA contains
2041 additional parameters: WHERE specifies whether the note shall be emitted
2042 before of after instruction INSN. */
2044 static int
2045 emit_note_insn_var_location (void **varp, void *data)
2047 variable var = *(variable *) varp;
2048 rtx insn = ((emit_note_data *)data)->insn;
2049 enum emit_note_where where = ((emit_note_data *)data)->where;
2050 rtx note;
2051 int i;
2052 bool complete;
2053 HOST_WIDE_INT last_limit;
2054 tree type_size_unit;
2056 #ifdef ENABLE_CHECKING
2057 if (!var->decl)
2058 abort ();
2059 #endif
2061 complete = true;
2062 last_limit = 0;
2063 for (i = 0; i < var->n_var_parts; i++)
2065 if (last_limit < var->var_part[i].offset)
2067 complete = false;
2068 break;
2070 last_limit
2071 = (var->var_part[i].offset
2072 + GET_MODE_SIZE (GET_MODE (var->var_part[i].loc_chain->loc)));
2074 type_size_unit = TYPE_SIZE_UNIT (TREE_TYPE (var->decl));
2075 if ((unsigned HOST_WIDE_INT) last_limit < TREE_INT_CST_LOW (type_size_unit))
2076 complete = false;
2078 if (where == EMIT_NOTE_AFTER_INSN)
2079 note = emit_note_after (NOTE_INSN_VAR_LOCATION, insn);
2080 else
2081 note = emit_note_before (NOTE_INSN_VAR_LOCATION, insn);
2083 if (!complete)
2085 NOTE_VAR_LOCATION (note) = gen_rtx_VAR_LOCATION (VOIDmode, var->decl,
2086 NULL_RTX);
2088 else if (var->n_var_parts == 1)
2090 rtx expr_list
2091 = gen_rtx_EXPR_LIST (VOIDmode,
2092 var->var_part[0].loc_chain->loc,
2093 GEN_INT (var->var_part[0].offset));
2095 NOTE_VAR_LOCATION (note) = gen_rtx_VAR_LOCATION (VOIDmode, var->decl,
2096 expr_list);
2098 else if (var->n_var_parts)
2100 rtx argp[MAX_VAR_PARTS];
2101 rtx parallel;
2103 for (i = 0; i < var->n_var_parts; i++)
2104 argp[i] = gen_rtx_EXPR_LIST (VOIDmode, var->var_part[i].loc_chain->loc,
2105 GEN_INT (var->var_part[i].offset));
2106 parallel = gen_rtx_PARALLEL (VOIDmode,
2107 gen_rtvec_v (var->n_var_parts, argp));
2108 NOTE_VAR_LOCATION (note) = gen_rtx_VAR_LOCATION (VOIDmode, var->decl,
2109 parallel);
2112 htab_clear_slot (changed_variables, varp);
2114 /* When there are no location parts the variable has been already
2115 removed from hash table and a new empty variable was created.
2116 Free the empty variable. */
2117 if (var->n_var_parts == 0)
2119 pool_free (var_pool, var);
2122 /* Continue traversing the hash table. */
2123 return 1;
2126 /* Emit NOTE_INSN_VAR_LOCATION note for each variable from a chain
2127 CHANGED_VARIABLES and delete this chain. WHERE specifies whether the notes
2128 shall be emitted before of after instruction INSN. */
2130 static void
2131 emit_notes_for_changes (rtx insn, enum emit_note_where where)
2133 emit_note_data data;
2135 data.insn = insn;
2136 data.where = where;
2137 htab_traverse (changed_variables, emit_note_insn_var_location, &data);
2140 /* Add variable *SLOT to the chain CHANGED_VARIABLES if it differs from the
2141 same variable in hash table DATA or is not there at all. */
2143 static int
2144 emit_notes_for_differences_1 (void **slot, void *data)
2146 htab_t new_vars = (htab_t) data;
2147 variable old_var, new_var;
2149 old_var = *(variable *) slot;
2150 new_var = (variable) htab_find_with_hash (new_vars, old_var->decl,
2151 VARIABLE_HASH_VAL (old_var->decl));
2153 if (!new_var)
2155 /* Variable has disappeared. */
2156 variable empty_var;
2158 empty_var = pool_alloc (var_pool);
2159 empty_var->decl = old_var->decl;
2160 empty_var->n_var_parts = 0;
2161 variable_was_changed (empty_var, NULL);
2163 else if (variable_different_p (old_var, new_var))
2165 variable_was_changed (new_var, NULL);
2168 /* Continue traversing the hash table. */
2169 return 1;
2172 /* Add variable *SLOT to the chain CHANGED_VARIABLES if it is not in hash
2173 table DATA. */
2175 static int
2176 emit_notes_for_differences_2 (void **slot, void *data)
2178 htab_t old_vars = (htab_t) data;
2179 variable old_var, new_var;
2181 new_var = *(variable *) slot;
2182 old_var = (variable) htab_find_with_hash (old_vars, new_var->decl,
2183 VARIABLE_HASH_VAL (new_var->decl));
2184 if (!old_var)
2186 /* Variable has appeared. */
2187 variable_was_changed (new_var, NULL);
2190 /* Continue traversing the hash table. */
2191 return 1;
2194 /* Emit notes before INSN for differences between dataflow sets OLD_SET and
2195 NEW_SET. */
2197 static void
2198 emit_notes_for_differences (rtx insn, dataflow_set *old_set,
2199 dataflow_set *new_set)
2201 htab_traverse (old_set->vars, emit_notes_for_differences_1, new_set->vars);
2202 htab_traverse (new_set->vars, emit_notes_for_differences_2, old_set->vars);
2203 emit_notes_for_changes (insn, EMIT_NOTE_BEFORE_INSN);
2206 /* Emit the notes for changes of location parts in the basic block BB. */
2208 static void
2209 emit_notes_in_bb (basic_block bb)
2211 int i;
2212 dataflow_set set;
2214 dataflow_set_init (&set, htab_elements (VTI (bb)->in.vars) + 3);
2215 dataflow_set_copy (&set, &VTI (bb)->in);
2217 for (i = 0; i < VTI (bb)->n_mos; i++)
2219 rtx insn = VTI (bb)->mos[i].insn;
2221 switch (VTI (bb)->mos[i].type)
2223 case MO_CALL:
2225 int r;
2227 for (r = 0; r < FIRST_PSEUDO_REGISTER; r++)
2228 if (TEST_HARD_REG_BIT (call_used_reg_set, r))
2230 var_regno_delete (&set, r);
2232 emit_notes_for_changes (insn, EMIT_NOTE_AFTER_INSN);
2234 break;
2236 case MO_USE:
2237 case MO_SET:
2239 rtx loc = VTI (bb)->mos[i].u.loc;
2241 if (GET_CODE (loc) == REG)
2242 var_reg_delete_and_set (&set, loc);
2243 else
2244 var_mem_delete_and_set (&set, loc);
2246 if (VTI (bb)->mos[i].type == MO_USE)
2247 emit_notes_for_changes (insn, EMIT_NOTE_BEFORE_INSN);
2248 else
2249 emit_notes_for_changes (insn, EMIT_NOTE_AFTER_INSN);
2251 break;
2253 case MO_USE_NO_VAR:
2254 case MO_CLOBBER:
2256 rtx loc = VTI (bb)->mos[i].u.loc;
2258 if (GET_CODE (loc) == REG)
2259 var_reg_delete (&set, loc);
2260 else
2261 var_mem_delete (&set, loc);
2263 if (VTI (bb)->mos[i].type == MO_USE_NO_VAR)
2264 emit_notes_for_changes (insn, EMIT_NOTE_BEFORE_INSN);
2265 else
2266 emit_notes_for_changes (insn, EMIT_NOTE_AFTER_INSN);
2268 break;
2270 case MO_ADJUST:
2272 rtx base;
2274 set.stack_adjust += VTI (bb)->mos[i].u.adjust;
2275 base = gen_rtx_MEM (Pmode,
2276 gen_rtx_PLUS (Pmode, stack_pointer_rtx,
2277 GEN_INT (set.stack_adjust)));
2278 set_frame_base_location (&set, base);
2279 emit_notes_for_changes (insn, EMIT_NOTE_AFTER_INSN);
2281 break;
2284 dataflow_set_destroy (&set);
2287 /* Emit notes for the whole function. */
2289 static void
2290 vt_emit_notes (void)
2292 basic_block bb;
2293 dataflow_set *last_out;
2294 dataflow_set empty;
2296 #ifdef ENABLE_CHECKING
2297 if (htab_elements (changed_variables))
2298 abort ();
2299 #endif
2301 /* Enable emitting notes by functions (mainly by set_variable_part and
2302 delete_variable_part). */
2303 emit_notes = true;
2305 dataflow_set_init (&empty, 7);
2306 last_out = &empty;
2308 FOR_EACH_BB (bb)
2310 /* Emit the notes for changes of variable locations between two
2311 subsequent basic blocks. */
2312 emit_notes_for_differences (BB_HEAD (bb), last_out, &VTI (bb)->in);
2314 /* Emit the notes for the changes in the basic block itself. */
2315 emit_notes_in_bb (bb);
2317 last_out = &VTI (bb)->out;
2319 dataflow_set_destroy (&empty);
2320 emit_notes = false;
2323 /* If there is a declaration and offset associated with register/memory RTL
2324 assign declaration to *DECLP and offset to *OFFSETP, and return true. */
2326 static bool
2327 vt_get_decl_and_offset (rtx rtl, tree *declp, HOST_WIDE_INT *offsetp)
2329 if (GET_CODE (rtl) == REG)
2331 if (REG_ATTRS (rtl))
2333 *declp = REG_EXPR (rtl);
2334 *offsetp = REG_OFFSET (rtl);
2335 return true;
2338 else if (GET_CODE (rtl) == MEM)
2340 if (MEM_ATTRS (rtl))
2342 *declp = MEM_EXPR (rtl);
2343 *offsetp = MEM_OFFSET (rtl) ? INTVAL (MEM_OFFSET (rtl)) : 0;
2344 return true;
2347 return false;
2350 /* Insert function parameters to IN and OUT sets of ENTRY_BLOCK. */
2352 static void
2353 vt_add_function_parameters (void)
2355 tree parm;
2356 HOST_WIDE_INT stack_adjust = 0;
2358 if (!frame_pointer_needed)
2359 stack_adjust = prologue_stack_adjust ();
2361 for (parm = DECL_ARGUMENTS (current_function_decl);
2362 parm; parm = TREE_CHAIN (parm))
2364 rtx decl_rtl = DECL_RTL_IF_SET (parm);
2365 rtx incoming = DECL_INCOMING_RTL (parm);
2366 tree decl;
2367 HOST_WIDE_INT offset;
2368 dataflow_set *in, *out;
2370 if (TREE_CODE (parm) != PARM_DECL)
2371 continue;
2373 if (!DECL_NAME (parm))
2374 continue;
2376 if (!decl_rtl || !incoming)
2377 continue;
2379 if (GET_MODE (decl_rtl) == BLKmode || GET_MODE (incoming) == BLKmode)
2380 continue;
2382 if (!vt_get_decl_and_offset (incoming, &decl, &offset))
2383 if (!vt_get_decl_and_offset (decl_rtl, &decl, &offset))
2384 continue;
2386 if (!decl)
2387 continue;
2389 #ifdef ENABLE_CHECKING
2390 if (parm != decl)
2391 abort ();
2392 #endif
2394 incoming = eliminate_regs (incoming, 0, NULL_RTX);
2395 if (!frame_pointer_needed && GET_CODE (incoming) == MEM)
2396 incoming = adjust_stack_reference (incoming, -stack_adjust);
2397 in = &VTI (ENTRY_BLOCK_PTR)->in;
2398 out = &VTI (ENTRY_BLOCK_PTR)->out;
2400 if (GET_CODE (incoming) == REG)
2402 #ifdef ENABLE_CHECKING
2403 if (REGNO (incoming) >= FIRST_PSEUDO_REGISTER)
2404 abort ();
2405 #endif
2406 attrs_list_insert (&in->regs[REGNO (incoming)],
2407 parm, offset, incoming);
2408 attrs_list_insert (&out->regs[REGNO (incoming)],
2409 parm, offset, incoming);
2410 set_variable_part (in, incoming, parm, offset);
2411 set_variable_part (out, incoming, parm, offset);
2413 else if (GET_CODE (incoming) == MEM)
2415 set_variable_part (in, incoming, parm, offset);
2416 set_variable_part (out, incoming, parm, offset);
2421 /* Allocate and initialize the data structures for variable tracking
2422 and parse the RTL to get the micro operations. */
2424 static void
2425 vt_initialize (void)
2427 basic_block bb;
2429 alloc_aux_for_blocks (sizeof (struct variable_tracking_info_def));
2431 FOR_EACH_BB (bb)
2433 rtx insn;
2434 HOST_WIDE_INT pre, post;
2436 /* Count the number of micro operations. */
2437 VTI (bb)->n_mos = 0;
2438 for (insn = BB_HEAD (bb); insn != NEXT_INSN (BB_END (bb));
2439 insn = NEXT_INSN (insn))
2441 if (INSN_P (insn))
2443 if (!frame_pointer_needed)
2445 insn_stack_adjust_offset_pre_post (insn, &pre, &post);
2446 if (pre)
2447 VTI (bb)->n_mos++;
2448 if (post)
2449 VTI (bb)->n_mos++;
2451 note_uses (&PATTERN (insn), count_uses_1, insn);
2452 note_stores (PATTERN (insn), count_stores, insn);
2453 if (GET_CODE (insn) == CALL_INSN)
2454 VTI (bb)->n_mos++;
2458 /* Add the micro-operations to the array. */
2459 VTI (bb)->mos = xmalloc (VTI (bb)->n_mos
2460 * sizeof (struct micro_operation_def));
2461 VTI (bb)->n_mos = 0;
2462 for (insn = BB_HEAD (bb); insn != NEXT_INSN (BB_END (bb));
2463 insn = NEXT_INSN (insn))
2465 if (INSN_P (insn))
2467 int n1, n2;
2469 if (!frame_pointer_needed)
2471 insn_stack_adjust_offset_pre_post (insn, &pre, &post);
2472 if (pre)
2474 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
2476 mo->type = MO_ADJUST;
2477 mo->u.adjust = pre;
2478 mo->insn = insn;
2482 n1 = VTI (bb)->n_mos;
2483 note_uses (&PATTERN (insn), add_uses_1, insn);
2484 n2 = VTI (bb)->n_mos - 1;
2486 /* Order the MO_USEs to be before MO_USE_NO_VARs. */
2487 while (n1 < n2)
2489 while (n1 < n2 && VTI (bb)->mos[n1].type == MO_USE)
2490 n1++;
2491 while (n1 < n2 && VTI (bb)->mos[n2].type == MO_USE_NO_VAR)
2492 n2--;
2493 if (n1 < n2)
2495 micro_operation sw;
2497 sw = VTI (bb)->mos[n1];
2498 VTI (bb)->mos[n1] = VTI (bb)->mos[n2];
2499 VTI (bb)->mos[n2] = sw;
2503 if (GET_CODE (insn) == CALL_INSN)
2505 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
2507 mo->type = MO_CALL;
2508 mo->insn = insn;
2511 n1 = VTI (bb)->n_mos;
2512 note_stores (PATTERN (insn), add_stores, insn);
2513 n2 = VTI (bb)->n_mos - 1;
2515 /* Order the MO_SETs to be before MO_CLOBBERs. */
2516 while (n1 < n2)
2518 while (n1 < n2 && VTI (bb)->mos[n1].type == MO_SET)
2519 n1++;
2520 while (n1 < n2 && VTI (bb)->mos[n2].type == MO_CLOBBER)
2521 n2--;
2522 if (n1 < n2)
2524 micro_operation sw;
2526 sw = VTI (bb)->mos[n1];
2527 VTI (bb)->mos[n1] = VTI (bb)->mos[n2];
2528 VTI (bb)->mos[n2] = sw;
2532 if (!frame_pointer_needed && post)
2534 micro_operation *mo = VTI (bb)->mos + VTI (bb)->n_mos++;
2536 mo->type = MO_ADJUST;
2537 mo->u.adjust = post;
2538 mo->insn = insn;
2544 /* Init the IN and OUT sets. */
2545 FOR_ALL_BB (bb)
2547 VTI (bb)->visited = false;
2548 dataflow_set_init (&VTI (bb)->in, 7);
2549 dataflow_set_init (&VTI (bb)->out, 7);
2552 attrs_pool = create_alloc_pool ("attrs_def pool",
2553 sizeof (struct attrs_def), 1024);
2554 var_pool = create_alloc_pool ("variable_def pool",
2555 sizeof (struct variable_def), 64);
2556 loc_chain_pool = create_alloc_pool ("location_chain_def pool",
2557 sizeof (struct location_chain_def),
2558 1024);
2559 changed_variables = htab_create (10, variable_htab_hash, variable_htab_eq,
2560 NULL);
2561 vt_add_function_parameters ();
2563 if (!frame_pointer_needed)
2565 rtx base;
2567 /* Create fake variable for tracking stack pointer changes. */
2568 frame_base_decl = make_node (VAR_DECL);
2569 DECL_NAME (frame_base_decl) = get_identifier ("___frame_base_decl");
2570 TREE_TYPE (frame_base_decl) = char_type_node;
2571 DECL_ARTIFICIAL (frame_base_decl) = 1;
2573 /* Set its initial "location". */
2574 base = gen_rtx_MEM (Pmode, stack_pointer_rtx);
2575 set_variable_part (&VTI (ENTRY_BLOCK_PTR)->in, base, frame_base_decl, 0);
2576 set_variable_part (&VTI (ENTRY_BLOCK_PTR)->out, base, frame_base_decl, 0);
2578 else
2580 frame_base_decl = NULL;
2584 /* Free the data structures needed for variable tracking. */
2586 static void
2587 vt_finalize (void)
2589 basic_block bb;
2591 FOR_EACH_BB (bb)
2593 free (VTI (bb)->mos);
2596 FOR_ALL_BB (bb)
2598 dataflow_set_destroy (&VTI (bb)->in);
2599 dataflow_set_destroy (&VTI (bb)->out);
2601 free_aux_for_blocks ();
2602 free_alloc_pool (attrs_pool);
2603 free_alloc_pool (var_pool);
2604 free_alloc_pool (loc_chain_pool);
2605 htab_delete (changed_variables);
2608 /* The entry point to variable tracking pass. */
2610 void
2611 variable_tracking_main (void)
2613 if (n_basic_blocks > 500 && n_edges / n_basic_blocks >= 20)
2614 return;
2616 mark_dfs_back_edges ();
2617 vt_initialize ();
2618 if (!frame_pointer_needed)
2620 if (!vt_stack_adjustments ())
2622 vt_finalize ();
2623 return;
2627 vt_find_locations ();
2628 vt_emit_notes ();
2630 if (dump_file)
2632 dump_dataflow_sets ();
2633 dump_flow_info (dump_file);
2636 vt_finalize ();