1 /* Variable tracking routines for the GNU compiler.
2 Copyright (C) 2002, 2003, 2004, 2005, 2007 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 3, or (at your option)
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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the variable tracking pass. It computes where
21 variables are located (which registers or where in memory) at each position
22 in instruction stream and emits notes describing the locations.
23 Debug information (DWARF2 location lists) is finally generated from
25 With this debug information, it is possible to show variables
26 even when debugging optimized code.
28 How does the variable tracking pass work?
30 First, it scans RTL code for uses, stores and clobbers (register/memory
31 references in instructions), for call insns and for stack adjustments
32 separately for each basic block and saves them to an array of micro
34 The micro operations of one instruction are ordered so that
35 pre-modifying stack adjustment < use < use with no var < call insn <
36 < set < clobber < post-modifying stack adjustment
38 Then, a forward dataflow analysis is performed to find out how locations
39 of variables change through code and to propagate the variable locations
40 along control flow graph.
41 The IN set for basic block BB is computed as a union of OUT sets of BB's
42 predecessors, the OUT set for BB is copied from the IN set for BB and
43 is changed according to micro operations in BB.
45 The IN and OUT sets for basic blocks consist of a current stack adjustment
46 (used for adjusting offset of variables addressed using stack pointer),
47 the table of structures describing the locations of parts of a variable
48 and for each physical register a linked list for each physical register.
49 The linked list is a list of variable parts stored in the register,
50 i.e. it is a list of triplets (reg, decl, offset) where decl is
51 REG_EXPR (reg) and offset is REG_OFFSET (reg). The linked list is used for
52 effective deleting appropriate variable parts when we set or clobber the
55 There may be more than one variable part in a register. The linked lists
56 should be pretty short so it is a good data structure here.
57 For example in the following code, register allocator may assign same
58 register to variables A and B, and both of them are stored in the same
71 Finally, the NOTE_INSN_VAR_LOCATION notes describing the variable locations
72 are emitted to appropriate positions in RTL code. Each such a note describes
73 the location of one variable at the point in instruction stream where the
74 note is. There is no need to emit a note for each variable before each
75 instruction, we only emit these notes where the location of variable changes
76 (this means that we also emit notes for changes between the OUT set of the
77 previous block and the IN set of the current block).
79 The notes consist of two parts:
80 1. the declaration (from REG_EXPR or MEM_EXPR)
81 2. the location of a variable - it is either a simple register/memory
82 reference (for simple variables, for example int),
83 or a parallel of register/memory references (for a large variables
84 which consist of several parts, for example long long).
90 #include "coretypes.h"
94 #include "hard-reg-set.h"
95 #include "basic-block.h"
98 #include "insn-config.h"
101 #include "alloc-pool.h"
107 #include "tree-pass.h"
109 /* Type of micro operation. */
110 enum micro_operation_type
112 MO_USE
, /* Use location (REG or MEM). */
113 MO_USE_NO_VAR
,/* Use location which is not associated with a variable
114 or the variable is not trackable. */
115 MO_SET
, /* Set location. */
116 MO_COPY
, /* Copy the same portion of a variable from one
117 location to another. */
118 MO_CLOBBER
, /* Clobber location. */
119 MO_CALL
, /* Call insn. */
120 MO_ADJUST
/* Adjust stack pointer. */
123 /* Where shall the note be emitted? BEFORE or AFTER the instruction. */
126 EMIT_NOTE_BEFORE_INSN
,
130 /* Structure holding information about micro operation. */
131 typedef struct micro_operation_def
133 /* Type of micro operation. */
134 enum micro_operation_type type
;
137 /* Location. For MO_SET and MO_COPY, this is the SET that performs
138 the assignment, if known, otherwise it is the target of the
142 /* Stack adjustment. */
143 HOST_WIDE_INT adjust
;
146 /* The instruction which the micro operation is in, for MO_USE,
147 MO_USE_NO_VAR, MO_CALL and MO_ADJUST, or the subsequent
148 instruction or note in the original flow (before any var-tracking
149 notes are inserted, to simplify emission of notes), for MO_SET
154 /* Structure for passing some other parameters to function
155 emit_note_insn_var_location. */
156 typedef struct emit_note_data_def
158 /* The instruction which the note will be emitted before/after. */
161 /* Where the note will be emitted (before/after insn)? */
162 enum emit_note_where where
;
165 /* Description of location of a part of a variable. The content of a physical
166 register is described by a chain of these structures.
167 The chains are pretty short (usually 1 or 2 elements) and thus
168 chain is the best data structure. */
169 typedef struct attrs_def
171 /* Pointer to next member of the list. */
172 struct attrs_def
*next
;
174 /* The rtx of register. */
177 /* The declaration corresponding to LOC. */
180 /* Offset from start of DECL. */
181 HOST_WIDE_INT offset
;
184 /* Structure holding the IN or OUT set for a basic block. */
185 typedef struct dataflow_set_def
187 /* Adjustment of stack offset. */
188 HOST_WIDE_INT stack_adjust
;
190 /* Attributes for registers (lists of attrs). */
191 attrs regs
[FIRST_PSEUDO_REGISTER
];
193 /* Variable locations. */
197 /* The structure (one for each basic block) containing the information
198 needed for variable tracking. */
199 typedef struct variable_tracking_info_def
201 /* Number of micro operations stored in the MOS array. */
204 /* The array of micro operations. */
205 micro_operation
*mos
;
207 /* The IN and OUT set for dataflow analysis. */
211 /* Has the block been visited in DFS? */
213 } *variable_tracking_info
;
215 /* Structure for chaining the locations. */
216 typedef struct location_chain_def
218 /* Next element in the chain. */
219 struct location_chain_def
*next
;
221 /* The location (REG or MEM). */
224 /* The "value" stored in this location. */
228 enum var_init_status init
;
231 /* Structure describing one part of variable. */
232 typedef struct variable_part_def
234 /* Chain of locations of the part. */
235 location_chain loc_chain
;
237 /* Location which was last emitted to location list. */
240 /* The offset in the variable. */
241 HOST_WIDE_INT offset
;
244 /* Maximum number of location parts. */
245 #define MAX_VAR_PARTS 16
247 /* Structure describing where the variable is located. */
248 typedef struct variable_def
250 /* The declaration of the variable. */
253 /* Reference count. */
256 /* Number of variable parts. */
259 /* The variable parts. */
260 variable_part var_part
[MAX_VAR_PARTS
];
262 typedef const struct variable_def
*const_variable
;
264 /* Hash function for DECL for VARIABLE_HTAB. */
265 #define VARIABLE_HASH_VAL(decl) (DECL_UID (decl))
267 /* Pointer to the BB's information specific to variable tracking pass. */
268 #define VTI(BB) ((variable_tracking_info) (BB)->aux)
270 /* Macro to access MEM_OFFSET as an HOST_WIDE_INT. Evaluates MEM twice. */
271 #define INT_MEM_OFFSET(mem) (MEM_OFFSET (mem) ? INTVAL (MEM_OFFSET (mem)) : 0)
273 /* Alloc pool for struct attrs_def. */
274 static alloc_pool attrs_pool
;
276 /* Alloc pool for struct variable_def. */
277 static alloc_pool var_pool
;
279 /* Alloc pool for struct location_chain_def. */
280 static alloc_pool loc_chain_pool
;
282 /* Changed variables, notes will be emitted for them. */
283 static htab_t changed_variables
;
285 /* Shall notes be emitted? */
286 static bool emit_notes
;
288 /* Local function prototypes. */
289 static void stack_adjust_offset_pre_post (rtx
, HOST_WIDE_INT
*,
291 static void insn_stack_adjust_offset_pre_post (rtx
, HOST_WIDE_INT
*,
293 static void bb_stack_adjust_offset (basic_block
);
294 static bool vt_stack_adjustments (void);
295 static rtx
adjust_stack_reference (rtx
, HOST_WIDE_INT
);
296 static hashval_t
variable_htab_hash (const void *);
297 static int variable_htab_eq (const void *, const void *);
298 static void variable_htab_free (void *);
300 static void init_attrs_list_set (attrs
*);
301 static void attrs_list_clear (attrs
*);
302 static attrs
attrs_list_member (attrs
, tree
, HOST_WIDE_INT
);
303 static void attrs_list_insert (attrs
*, tree
, HOST_WIDE_INT
, rtx
);
304 static void attrs_list_copy (attrs
*, attrs
);
305 static void attrs_list_union (attrs
*, attrs
);
307 static void vars_clear (htab_t
);
308 static variable
unshare_variable (dataflow_set
*set
, variable var
,
309 enum var_init_status
);
310 static int vars_copy_1 (void **, void *);
311 static void vars_copy (htab_t
, htab_t
);
312 static tree
var_debug_decl (tree
);
313 static void var_reg_set (dataflow_set
*, rtx
, enum var_init_status
, rtx
);
314 static void var_reg_delete_and_set (dataflow_set
*, rtx
, bool,
315 enum var_init_status
, rtx
);
316 static void var_reg_delete (dataflow_set
*, rtx
, bool);
317 static void var_regno_delete (dataflow_set
*, int);
318 static void var_mem_set (dataflow_set
*, rtx
, enum var_init_status
, rtx
);
319 static void var_mem_delete_and_set (dataflow_set
*, rtx
, bool,
320 enum var_init_status
, rtx
);
321 static void var_mem_delete (dataflow_set
*, rtx
, bool);
323 static void dataflow_set_init (dataflow_set
*, int);
324 static void dataflow_set_clear (dataflow_set
*);
325 static void dataflow_set_copy (dataflow_set
*, dataflow_set
*);
326 static int variable_union_info_cmp_pos (const void *, const void *);
327 static int variable_union (void **, void *);
328 static void dataflow_set_union (dataflow_set
*, dataflow_set
*);
329 static bool variable_part_different_p (variable_part
*, variable_part
*);
330 static bool variable_different_p (variable
, variable
, bool);
331 static int dataflow_set_different_1 (void **, void *);
332 static int dataflow_set_different_2 (void **, void *);
333 static bool dataflow_set_different (dataflow_set
*, dataflow_set
*);
334 static void dataflow_set_destroy (dataflow_set
*);
336 static bool contains_symbol_ref (rtx
);
337 static bool track_expr_p (tree
);
338 static bool same_variable_part_p (rtx
, tree
, HOST_WIDE_INT
);
339 static int count_uses (rtx
*, void *);
340 static void count_uses_1 (rtx
*, void *);
341 static void count_stores (rtx
, const_rtx
, void *);
342 static int add_uses (rtx
*, void *);
343 static void add_uses_1 (rtx
*, void *);
344 static void add_stores (rtx
, const_rtx
, void *);
345 static bool compute_bb_dataflow (basic_block
);
346 static void vt_find_locations (void);
348 static void dump_attrs_list (attrs
);
349 static int dump_variable (void **, void *);
350 static void dump_vars (htab_t
);
351 static void dump_dataflow_set (dataflow_set
*);
352 static void dump_dataflow_sets (void);
354 static void variable_was_changed (variable
, htab_t
);
355 static void set_variable_part (dataflow_set
*, rtx
, tree
, HOST_WIDE_INT
,
356 enum var_init_status
, rtx
);
357 static void clobber_variable_part (dataflow_set
*, rtx
, tree
, HOST_WIDE_INT
,
359 static void delete_variable_part (dataflow_set
*, rtx
, tree
, HOST_WIDE_INT
);
360 static int emit_note_insn_var_location (void **, void *);
361 static void emit_notes_for_changes (rtx
, enum emit_note_where
);
362 static int emit_notes_for_differences_1 (void **, void *);
363 static int emit_notes_for_differences_2 (void **, void *);
364 static void emit_notes_for_differences (rtx
, dataflow_set
*, dataflow_set
*);
365 static void emit_notes_in_bb (basic_block
);
366 static void vt_emit_notes (void);
368 static bool vt_get_decl_and_offset (rtx
, tree
*, HOST_WIDE_INT
*);
369 static void vt_add_function_parameters (void);
370 static void vt_initialize (void);
371 static void vt_finalize (void);
373 /* Given a SET, calculate the amount of stack adjustment it contains
374 PRE- and POST-modifying stack pointer.
375 This function is similar to stack_adjust_offset. */
378 stack_adjust_offset_pre_post (rtx pattern
, HOST_WIDE_INT
*pre
,
381 rtx src
= SET_SRC (pattern
);
382 rtx dest
= SET_DEST (pattern
);
385 if (dest
== stack_pointer_rtx
)
387 /* (set (reg sp) (plus (reg sp) (const_int))) */
388 code
= GET_CODE (src
);
389 if (! (code
== PLUS
|| code
== MINUS
)
390 || XEXP (src
, 0) != stack_pointer_rtx
391 || GET_CODE (XEXP (src
, 1)) != CONST_INT
)
395 *post
+= INTVAL (XEXP (src
, 1));
397 *post
-= INTVAL (XEXP (src
, 1));
399 else if (MEM_P (dest
))
401 /* (set (mem (pre_dec (reg sp))) (foo)) */
402 src
= XEXP (dest
, 0);
403 code
= GET_CODE (src
);
409 if (XEXP (src
, 0) == stack_pointer_rtx
)
411 rtx val
= XEXP (XEXP (src
, 1), 1);
412 /* We handle only adjustments by constant amount. */
413 gcc_assert (GET_CODE (XEXP (src
, 1)) == PLUS
&&
414 GET_CODE (val
) == CONST_INT
);
416 if (code
== PRE_MODIFY
)
417 *pre
-= INTVAL (val
);
419 *post
-= INTVAL (val
);
425 if (XEXP (src
, 0) == stack_pointer_rtx
)
427 *pre
+= GET_MODE_SIZE (GET_MODE (dest
));
433 if (XEXP (src
, 0) == stack_pointer_rtx
)
435 *post
+= GET_MODE_SIZE (GET_MODE (dest
));
441 if (XEXP (src
, 0) == stack_pointer_rtx
)
443 *pre
-= GET_MODE_SIZE (GET_MODE (dest
));
449 if (XEXP (src
, 0) == stack_pointer_rtx
)
451 *post
-= GET_MODE_SIZE (GET_MODE (dest
));
462 /* Given an INSN, calculate the amount of stack adjustment it contains
463 PRE- and POST-modifying stack pointer. */
466 insn_stack_adjust_offset_pre_post (rtx insn
, HOST_WIDE_INT
*pre
,
474 pattern
= PATTERN (insn
);
475 if (RTX_FRAME_RELATED_P (insn
))
477 rtx expr
= find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
);
479 pattern
= XEXP (expr
, 0);
482 if (GET_CODE (pattern
) == SET
)
483 stack_adjust_offset_pre_post (pattern
, pre
, post
);
484 else if (GET_CODE (pattern
) == PARALLEL
485 || GET_CODE (pattern
) == SEQUENCE
)
489 /* There may be stack adjustments inside compound insns. Search
491 for ( i
= XVECLEN (pattern
, 0) - 1; i
>= 0; i
--)
492 if (GET_CODE (XVECEXP (pattern
, 0, i
)) == SET
)
493 stack_adjust_offset_pre_post (XVECEXP (pattern
, 0, i
), pre
, post
);
497 /* Compute stack adjustment in basic block BB. */
500 bb_stack_adjust_offset (basic_block bb
)
502 HOST_WIDE_INT offset
;
505 offset
= VTI (bb
)->in
.stack_adjust
;
506 for (i
= 0; i
< VTI (bb
)->n_mos
; i
++)
508 if (VTI (bb
)->mos
[i
].type
== MO_ADJUST
)
509 offset
+= VTI (bb
)->mos
[i
].u
.adjust
;
510 else if (VTI (bb
)->mos
[i
].type
!= MO_CALL
)
512 if (MEM_P (VTI (bb
)->mos
[i
].u
.loc
))
514 VTI (bb
)->mos
[i
].u
.loc
515 = adjust_stack_reference (VTI (bb
)->mos
[i
].u
.loc
, -offset
);
519 VTI (bb
)->out
.stack_adjust
= offset
;
522 /* Compute stack adjustments for all blocks by traversing DFS tree.
523 Return true when the adjustments on all incoming edges are consistent.
524 Heavily borrowed from pre_and_rev_post_order_compute. */
527 vt_stack_adjustments (void)
529 edge_iterator
*stack
;
532 /* Initialize entry block. */
533 VTI (ENTRY_BLOCK_PTR
)->visited
= true;
534 VTI (ENTRY_BLOCK_PTR
)->out
.stack_adjust
= INCOMING_FRAME_SP_OFFSET
;
536 /* Allocate stack for back-tracking up CFG. */
537 stack
= XNEWVEC (edge_iterator
, n_basic_blocks
+ 1);
540 /* Push the first edge on to the stack. */
541 stack
[sp
++] = ei_start (ENTRY_BLOCK_PTR
->succs
);
549 /* Look at the edge on the top of the stack. */
551 src
= ei_edge (ei
)->src
;
552 dest
= ei_edge (ei
)->dest
;
554 /* Check if the edge destination has been visited yet. */
555 if (!VTI (dest
)->visited
)
557 VTI (dest
)->visited
= true;
558 VTI (dest
)->in
.stack_adjust
= VTI (src
)->out
.stack_adjust
;
559 bb_stack_adjust_offset (dest
);
561 if (EDGE_COUNT (dest
->succs
) > 0)
562 /* Since the DEST node has been visited for the first
563 time, check its successors. */
564 stack
[sp
++] = ei_start (dest
->succs
);
568 /* Check whether the adjustments on the edges are the same. */
569 if (VTI (dest
)->in
.stack_adjust
!= VTI (src
)->out
.stack_adjust
)
575 if (! ei_one_before_end_p (ei
))
576 /* Go to the next edge. */
577 ei_next (&stack
[sp
- 1]);
579 /* Return to previous level if there are no more edges. */
588 /* Adjust stack reference MEM by ADJUSTMENT bytes and make it relative
589 to the argument pointer. Return the new rtx. */
592 adjust_stack_reference (rtx mem
, HOST_WIDE_INT adjustment
)
596 #ifdef FRAME_POINTER_CFA_OFFSET
597 adjustment
-= FRAME_POINTER_CFA_OFFSET (current_function_decl
);
598 cfa
= plus_constant (frame_pointer_rtx
, adjustment
);
600 adjustment
-= ARG_POINTER_CFA_OFFSET (current_function_decl
);
601 cfa
= plus_constant (arg_pointer_rtx
, adjustment
);
604 addr
= replace_rtx (copy_rtx (XEXP (mem
, 0)), stack_pointer_rtx
, cfa
);
605 tmp
= simplify_rtx (addr
);
609 return replace_equiv_address_nv (mem
, addr
);
612 /* The hash function for variable_htab, computes the hash value
613 from the declaration of variable X. */
616 variable_htab_hash (const void *x
)
618 const_variable
const v
= (const_variable
) x
;
620 return (VARIABLE_HASH_VAL (v
->decl
));
623 /* Compare the declaration of variable X with declaration Y. */
626 variable_htab_eq (const void *x
, const void *y
)
628 const_variable
const v
= (const_variable
) x
;
629 const_tree
const decl
= (const_tree
) y
;
631 return (VARIABLE_HASH_VAL (v
->decl
) == VARIABLE_HASH_VAL (decl
));
634 /* Free the element of VARIABLE_HTAB (its type is struct variable_def). */
637 variable_htab_free (void *elem
)
640 variable var
= (variable
) elem
;
641 location_chain node
, next
;
643 gcc_assert (var
->refcount
> 0);
646 if (var
->refcount
> 0)
649 for (i
= 0; i
< var
->n_var_parts
; i
++)
651 for (node
= var
->var_part
[i
].loc_chain
; node
; node
= next
)
654 pool_free (loc_chain_pool
, node
);
656 var
->var_part
[i
].loc_chain
= NULL
;
658 pool_free (var_pool
, var
);
661 /* Initialize the set (array) SET of attrs to empty lists. */
664 init_attrs_list_set (attrs
*set
)
668 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
672 /* Make the list *LISTP empty. */
675 attrs_list_clear (attrs
*listp
)
679 for (list
= *listp
; list
; list
= next
)
682 pool_free (attrs_pool
, list
);
687 /* Return true if the pair of DECL and OFFSET is the member of the LIST. */
690 attrs_list_member (attrs list
, tree decl
, HOST_WIDE_INT offset
)
692 for (; list
; list
= list
->next
)
693 if (list
->decl
== decl
&& list
->offset
== offset
)
698 /* Insert the triplet DECL, OFFSET, LOC to the list *LISTP. */
701 attrs_list_insert (attrs
*listp
, tree decl
, HOST_WIDE_INT offset
, rtx loc
)
705 list
= (attrs
) pool_alloc (attrs_pool
);
708 list
->offset
= offset
;
713 /* Copy all nodes from SRC and create a list *DSTP of the copies. */
716 attrs_list_copy (attrs
*dstp
, attrs src
)
720 attrs_list_clear (dstp
);
721 for (; src
; src
= src
->next
)
723 n
= (attrs
) pool_alloc (attrs_pool
);
726 n
->offset
= src
->offset
;
732 /* Add all nodes from SRC which are not in *DSTP to *DSTP. */
735 attrs_list_union (attrs
*dstp
, attrs src
)
737 for (; src
; src
= src
->next
)
739 if (!attrs_list_member (*dstp
, src
->decl
, src
->offset
))
740 attrs_list_insert (dstp
, src
->decl
, src
->offset
, src
->loc
);
744 /* Delete all variables from hash table VARS. */
747 vars_clear (htab_t vars
)
752 /* Return a copy of a variable VAR and insert it to dataflow set SET. */
755 unshare_variable (dataflow_set
*set
, variable var
,
756 enum var_init_status initialized
)
762 new_var
= (variable
) pool_alloc (var_pool
);
763 new_var
->decl
= var
->decl
;
764 new_var
->refcount
= 1;
766 new_var
->n_var_parts
= var
->n_var_parts
;
768 for (i
= 0; i
< var
->n_var_parts
; i
++)
771 location_chain
*nextp
;
773 new_var
->var_part
[i
].offset
= var
->var_part
[i
].offset
;
774 nextp
= &new_var
->var_part
[i
].loc_chain
;
775 for (node
= var
->var_part
[i
].loc_chain
; node
; node
= node
->next
)
777 location_chain new_lc
;
779 new_lc
= (location_chain
) pool_alloc (loc_chain_pool
);
781 if (node
->init
> initialized
)
782 new_lc
->init
= node
->init
;
784 new_lc
->init
= initialized
;
785 if (node
->set_src
&& !(MEM_P (node
->set_src
)))
786 new_lc
->set_src
= node
->set_src
;
788 new_lc
->set_src
= NULL
;
789 new_lc
->loc
= node
->loc
;
792 nextp
= &new_lc
->next
;
795 /* We are at the basic block boundary when copying variable description
796 so set the CUR_LOC to be the first element of the chain. */
797 if (new_var
->var_part
[i
].loc_chain
)
798 new_var
->var_part
[i
].cur_loc
= new_var
->var_part
[i
].loc_chain
->loc
;
800 new_var
->var_part
[i
].cur_loc
= NULL
;
803 slot
= htab_find_slot_with_hash (set
->vars
, new_var
->decl
,
804 VARIABLE_HASH_VAL (new_var
->decl
),
810 /* Add a variable from *SLOT to hash table DATA and increase its reference
814 vars_copy_1 (void **slot
, void *data
)
816 htab_t dst
= (htab_t
) data
;
819 src
= *(variable
*) slot
;
822 dstp
= (variable
*) htab_find_slot_with_hash (dst
, src
->decl
,
823 VARIABLE_HASH_VAL (src
->decl
),
827 /* Continue traversing the hash table. */
831 /* Copy all variables from hash table SRC to hash table DST. */
834 vars_copy (htab_t dst
, htab_t src
)
837 htab_traverse (src
, vars_copy_1
, dst
);
840 /* Map a decl to its main debug decl. */
843 var_debug_decl (tree decl
)
845 if (decl
&& DECL_P (decl
)
846 && DECL_DEBUG_EXPR_IS_FROM (decl
) && DECL_DEBUG_EXPR (decl
)
847 && DECL_P (DECL_DEBUG_EXPR (decl
)))
848 decl
= DECL_DEBUG_EXPR (decl
);
853 /* Set the register to contain REG_EXPR (LOC), REG_OFFSET (LOC). */
856 var_reg_set (dataflow_set
*set
, rtx loc
, enum var_init_status initialized
,
859 tree decl
= REG_EXPR (loc
);
860 HOST_WIDE_INT offset
= REG_OFFSET (loc
);
863 decl
= var_debug_decl (decl
);
865 for (node
= set
->regs
[REGNO (loc
)]; node
; node
= node
->next
)
866 if (node
->decl
== decl
&& node
->offset
== offset
)
869 attrs_list_insert (&set
->regs
[REGNO (loc
)], decl
, offset
, loc
);
870 set_variable_part (set
, loc
, decl
, offset
, initialized
, set_src
);
874 get_init_value (dataflow_set
*set
, rtx loc
, tree decl
)
879 int ret_val
= VAR_INIT_STATUS_UNKNOWN
;
881 if (! flag_var_tracking_uninit
)
882 return VAR_INIT_STATUS_INITIALIZED
;
884 slot
= htab_find_slot_with_hash (set
->vars
, decl
, VARIABLE_HASH_VAL (decl
),
888 var
= * (variable
*) slot
;
889 for (i
= 0; i
< var
->n_var_parts
&& ret_val
== VAR_INIT_STATUS_UNKNOWN
; i
++)
891 location_chain nextp
;
892 for (nextp
= var
->var_part
[i
].loc_chain
; nextp
; nextp
= nextp
->next
)
893 if (rtx_equal_p (nextp
->loc
, loc
))
895 ret_val
= nextp
->init
;
904 /* Delete current content of register LOC in dataflow set SET and set
905 the register to contain REG_EXPR (LOC), REG_OFFSET (LOC). If
906 MODIFY is true, any other live copies of the same variable part are
907 also deleted from the dataflow set, otherwise the variable part is
908 assumed to be copied from another location holding the same
912 var_reg_delete_and_set (dataflow_set
*set
, rtx loc
, bool modify
,
913 enum var_init_status initialized
, rtx set_src
)
915 tree decl
= REG_EXPR (loc
);
916 HOST_WIDE_INT offset
= REG_OFFSET (loc
);
920 decl
= var_debug_decl (decl
);
922 if (initialized
== VAR_INIT_STATUS_UNKNOWN
)
923 initialized
= get_init_value (set
, loc
, decl
);
925 nextp
= &set
->regs
[REGNO (loc
)];
926 for (node
= *nextp
; node
; node
= next
)
929 if (node
->decl
!= decl
|| node
->offset
!= offset
)
931 delete_variable_part (set
, node
->loc
, node
->decl
, node
->offset
);
932 pool_free (attrs_pool
, node
);
942 clobber_variable_part (set
, loc
, decl
, offset
, set_src
);
943 var_reg_set (set
, loc
, initialized
, set_src
);
946 /* Delete current content of register LOC in dataflow set SET. If
947 CLOBBER is true, also delete any other live copies of the same
951 var_reg_delete (dataflow_set
*set
, rtx loc
, bool clobber
)
953 attrs
*reg
= &set
->regs
[REGNO (loc
)];
958 tree decl
= REG_EXPR (loc
);
959 HOST_WIDE_INT offset
= REG_OFFSET (loc
);
961 decl
= var_debug_decl (decl
);
963 clobber_variable_part (set
, NULL
, decl
, offset
, NULL
);
966 for (node
= *reg
; node
; node
= next
)
969 delete_variable_part (set
, node
->loc
, node
->decl
, node
->offset
);
970 pool_free (attrs_pool
, node
);
975 /* Delete content of register with number REGNO in dataflow set SET. */
978 var_regno_delete (dataflow_set
*set
, int regno
)
980 attrs
*reg
= &set
->regs
[regno
];
983 for (node
= *reg
; node
; node
= next
)
986 delete_variable_part (set
, node
->loc
, node
->decl
, node
->offset
);
987 pool_free (attrs_pool
, node
);
992 /* Set the location part of variable MEM_EXPR (LOC) in dataflow set
994 Adjust the address first if it is stack pointer based. */
997 var_mem_set (dataflow_set
*set
, rtx loc
, enum var_init_status initialized
,
1000 tree decl
= MEM_EXPR (loc
);
1001 HOST_WIDE_INT offset
= INT_MEM_OFFSET (loc
);
1003 decl
= var_debug_decl (decl
);
1005 set_variable_part (set
, loc
, decl
, offset
, initialized
, set_src
);
1008 /* Delete and set the location part of variable MEM_EXPR (LOC) in
1009 dataflow set SET to LOC. If MODIFY is true, any other live copies
1010 of the same variable part are also deleted from the dataflow set,
1011 otherwise the variable part is assumed to be copied from another
1012 location holding the same part.
1013 Adjust the address first if it is stack pointer based. */
1016 var_mem_delete_and_set (dataflow_set
*set
, rtx loc
, bool modify
,
1017 enum var_init_status initialized
, rtx set_src
)
1019 tree decl
= MEM_EXPR (loc
);
1020 HOST_WIDE_INT offset
= INT_MEM_OFFSET (loc
);
1022 decl
= var_debug_decl (decl
);
1024 if (initialized
== VAR_INIT_STATUS_UNKNOWN
)
1025 initialized
= get_init_value (set
, loc
, decl
);
1028 clobber_variable_part (set
, NULL
, decl
, offset
, set_src
);
1029 var_mem_set (set
, loc
, initialized
, set_src
);
1032 /* Delete the location part LOC from dataflow set SET. If CLOBBER is
1033 true, also delete any other live copies of the same variable part.
1034 Adjust the address first if it is stack pointer based. */
1037 var_mem_delete (dataflow_set
*set
, rtx loc
, bool clobber
)
1039 tree decl
= MEM_EXPR (loc
);
1040 HOST_WIDE_INT offset
= INT_MEM_OFFSET (loc
);
1042 decl
= var_debug_decl (decl
);
1044 clobber_variable_part (set
, NULL
, decl
, offset
, NULL
);
1045 delete_variable_part (set
, loc
, decl
, offset
);
1048 /* Initialize dataflow set SET to be empty.
1049 VARS_SIZE is the initial size of hash table VARS. */
1052 dataflow_set_init (dataflow_set
*set
, int vars_size
)
1054 init_attrs_list_set (set
->regs
);
1055 set
->vars
= htab_create (vars_size
, variable_htab_hash
, variable_htab_eq
,
1056 variable_htab_free
);
1057 set
->stack_adjust
= 0;
1060 /* Delete the contents of dataflow set SET. */
1063 dataflow_set_clear (dataflow_set
*set
)
1067 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1068 attrs_list_clear (&set
->regs
[i
]);
1070 vars_clear (set
->vars
);
1073 /* Copy the contents of dataflow set SRC to DST. */
1076 dataflow_set_copy (dataflow_set
*dst
, dataflow_set
*src
)
1080 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1081 attrs_list_copy (&dst
->regs
[i
], src
->regs
[i
]);
1083 vars_copy (dst
->vars
, src
->vars
);
1084 dst
->stack_adjust
= src
->stack_adjust
;
1087 /* Information for merging lists of locations for a given offset of variable.
1089 struct variable_union_info
1091 /* Node of the location chain. */
1094 /* The sum of positions in the input chains. */
1097 /* The position in the chains of SRC and DST dataflow sets. */
1102 /* Compare function for qsort, order the structures by POS element. */
1105 variable_union_info_cmp_pos (const void *n1
, const void *n2
)
1107 const struct variable_union_info
*const i1
=
1108 (const struct variable_union_info
*) n1
;
1109 const struct variable_union_info
*const i2
=
1110 ( const struct variable_union_info
*) n2
;
1112 if (i1
->pos
!= i2
->pos
)
1113 return i1
->pos
- i2
->pos
;
1115 return (i1
->pos_dst
- i2
->pos_dst
);
1118 /* Compute union of location parts of variable *SLOT and the same variable
1119 from hash table DATA. Compute "sorted" union of the location chains
1120 for common offsets, i.e. the locations of a variable part are sorted by
1121 a priority where the priority is the sum of the positions in the 2 chains
1122 (if a location is only in one list the position in the second list is
1123 defined to be larger than the length of the chains).
1124 When we are updating the location parts the newest location is in the
1125 beginning of the chain, so when we do the described "sorted" union
1126 we keep the newest locations in the beginning. */
1129 variable_union (void **slot
, void *data
)
1131 variable src
, dst
, *dstp
;
1132 dataflow_set
*set
= (dataflow_set
*) data
;
1135 src
= *(variable
*) slot
;
1136 dstp
= (variable
*) htab_find_slot_with_hash (set
->vars
, src
->decl
,
1137 VARIABLE_HASH_VAL (src
->decl
),
1143 /* If CUR_LOC of some variable part is not the first element of
1144 the location chain we are going to change it so we have to make
1145 a copy of the variable. */
1146 for (k
= 0; k
< src
->n_var_parts
; k
++)
1148 gcc_assert (!src
->var_part
[k
].loc_chain
1149 == !src
->var_part
[k
].cur_loc
);
1150 if (src
->var_part
[k
].loc_chain
)
1152 gcc_assert (src
->var_part
[k
].cur_loc
);
1153 if (src
->var_part
[k
].cur_loc
!= src
->var_part
[k
].loc_chain
->loc
)
1157 if (k
< src
->n_var_parts
)
1159 enum var_init_status status
= VAR_INIT_STATUS_UNKNOWN
;
1161 if (! flag_var_tracking_uninit
)
1162 status
= VAR_INIT_STATUS_INITIALIZED
;
1164 unshare_variable (set
, src
, status
);
1169 /* Continue traversing the hash table. */
1175 gcc_assert (src
->n_var_parts
);
1177 /* Count the number of location parts, result is K. */
1178 for (i
= 0, j
= 0, k
= 0;
1179 i
< src
->n_var_parts
&& j
< dst
->n_var_parts
; k
++)
1181 if (src
->var_part
[i
].offset
== dst
->var_part
[j
].offset
)
1186 else if (src
->var_part
[i
].offset
< dst
->var_part
[j
].offset
)
1191 k
+= src
->n_var_parts
- i
;
1192 k
+= dst
->n_var_parts
- j
;
1194 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
1195 thus there are at most MAX_VAR_PARTS different offsets. */
1196 gcc_assert (k
<= MAX_VAR_PARTS
);
1198 if (dst
->refcount
> 1 && dst
->n_var_parts
!= k
)
1200 enum var_init_status status
= VAR_INIT_STATUS_UNKNOWN
;
1202 if (! flag_var_tracking_uninit
)
1203 status
= VAR_INIT_STATUS_INITIALIZED
;
1204 dst
= unshare_variable (set
, dst
, status
);
1207 i
= src
->n_var_parts
- 1;
1208 j
= dst
->n_var_parts
- 1;
1209 dst
->n_var_parts
= k
;
1211 for (k
--; k
>= 0; k
--)
1213 location_chain node
, node2
;
1215 if (i
>= 0 && j
>= 0
1216 && src
->var_part
[i
].offset
== dst
->var_part
[j
].offset
)
1218 /* Compute the "sorted" union of the chains, i.e. the locations which
1219 are in both chains go first, they are sorted by the sum of
1220 positions in the chains. */
1223 struct variable_union_info
*vui
;
1225 /* If DST is shared compare the location chains.
1226 If they are different we will modify the chain in DST with
1227 high probability so make a copy of DST. */
1228 if (dst
->refcount
> 1)
1230 for (node
= src
->var_part
[i
].loc_chain
,
1231 node2
= dst
->var_part
[j
].loc_chain
; node
&& node2
;
1232 node
= node
->next
, node2
= node2
->next
)
1234 if (!((REG_P (node2
->loc
)
1235 && REG_P (node
->loc
)
1236 && REGNO (node2
->loc
) == REGNO (node
->loc
))
1237 || rtx_equal_p (node2
->loc
, node
->loc
)))
1239 if (node2
->init
< node
->init
)
1240 node2
->init
= node
->init
;
1245 dst
= unshare_variable (set
, dst
, VAR_INIT_STATUS_UNKNOWN
);
1249 for (node
= src
->var_part
[i
].loc_chain
; node
; node
= node
->next
)
1252 for (node
= dst
->var_part
[j
].loc_chain
; node
; node
= node
->next
)
1254 vui
= XCNEWVEC (struct variable_union_info
, src_l
+ dst_l
);
1256 /* Fill in the locations from DST. */
1257 for (node
= dst
->var_part
[j
].loc_chain
, jj
= 0; node
;
1258 node
= node
->next
, jj
++)
1261 vui
[jj
].pos_dst
= jj
;
1263 /* Value larger than a sum of 2 valid positions. */
1264 vui
[jj
].pos_src
= src_l
+ dst_l
;
1267 /* Fill in the locations from SRC. */
1269 for (node
= src
->var_part
[i
].loc_chain
, ii
= 0; node
;
1270 node
= node
->next
, ii
++)
1272 /* Find location from NODE. */
1273 for (jj
= 0; jj
< dst_l
; jj
++)
1275 if ((REG_P (vui
[jj
].lc
->loc
)
1276 && REG_P (node
->loc
)
1277 && REGNO (vui
[jj
].lc
->loc
) == REGNO (node
->loc
))
1278 || rtx_equal_p (vui
[jj
].lc
->loc
, node
->loc
))
1280 vui
[jj
].pos_src
= ii
;
1284 if (jj
>= dst_l
) /* The location has not been found. */
1286 location_chain new_node
;
1288 /* Copy the location from SRC. */
1289 new_node
= (location_chain
) pool_alloc (loc_chain_pool
);
1290 new_node
->loc
= node
->loc
;
1291 new_node
->init
= node
->init
;
1292 if (!node
->set_src
|| MEM_P (node
->set_src
))
1293 new_node
->set_src
= NULL
;
1295 new_node
->set_src
= node
->set_src
;
1296 vui
[n
].lc
= new_node
;
1297 vui
[n
].pos_src
= ii
;
1298 vui
[n
].pos_dst
= src_l
+ dst_l
;
1303 for (ii
= 0; ii
< src_l
+ dst_l
; ii
++)
1304 vui
[ii
].pos
= vui
[ii
].pos_src
+ vui
[ii
].pos_dst
;
1306 qsort (vui
, n
, sizeof (struct variable_union_info
),
1307 variable_union_info_cmp_pos
);
1309 /* Reconnect the nodes in sorted order. */
1310 for (ii
= 1; ii
< n
; ii
++)
1311 vui
[ii
- 1].lc
->next
= vui
[ii
].lc
;
1312 vui
[n
- 1].lc
->next
= NULL
;
1314 dst
->var_part
[k
].loc_chain
= vui
[0].lc
;
1315 dst
->var_part
[k
].offset
= dst
->var_part
[j
].offset
;
1321 else if ((i
>= 0 && j
>= 0
1322 && src
->var_part
[i
].offset
< dst
->var_part
[j
].offset
)
1325 dst
->var_part
[k
] = dst
->var_part
[j
];
1328 else if ((i
>= 0 && j
>= 0
1329 && src
->var_part
[i
].offset
> dst
->var_part
[j
].offset
)
1332 location_chain
*nextp
;
1334 /* Copy the chain from SRC. */
1335 nextp
= &dst
->var_part
[k
].loc_chain
;
1336 for (node
= src
->var_part
[i
].loc_chain
; node
; node
= node
->next
)
1338 location_chain new_lc
;
1340 new_lc
= (location_chain
) pool_alloc (loc_chain_pool
);
1341 new_lc
->next
= NULL
;
1342 new_lc
->init
= node
->init
;
1343 if (!node
->set_src
|| MEM_P (node
->set_src
))
1344 new_lc
->set_src
= NULL
;
1346 new_lc
->set_src
= node
->set_src
;
1347 new_lc
->loc
= node
->loc
;
1350 nextp
= &new_lc
->next
;
1353 dst
->var_part
[k
].offset
= src
->var_part
[i
].offset
;
1357 /* We are at the basic block boundary when computing union
1358 so set the CUR_LOC to be the first element of the chain. */
1359 if (dst
->var_part
[k
].loc_chain
)
1360 dst
->var_part
[k
].cur_loc
= dst
->var_part
[k
].loc_chain
->loc
;
1362 dst
->var_part
[k
].cur_loc
= NULL
;
1365 for (i
= 0; i
< src
->n_var_parts
&& i
< dst
->n_var_parts
; i
++)
1367 location_chain node
, node2
;
1368 for (node
= src
->var_part
[i
].loc_chain
; node
; node
= node
->next
)
1369 for (node2
= dst
->var_part
[i
].loc_chain
; node2
; node2
= node2
->next
)
1370 if (rtx_equal_p (node
->loc
, node2
->loc
))
1372 if (node
->init
> node2
->init
)
1373 node2
->init
= node
->init
;
1377 /* Continue traversing the hash table. */
1381 /* Compute union of dataflow sets SRC and DST and store it to DST. */
1384 dataflow_set_union (dataflow_set
*dst
, dataflow_set
*src
)
1388 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1389 attrs_list_union (&dst
->regs
[i
], src
->regs
[i
]);
1391 htab_traverse (src
->vars
, variable_union
, dst
);
1394 /* Flag whether two dataflow sets being compared contain different data. */
1396 dataflow_set_different_value
;
1399 variable_part_different_p (variable_part
*vp1
, variable_part
*vp2
)
1401 location_chain lc1
, lc2
;
1403 for (lc1
= vp1
->loc_chain
; lc1
; lc1
= lc1
->next
)
1405 for (lc2
= vp2
->loc_chain
; lc2
; lc2
= lc2
->next
)
1407 if (REG_P (lc1
->loc
) && REG_P (lc2
->loc
))
1409 if (REGNO (lc1
->loc
) == REGNO (lc2
->loc
))
1412 if (rtx_equal_p (lc1
->loc
, lc2
->loc
))
1421 /* Return true if variables VAR1 and VAR2 are different.
1422 If COMPARE_CURRENT_LOCATION is true compare also the cur_loc of each
1426 variable_different_p (variable var1
, variable var2
,
1427 bool compare_current_location
)
1434 if (var1
->n_var_parts
!= var2
->n_var_parts
)
1437 for (i
= 0; i
< var1
->n_var_parts
; i
++)
1439 if (var1
->var_part
[i
].offset
!= var2
->var_part
[i
].offset
)
1441 if (compare_current_location
)
1443 if (!((REG_P (var1
->var_part
[i
].cur_loc
)
1444 && REG_P (var2
->var_part
[i
].cur_loc
)
1445 && (REGNO (var1
->var_part
[i
].cur_loc
)
1446 == REGNO (var2
->var_part
[i
].cur_loc
)))
1447 || rtx_equal_p (var1
->var_part
[i
].cur_loc
,
1448 var2
->var_part
[i
].cur_loc
)))
1451 if (variable_part_different_p (&var1
->var_part
[i
], &var2
->var_part
[i
]))
1453 if (variable_part_different_p (&var2
->var_part
[i
], &var1
->var_part
[i
]))
1459 /* Compare variable *SLOT with the same variable in hash table DATA
1460 and set DATAFLOW_SET_DIFFERENT_VALUE if they are different. */
1463 dataflow_set_different_1 (void **slot
, void *data
)
1465 htab_t htab
= (htab_t
) data
;
1466 variable var1
, var2
;
1468 var1
= *(variable
*) slot
;
1469 var2
= (variable
) htab_find_with_hash (htab
, var1
->decl
,
1470 VARIABLE_HASH_VAL (var1
->decl
));
1473 dataflow_set_different_value
= true;
1475 /* Stop traversing the hash table. */
1479 if (variable_different_p (var1
, var2
, false))
1481 dataflow_set_different_value
= true;
1483 /* Stop traversing the hash table. */
1487 /* Continue traversing the hash table. */
1491 /* Compare variable *SLOT with the same variable in hash table DATA
1492 and set DATAFLOW_SET_DIFFERENT_VALUE if they are different. */
1495 dataflow_set_different_2 (void **slot
, void *data
)
1497 htab_t htab
= (htab_t
) data
;
1498 variable var1
, var2
;
1500 var1
= *(variable
*) slot
;
1501 var2
= (variable
) htab_find_with_hash (htab
, var1
->decl
,
1502 VARIABLE_HASH_VAL (var1
->decl
));
1505 dataflow_set_different_value
= true;
1507 /* Stop traversing the hash table. */
1511 /* If both variables are defined they have been already checked for
1513 gcc_assert (!variable_different_p (var1
, var2
, false));
1515 /* Continue traversing the hash table. */
1519 /* Return true if dataflow sets OLD_SET and NEW_SET differ. */
1522 dataflow_set_different (dataflow_set
*old_set
, dataflow_set
*new_set
)
1524 dataflow_set_different_value
= false;
1526 htab_traverse (old_set
->vars
, dataflow_set_different_1
, new_set
->vars
);
1527 if (!dataflow_set_different_value
)
1529 /* We have compared the variables which are in both hash tables
1530 so now only check whether there are some variables in NEW_SET->VARS
1531 which are not in OLD_SET->VARS. */
1532 htab_traverse (new_set
->vars
, dataflow_set_different_2
, old_set
->vars
);
1534 return dataflow_set_different_value
;
1537 /* Free the contents of dataflow set SET. */
1540 dataflow_set_destroy (dataflow_set
*set
)
1544 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1545 attrs_list_clear (&set
->regs
[i
]);
1547 htab_delete (set
->vars
);
1551 /* Return true if RTL X contains a SYMBOL_REF. */
1554 contains_symbol_ref (rtx x
)
1563 code
= GET_CODE (x
);
1564 if (code
== SYMBOL_REF
)
1567 fmt
= GET_RTX_FORMAT (code
);
1568 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1572 if (contains_symbol_ref (XEXP (x
, i
)))
1575 else if (fmt
[i
] == 'E')
1578 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1579 if (contains_symbol_ref (XVECEXP (x
, i
, j
)))
1587 /* Shall EXPR be tracked? */
1590 track_expr_p (tree expr
)
1595 /* If EXPR is not a parameter or a variable do not track it. */
1596 if (TREE_CODE (expr
) != VAR_DECL
&& TREE_CODE (expr
) != PARM_DECL
)
1599 /* It also must have a name... */
1600 if (!DECL_NAME (expr
))
1603 /* ... and a RTL assigned to it. */
1604 decl_rtl
= DECL_RTL_IF_SET (expr
);
1608 /* If this expression is really a debug alias of some other declaration, we
1609 don't need to track this expression if the ultimate declaration is
1612 if (DECL_DEBUG_EXPR_IS_FROM (realdecl
) && DECL_DEBUG_EXPR (realdecl
))
1614 realdecl
= DECL_DEBUG_EXPR (realdecl
);
1615 /* ??? We don't yet know how to emit DW_OP_piece for variable
1616 that has been SRA'ed. */
1617 if (!DECL_P (realdecl
))
1621 /* Do not track EXPR if REALDECL it should be ignored for debugging
1623 if (DECL_IGNORED_P (realdecl
))
1626 /* Do not track global variables until we are able to emit correct location
1628 if (TREE_STATIC (realdecl
))
1631 /* When the EXPR is a DECL for alias of some variable (see example)
1632 the TREE_STATIC flag is not used. Disable tracking all DECLs whose
1633 DECL_RTL contains SYMBOL_REF.
1636 extern char **_dl_argv_internal __attribute__ ((alias ("_dl_argv")));
1639 if (MEM_P (decl_rtl
)
1640 && contains_symbol_ref (XEXP (decl_rtl
, 0)))
1643 /* If RTX is a memory it should not be very large (because it would be
1644 an array or struct). */
1645 if (MEM_P (decl_rtl
))
1647 /* Do not track structures and arrays. */
1648 if (GET_MODE (decl_rtl
) == BLKmode
1649 || AGGREGATE_TYPE_P (TREE_TYPE (realdecl
)))
1651 if (MEM_SIZE (decl_rtl
)
1652 && INTVAL (MEM_SIZE (decl_rtl
)) > MAX_VAR_PARTS
)
1659 /* Determine whether a given LOC refers to the same variable part as
1663 same_variable_part_p (rtx loc
, tree expr
, HOST_WIDE_INT offset
)
1666 HOST_WIDE_INT offset2
;
1668 if (! DECL_P (expr
))
1673 expr2
= REG_EXPR (loc
);
1674 offset2
= REG_OFFSET (loc
);
1676 else if (MEM_P (loc
))
1678 expr2
= MEM_EXPR (loc
);
1679 offset2
= INT_MEM_OFFSET (loc
);
1684 if (! expr2
|| ! DECL_P (expr2
))
1687 expr
= var_debug_decl (expr
);
1688 expr2
= var_debug_decl (expr2
);
1690 return (expr
== expr2
&& offset
== offset2
);
1693 /* LOC is a REG or MEM that we would like to track if possible.
1694 If EXPR is null, we don't know what expression LOC refers to,
1695 otherwise it refers to EXPR + OFFSET. STORE_REG_P is true if
1696 LOC is an lvalue register.
1698 Return true if EXPR is nonnull and if LOC, or some lowpart of it,
1699 is something we can track. When returning true, store the mode of
1700 the lowpart we can track in *MODE_OUT (if nonnull) and its offset
1701 from EXPR in *OFFSET_OUT (if nonnull). */
1704 track_loc_p (rtx loc
, tree expr
, HOST_WIDE_INT offset
, bool store_reg_p
,
1705 enum machine_mode
*mode_out
, HOST_WIDE_INT
*offset_out
)
1707 enum machine_mode mode
;
1709 if (expr
== NULL
|| !track_expr_p (expr
))
1712 /* If REG was a paradoxical subreg, its REG_ATTRS will describe the
1713 whole subreg, but only the old inner part is really relevant. */
1714 mode
= GET_MODE (loc
);
1715 if (REG_P (loc
) && !HARD_REGISTER_NUM_P (ORIGINAL_REGNO (loc
)))
1717 enum machine_mode pseudo_mode
;
1719 pseudo_mode
= PSEUDO_REGNO_MODE (ORIGINAL_REGNO (loc
));
1720 if (GET_MODE_SIZE (mode
) > GET_MODE_SIZE (pseudo_mode
))
1722 offset
+= byte_lowpart_offset (pseudo_mode
, mode
);
1727 /* If LOC is a paradoxical lowpart of EXPR, refer to EXPR itself.
1728 Do the same if we are storing to a register and EXPR occupies
1729 the whole of register LOC; in that case, the whole of EXPR is
1730 being changed. We exclude complex modes from the second case
1731 because the real and imaginary parts are represented as separate
1732 pseudo registers, even if the whole complex value fits into one
1734 if ((GET_MODE_SIZE (mode
) > GET_MODE_SIZE (DECL_MODE (expr
))
1736 && !COMPLEX_MODE_P (DECL_MODE (expr
))
1737 && hard_regno_nregs
[REGNO (loc
)][DECL_MODE (expr
)] == 1))
1738 && offset
+ byte_lowpart_offset (DECL_MODE (expr
), mode
) == 0)
1740 mode
= DECL_MODE (expr
);
1744 if (offset
< 0 || offset
>= MAX_VAR_PARTS
)
1750 *offset_out
= offset
;
1754 /* Return the MODE lowpart of LOC, or null if LOC is not something we
1755 want to track. When returning nonnull, make sure that the attributes
1756 on the returned value are updated. */
1759 var_lowpart (enum machine_mode mode
, rtx loc
)
1761 unsigned int offset
, reg_offset
, regno
;
1763 if (!REG_P (loc
) && !MEM_P (loc
))
1766 if (GET_MODE (loc
) == mode
)
1769 offset
= byte_lowpart_offset (mode
, GET_MODE (loc
));
1772 return adjust_address_nv (loc
, mode
, offset
);
1774 reg_offset
= subreg_lowpart_offset (mode
, GET_MODE (loc
));
1775 regno
= REGNO (loc
) + subreg_regno_offset (REGNO (loc
), GET_MODE (loc
),
1777 return gen_rtx_REG_offset (loc
, mode
, regno
, offset
);
1780 /* Count uses (register and memory references) LOC which will be tracked.
1781 INSN is instruction which the LOC is part of. */
1784 count_uses (rtx
*loc
, void *insn
)
1786 basic_block bb
= BLOCK_FOR_INSN ((rtx
) insn
);
1790 gcc_assert (REGNO (*loc
) < FIRST_PSEUDO_REGISTER
);
1793 else if (MEM_P (*loc
)
1794 && track_loc_p (*loc
, MEM_EXPR (*loc
), INT_MEM_OFFSET (*loc
),
1803 /* Helper function for finding all uses of REG/MEM in X in insn INSN. */
1806 count_uses_1 (rtx
*x
, void *insn
)
1808 for_each_rtx (x
, count_uses
, insn
);
1811 /* Count stores (register and memory references) LOC which will be tracked.
1812 INSN is instruction which the LOC is part of. */
1815 count_stores (rtx loc
, const_rtx expr ATTRIBUTE_UNUSED
, void *insn
)
1817 count_uses (&loc
, insn
);
1820 /* Add uses (register and memory references) LOC which will be tracked
1821 to VTI (bb)->mos. INSN is instruction which the LOC is part of. */
1824 add_uses (rtx
*loc
, void *insn
)
1826 enum machine_mode mode
;
1830 basic_block bb
= BLOCK_FOR_INSN ((rtx
) insn
);
1831 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
1833 if (track_loc_p (*loc
, REG_EXPR (*loc
), REG_OFFSET (*loc
),
1834 false, &mode
, NULL
))
1837 mo
->u
.loc
= var_lowpart (mode
, *loc
);
1841 mo
->type
= MO_USE_NO_VAR
;
1844 mo
->insn
= (rtx
) insn
;
1846 else if (MEM_P (*loc
)
1847 && track_loc_p (*loc
, MEM_EXPR (*loc
), INT_MEM_OFFSET (*loc
),
1848 false, &mode
, NULL
))
1850 basic_block bb
= BLOCK_FOR_INSN ((rtx
) insn
);
1851 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
1854 mo
->u
.loc
= var_lowpart (mode
, *loc
);
1855 mo
->insn
= (rtx
) insn
;
1861 /* Helper function for finding all uses of REG/MEM in X in insn INSN. */
1864 add_uses_1 (rtx
*x
, void *insn
)
1866 for_each_rtx (x
, add_uses
, insn
);
1869 /* Add stores (register and memory references) LOC which will be tracked
1870 to VTI (bb)->mos. EXPR is the RTL expression containing the store.
1871 INSN is instruction which the LOC is part of. */
1874 add_stores (rtx loc
, const_rtx expr
, void *insn
)
1876 enum machine_mode mode
;
1880 basic_block bb
= BLOCK_FOR_INSN ((rtx
) insn
);
1881 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
1883 if (GET_CODE (expr
) == CLOBBER
1884 || !track_loc_p (loc
, REG_EXPR (loc
), REG_OFFSET (loc
),
1887 mo
->type
= MO_CLOBBER
;
1894 if (GET_CODE (expr
) == SET
&& SET_DEST (expr
) == loc
)
1895 src
= var_lowpart (mode
, SET_SRC (expr
));
1896 loc
= var_lowpart (mode
, loc
);
1905 if (SET_SRC (expr
) != src
)
1906 expr
= gen_rtx_SET (VOIDmode
, loc
, src
);
1907 if (same_variable_part_p (src
, REG_EXPR (loc
), REG_OFFSET (loc
)))
1911 mo
->u
.loc
= CONST_CAST_RTX (expr
);
1914 mo
->insn
= (rtx
) insn
;
1916 else if (MEM_P (loc
)
1917 && track_loc_p (loc
, MEM_EXPR (loc
), INT_MEM_OFFSET (loc
),
1918 false, &mode
, NULL
))
1920 basic_block bb
= BLOCK_FOR_INSN ((rtx
) insn
);
1921 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
1923 if (GET_CODE (expr
) == CLOBBER
)
1925 mo
->type
= MO_CLOBBER
;
1926 mo
->u
.loc
= var_lowpart (mode
, loc
);
1932 if (GET_CODE (expr
) == SET
&& SET_DEST (expr
) == loc
)
1933 src
= var_lowpart (mode
, SET_SRC (expr
));
1934 loc
= var_lowpart (mode
, loc
);
1943 if (SET_SRC (expr
) != src
)
1944 expr
= gen_rtx_SET (VOIDmode
, loc
, src
);
1945 if (same_variable_part_p (SET_SRC (expr
),
1947 INT_MEM_OFFSET (loc
)))
1951 mo
->u
.loc
= CONST_CAST_RTX (expr
);
1954 mo
->insn
= (rtx
) insn
;
1958 static enum var_init_status
1959 find_src_status (dataflow_set
*in
, rtx src
)
1961 tree decl
= NULL_TREE
;
1962 enum var_init_status status
= VAR_INIT_STATUS_UNINITIALIZED
;
1964 if (! flag_var_tracking_uninit
)
1965 status
= VAR_INIT_STATUS_INITIALIZED
;
1967 if (src
&& REG_P (src
))
1968 decl
= var_debug_decl (REG_EXPR (src
));
1969 else if (src
&& MEM_P (src
))
1970 decl
= var_debug_decl (MEM_EXPR (src
));
1973 status
= get_init_value (in
, src
, decl
);
1978 /* SRC is the source of an assignment. Use SET to try to find what
1979 was ultimately assigned to SRC. Return that value if known,
1980 otherwise return SRC itself. */
1983 find_src_set_src (dataflow_set
*set
, rtx src
)
1985 tree decl
= NULL_TREE
; /* The variable being copied around. */
1986 rtx set_src
= NULL_RTX
; /* The value for "decl" stored in "src". */
1989 location_chain nextp
;
1993 if (src
&& REG_P (src
))
1994 decl
= var_debug_decl (REG_EXPR (src
));
1995 else if (src
&& MEM_P (src
))
1996 decl
= var_debug_decl (MEM_EXPR (src
));
2000 slot
= htab_find_slot_with_hash (set
->vars
, decl
,
2001 VARIABLE_HASH_VAL (decl
), NO_INSERT
);
2005 var
= *(variable
*) slot
;
2007 for (i
= 0; i
< var
->n_var_parts
&& !found
; i
++)
2008 for (nextp
= var
->var_part
[i
].loc_chain
; nextp
&& !found
;
2009 nextp
= nextp
->next
)
2010 if (rtx_equal_p (nextp
->loc
, src
))
2012 set_src
= nextp
->set_src
;
2022 /* Compute the changes of variable locations in the basic block BB. */
2025 compute_bb_dataflow (basic_block bb
)
2029 dataflow_set old_out
;
2030 dataflow_set
*in
= &VTI (bb
)->in
;
2031 dataflow_set
*out
= &VTI (bb
)->out
;
2033 dataflow_set_init (&old_out
, htab_elements (VTI (bb
)->out
.vars
) + 3);
2034 dataflow_set_copy (&old_out
, out
);
2035 dataflow_set_copy (out
, in
);
2037 n
= VTI (bb
)->n_mos
;
2038 for (i
= 0; i
< n
; i
++)
2040 switch (VTI (bb
)->mos
[i
].type
)
2043 for (r
= 0; r
< FIRST_PSEUDO_REGISTER
; r
++)
2044 if (TEST_HARD_REG_BIT (call_used_reg_set
, r
))
2045 var_regno_delete (out
, r
);
2050 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
2051 enum var_init_status status
= VAR_INIT_STATUS_UNINITIALIZED
;
2053 if (! flag_var_tracking_uninit
)
2054 status
= VAR_INIT_STATUS_INITIALIZED
;
2056 if (GET_CODE (loc
) == REG
)
2057 var_reg_set (out
, loc
, status
, NULL
);
2058 else if (GET_CODE (loc
) == MEM
)
2059 var_mem_set (out
, loc
, status
, NULL
);
2065 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
2068 if (GET_CODE (loc
) == SET
)
2070 set_src
= SET_SRC (loc
);
2071 loc
= SET_DEST (loc
);
2075 var_reg_delete_and_set (out
, loc
, true, VAR_INIT_STATUS_INITIALIZED
,
2077 else if (MEM_P (loc
))
2078 var_mem_delete_and_set (out
, loc
, true, VAR_INIT_STATUS_INITIALIZED
,
2085 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
2086 enum var_init_status src_status
;
2089 if (GET_CODE (loc
) == SET
)
2091 set_src
= SET_SRC (loc
);
2092 loc
= SET_DEST (loc
);
2095 if (! flag_var_tracking_uninit
)
2096 src_status
= VAR_INIT_STATUS_INITIALIZED
;
2098 src_status
= find_src_status (in
, set_src
);
2100 if (src_status
== VAR_INIT_STATUS_UNKNOWN
)
2101 src_status
= find_src_status (out
, set_src
);
2103 set_src
= find_src_set_src (in
, set_src
);
2106 var_reg_delete_and_set (out
, loc
, false, src_status
, set_src
);
2107 else if (MEM_P (loc
))
2108 var_mem_delete_and_set (out
, loc
, false, src_status
, set_src
);
2114 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
2117 var_reg_delete (out
, loc
, false);
2118 else if (MEM_P (loc
))
2119 var_mem_delete (out
, loc
, false);
2125 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
2128 var_reg_delete (out
, loc
, true);
2129 else if (MEM_P (loc
))
2130 var_mem_delete (out
, loc
, true);
2135 out
->stack_adjust
+= VTI (bb
)->mos
[i
].u
.adjust
;
2140 changed
= dataflow_set_different (&old_out
, out
);
2141 dataflow_set_destroy (&old_out
);
2145 /* Find the locations of variables in the whole function. */
2148 vt_find_locations (void)
2150 fibheap_t worklist
, pending
, fibheap_swap
;
2151 sbitmap visited
, in_worklist
, in_pending
, sbitmap_swap
;
2158 /* Compute reverse completion order of depth first search of the CFG
2159 so that the data-flow runs faster. */
2160 rc_order
= XNEWVEC (int, n_basic_blocks
- NUM_FIXED_BLOCKS
);
2161 bb_order
= XNEWVEC (int, last_basic_block
);
2162 pre_and_rev_post_order_compute (NULL
, rc_order
, false);
2163 for (i
= 0; i
< n_basic_blocks
- NUM_FIXED_BLOCKS
; i
++)
2164 bb_order
[rc_order
[i
]] = i
;
2167 worklist
= fibheap_new ();
2168 pending
= fibheap_new ();
2169 visited
= sbitmap_alloc (last_basic_block
);
2170 in_worklist
= sbitmap_alloc (last_basic_block
);
2171 in_pending
= sbitmap_alloc (last_basic_block
);
2172 sbitmap_zero (in_worklist
);
2175 fibheap_insert (pending
, bb_order
[bb
->index
], bb
);
2176 sbitmap_ones (in_pending
);
2178 while (!fibheap_empty (pending
))
2180 fibheap_swap
= pending
;
2182 worklist
= fibheap_swap
;
2183 sbitmap_swap
= in_pending
;
2184 in_pending
= in_worklist
;
2185 in_worklist
= sbitmap_swap
;
2187 sbitmap_zero (visited
);
2189 while (!fibheap_empty (worklist
))
2191 bb
= (basic_block
) fibheap_extract_min (worklist
);
2192 RESET_BIT (in_worklist
, bb
->index
);
2193 if (!TEST_BIT (visited
, bb
->index
))
2198 SET_BIT (visited
, bb
->index
);
2200 /* Calculate the IN set as union of predecessor OUT sets. */
2201 dataflow_set_clear (&VTI (bb
)->in
);
2202 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
2204 dataflow_set_union (&VTI (bb
)->in
, &VTI (e
->src
)->out
);
2207 changed
= compute_bb_dataflow (bb
);
2210 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2212 if (e
->dest
== EXIT_BLOCK_PTR
)
2218 if (TEST_BIT (visited
, e
->dest
->index
))
2220 if (!TEST_BIT (in_pending
, e
->dest
->index
))
2222 /* Send E->DEST to next round. */
2223 SET_BIT (in_pending
, e
->dest
->index
);
2224 fibheap_insert (pending
,
2225 bb_order
[e
->dest
->index
],
2229 else if (!TEST_BIT (in_worklist
, e
->dest
->index
))
2231 /* Add E->DEST to current round. */
2232 SET_BIT (in_worklist
, e
->dest
->index
);
2233 fibheap_insert (worklist
, bb_order
[e
->dest
->index
],
2243 fibheap_delete (worklist
);
2244 fibheap_delete (pending
);
2245 sbitmap_free (visited
);
2246 sbitmap_free (in_worklist
);
2247 sbitmap_free (in_pending
);
2250 /* Print the content of the LIST to dump file. */
2253 dump_attrs_list (attrs list
)
2255 for (; list
; list
= list
->next
)
2257 print_mem_expr (dump_file
, list
->decl
);
2258 fprintf (dump_file
, "+" HOST_WIDE_INT_PRINT_DEC
, list
->offset
);
2260 fprintf (dump_file
, "\n");
2263 /* Print the information about variable *SLOT to dump file. */
2266 dump_variable (void **slot
, void *data ATTRIBUTE_UNUSED
)
2268 variable var
= *(variable
*) slot
;
2270 location_chain node
;
2272 fprintf (dump_file
, " name: %s",
2273 IDENTIFIER_POINTER (DECL_NAME (var
->decl
)));
2274 if (dump_flags
& TDF_UID
)
2275 fprintf (dump_file
, " D.%u\n", DECL_UID (var
->decl
));
2277 fprintf (dump_file
, "\n");
2279 for (i
= 0; i
< var
->n_var_parts
; i
++)
2281 fprintf (dump_file
, " offset %ld\n",
2282 (long) var
->var_part
[i
].offset
);
2283 for (node
= var
->var_part
[i
].loc_chain
; node
; node
= node
->next
)
2285 fprintf (dump_file
, " ");
2286 if (node
->init
== VAR_INIT_STATUS_UNINITIALIZED
)
2287 fprintf (dump_file
, "[uninit]");
2288 print_rtl_single (dump_file
, node
->loc
);
2292 /* Continue traversing the hash table. */
2296 /* Print the information about variables from hash table VARS to dump file. */
2299 dump_vars (htab_t vars
)
2301 if (htab_elements (vars
) > 0)
2303 fprintf (dump_file
, "Variables:\n");
2304 htab_traverse (vars
, dump_variable
, NULL
);
2308 /* Print the dataflow set SET to dump file. */
2311 dump_dataflow_set (dataflow_set
*set
)
2315 fprintf (dump_file
, "Stack adjustment: " HOST_WIDE_INT_PRINT_DEC
"\n",
2317 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
2321 fprintf (dump_file
, "Reg %d:", i
);
2322 dump_attrs_list (set
->regs
[i
]);
2325 dump_vars (set
->vars
);
2326 fprintf (dump_file
, "\n");
2329 /* Print the IN and OUT sets for each basic block to dump file. */
2332 dump_dataflow_sets (void)
2338 fprintf (dump_file
, "\nBasic block %d:\n", bb
->index
);
2339 fprintf (dump_file
, "IN:\n");
2340 dump_dataflow_set (&VTI (bb
)->in
);
2341 fprintf (dump_file
, "OUT:\n");
2342 dump_dataflow_set (&VTI (bb
)->out
);
2346 /* Add variable VAR to the hash table of changed variables and
2347 if it has no locations delete it from hash table HTAB. */
2350 variable_was_changed (variable var
, htab_t htab
)
2352 hashval_t hash
= VARIABLE_HASH_VAL (var
->decl
);
2358 slot
= (variable
*) htab_find_slot_with_hash (changed_variables
,
2359 var
->decl
, hash
, INSERT
);
2361 if (htab
&& var
->n_var_parts
== 0)
2366 empty_var
= (variable
) pool_alloc (var_pool
);
2367 empty_var
->decl
= var
->decl
;
2368 empty_var
->refcount
= 1;
2369 empty_var
->n_var_parts
= 0;
2372 old
= htab_find_slot_with_hash (htab
, var
->decl
, hash
,
2375 htab_clear_slot (htab
, old
);
2385 if (var
->n_var_parts
== 0)
2387 void **slot
= htab_find_slot_with_hash (htab
, var
->decl
, hash
,
2390 htab_clear_slot (htab
, slot
);
2395 /* Look for the index in VAR->var_part corresponding to OFFSET.
2396 Return -1 if not found. If INSERTION_POINT is non-NULL, the
2397 referenced int will be set to the index that the part has or should
2398 have, if it should be inserted. */
2401 find_variable_location_part (variable var
, HOST_WIDE_INT offset
,
2402 int *insertion_point
)
2406 /* Find the location part. */
2408 high
= var
->n_var_parts
;
2411 pos
= (low
+ high
) / 2;
2412 if (var
->var_part
[pos
].offset
< offset
)
2419 if (insertion_point
)
2420 *insertion_point
= pos
;
2422 if (pos
< var
->n_var_parts
&& var
->var_part
[pos
].offset
== offset
)
2428 /* Set the part of variable's location in the dataflow set SET. The variable
2429 part is specified by variable's declaration DECL and offset OFFSET and the
2430 part's location by LOC. */
2433 set_variable_part (dataflow_set
*set
, rtx loc
, tree decl
, HOST_WIDE_INT offset
,
2434 enum var_init_status initialized
, rtx set_src
)
2437 location_chain node
, next
;
2438 location_chain
*nextp
;
2442 slot
= htab_find_slot_with_hash (set
->vars
, decl
,
2443 VARIABLE_HASH_VAL (decl
), INSERT
);
2446 /* Create new variable information. */
2447 var
= (variable
) pool_alloc (var_pool
);
2450 var
->n_var_parts
= 1;
2451 var
->var_part
[0].offset
= offset
;
2452 var
->var_part
[0].loc_chain
= NULL
;
2453 var
->var_part
[0].cur_loc
= NULL
;
2461 var
= (variable
) *slot
;
2463 pos
= find_variable_location_part (var
, offset
, &inspos
);
2467 node
= var
->var_part
[pos
].loc_chain
;
2470 && ((REG_P (node
->loc
) && REG_P (loc
)
2471 && REGNO (node
->loc
) == REGNO (loc
))
2472 || rtx_equal_p (node
->loc
, loc
)))
2474 /* LOC is in the beginning of the chain so we have nothing
2476 if (node
->init
< initialized
)
2477 node
->init
= initialized
;
2478 if (set_src
!= NULL
)
2479 node
->set_src
= set_src
;
2486 /* We have to make a copy of a shared variable. */
2487 if (var
->refcount
> 1)
2488 var
= unshare_variable (set
, var
, initialized
);
2493 /* We have not found the location part, new one will be created. */
2495 /* We have to make a copy of the shared variable. */
2496 if (var
->refcount
> 1)
2497 var
= unshare_variable (set
, var
, initialized
);
2499 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
2500 thus there are at most MAX_VAR_PARTS different offsets. */
2501 gcc_assert (var
->n_var_parts
< MAX_VAR_PARTS
);
2503 /* We have to move the elements of array starting at index
2504 inspos to the next position. */
2505 for (pos
= var
->n_var_parts
; pos
> inspos
; pos
--)
2506 var
->var_part
[pos
] = var
->var_part
[pos
- 1];
2509 var
->var_part
[pos
].offset
= offset
;
2510 var
->var_part
[pos
].loc_chain
= NULL
;
2511 var
->var_part
[pos
].cur_loc
= NULL
;
2515 /* Delete the location from the list. */
2516 nextp
= &var
->var_part
[pos
].loc_chain
;
2517 for (node
= var
->var_part
[pos
].loc_chain
; node
; node
= next
)
2520 if ((REG_P (node
->loc
) && REG_P (loc
)
2521 && REGNO (node
->loc
) == REGNO (loc
))
2522 || rtx_equal_p (node
->loc
, loc
))
2524 /* Save these values, to assign to the new node, before
2525 deleting this one. */
2526 if (node
->init
> initialized
)
2527 initialized
= node
->init
;
2528 if (node
->set_src
!= NULL
&& set_src
== NULL
)
2529 set_src
= node
->set_src
;
2530 pool_free (loc_chain_pool
, node
);
2535 nextp
= &node
->next
;
2538 /* Add the location to the beginning. */
2539 node
= (location_chain
) pool_alloc (loc_chain_pool
);
2541 node
->init
= initialized
;
2542 node
->set_src
= set_src
;
2543 node
->next
= var
->var_part
[pos
].loc_chain
;
2544 var
->var_part
[pos
].loc_chain
= node
;
2546 /* If no location was emitted do so. */
2547 if (var
->var_part
[pos
].cur_loc
== NULL
)
2549 var
->var_part
[pos
].cur_loc
= loc
;
2550 variable_was_changed (var
, set
->vars
);
2554 /* Remove all recorded register locations for the given variable part
2555 from dataflow set SET, except for those that are identical to loc.
2556 The variable part is specified by variable's declaration DECL and
2560 clobber_variable_part (dataflow_set
*set
, rtx loc
, tree decl
,
2561 HOST_WIDE_INT offset
, rtx set_src
)
2565 if (! decl
|| ! DECL_P (decl
))
2568 slot
= htab_find_slot_with_hash (set
->vars
, decl
, VARIABLE_HASH_VAL (decl
),
2572 variable var
= (variable
) *slot
;
2573 int pos
= find_variable_location_part (var
, offset
, NULL
);
2577 location_chain node
, next
;
2579 /* Remove the register locations from the dataflow set. */
2580 next
= var
->var_part
[pos
].loc_chain
;
2581 for (node
= next
; node
; node
= next
)
2584 if (node
->loc
!= loc
2585 && (!flag_var_tracking_uninit
2588 || !rtx_equal_p (set_src
, node
->set_src
)))
2590 if (REG_P (node
->loc
))
2595 /* Remove the variable part from the register's
2596 list, but preserve any other variable parts
2597 that might be regarded as live in that same
2599 anextp
= &set
->regs
[REGNO (node
->loc
)];
2600 for (anode
= *anextp
; anode
; anode
= anext
)
2602 anext
= anode
->next
;
2603 if (anode
->decl
== decl
2604 && anode
->offset
== offset
)
2606 pool_free (attrs_pool
, anode
);
2610 anextp
= &anode
->next
;
2614 delete_variable_part (set
, node
->loc
, decl
, offset
);
2621 /* Delete the part of variable's location from dataflow set SET. The variable
2622 part is specified by variable's declaration DECL and offset OFFSET and the
2623 part's location by LOC. */
2626 delete_variable_part (dataflow_set
*set
, rtx loc
, tree decl
,
2627 HOST_WIDE_INT offset
)
2631 slot
= htab_find_slot_with_hash (set
->vars
, decl
, VARIABLE_HASH_VAL (decl
),
2635 variable var
= (variable
) *slot
;
2636 int pos
= find_variable_location_part (var
, offset
, NULL
);
2640 location_chain node
, next
;
2641 location_chain
*nextp
;
2644 if (var
->refcount
> 1)
2646 /* If the variable contains the location part we have to
2647 make a copy of the variable. */
2648 for (node
= var
->var_part
[pos
].loc_chain
; node
;
2651 if ((REG_P (node
->loc
) && REG_P (loc
)
2652 && REGNO (node
->loc
) == REGNO (loc
))
2653 || rtx_equal_p (node
->loc
, loc
))
2655 enum var_init_status status
= VAR_INIT_STATUS_UNKNOWN
;
2656 if (! flag_var_tracking_uninit
)
2657 status
= VAR_INIT_STATUS_INITIALIZED
;
2658 var
= unshare_variable (set
, var
, status
);
2664 /* Delete the location part. */
2665 nextp
= &var
->var_part
[pos
].loc_chain
;
2666 for (node
= *nextp
; node
; node
= next
)
2669 if ((REG_P (node
->loc
) && REG_P (loc
)
2670 && REGNO (node
->loc
) == REGNO (loc
))
2671 || rtx_equal_p (node
->loc
, loc
))
2673 pool_free (loc_chain_pool
, node
);
2678 nextp
= &node
->next
;
2681 /* If we have deleted the location which was last emitted
2682 we have to emit new location so add the variable to set
2683 of changed variables. */
2684 if (var
->var_part
[pos
].cur_loc
2686 && REG_P (var
->var_part
[pos
].cur_loc
)
2687 && REGNO (loc
) == REGNO (var
->var_part
[pos
].cur_loc
))
2688 || rtx_equal_p (loc
, var
->var_part
[pos
].cur_loc
)))
2691 if (var
->var_part
[pos
].loc_chain
)
2692 var
->var_part
[pos
].cur_loc
= var
->var_part
[pos
].loc_chain
->loc
;
2697 if (var
->var_part
[pos
].loc_chain
== NULL
)
2700 while (pos
< var
->n_var_parts
)
2702 var
->var_part
[pos
] = var
->var_part
[pos
+ 1];
2707 variable_was_changed (var
, set
->vars
);
2712 /* Emit the NOTE_INSN_VAR_LOCATION for variable *VARP. DATA contains
2713 additional parameters: WHERE specifies whether the note shall be emitted
2714 before of after instruction INSN. */
2717 emit_note_insn_var_location (void **varp
, void *data
)
2719 variable var
= *(variable
*) varp
;
2720 rtx insn
= ((emit_note_data
*)data
)->insn
;
2721 enum emit_note_where where
= ((emit_note_data
*)data
)->where
;
2723 int i
, j
, n_var_parts
;
2725 enum var_init_status initialized
= VAR_INIT_STATUS_UNINITIALIZED
;
2726 HOST_WIDE_INT last_limit
;
2727 tree type_size_unit
;
2728 HOST_WIDE_INT offsets
[MAX_VAR_PARTS
];
2729 rtx loc
[MAX_VAR_PARTS
];
2731 gcc_assert (var
->decl
);
2733 if (! flag_var_tracking_uninit
)
2734 initialized
= VAR_INIT_STATUS_INITIALIZED
;
2739 for (i
= 0; i
< var
->n_var_parts
; i
++)
2741 enum machine_mode mode
, wider_mode
;
2743 if (last_limit
< var
->var_part
[i
].offset
)
2748 else if (last_limit
> var
->var_part
[i
].offset
)
2750 offsets
[n_var_parts
] = var
->var_part
[i
].offset
;
2751 loc
[n_var_parts
] = var
->var_part
[i
].loc_chain
->loc
;
2752 mode
= GET_MODE (loc
[n_var_parts
]);
2753 initialized
= var
->var_part
[i
].loc_chain
->init
;
2754 last_limit
= offsets
[n_var_parts
] + GET_MODE_SIZE (mode
);
2756 /* Attempt to merge adjacent registers or memory. */
2757 wider_mode
= GET_MODE_WIDER_MODE (mode
);
2758 for (j
= i
+ 1; j
< var
->n_var_parts
; j
++)
2759 if (last_limit
<= var
->var_part
[j
].offset
)
2761 if (j
< var
->n_var_parts
2762 && wider_mode
!= VOIDmode
2763 && GET_CODE (loc
[n_var_parts
])
2764 == GET_CODE (var
->var_part
[j
].loc_chain
->loc
)
2765 && mode
== GET_MODE (var
->var_part
[j
].loc_chain
->loc
)
2766 && last_limit
== var
->var_part
[j
].offset
)
2769 rtx loc2
= var
->var_part
[j
].loc_chain
->loc
;
2771 if (REG_P (loc
[n_var_parts
])
2772 && hard_regno_nregs
[REGNO (loc
[n_var_parts
])][mode
] * 2
2773 == hard_regno_nregs
[REGNO (loc
[n_var_parts
])][wider_mode
]
2774 && end_hard_regno (mode
, REGNO (loc
[n_var_parts
]))
2777 if (! WORDS_BIG_ENDIAN
&& ! BYTES_BIG_ENDIAN
)
2778 new_loc
= simplify_subreg (wider_mode
, loc
[n_var_parts
],
2780 else if (WORDS_BIG_ENDIAN
&& BYTES_BIG_ENDIAN
)
2781 new_loc
= simplify_subreg (wider_mode
, loc2
, mode
, 0);
2784 if (!REG_P (new_loc
)
2785 || REGNO (new_loc
) != REGNO (loc
[n_var_parts
]))
2788 REG_ATTRS (new_loc
) = REG_ATTRS (loc
[n_var_parts
]);
2791 else if (MEM_P (loc
[n_var_parts
])
2792 && GET_CODE (XEXP (loc2
, 0)) == PLUS
2793 && GET_CODE (XEXP (XEXP (loc2
, 0), 0)) == REG
2794 && GET_CODE (XEXP (XEXP (loc2
, 0), 1)) == CONST_INT
)
2796 if ((GET_CODE (XEXP (loc
[n_var_parts
], 0)) == REG
2797 && rtx_equal_p (XEXP (loc
[n_var_parts
], 0),
2798 XEXP (XEXP (loc2
, 0), 0))
2799 && INTVAL (XEXP (XEXP (loc2
, 0), 1))
2800 == GET_MODE_SIZE (mode
))
2801 || (GET_CODE (XEXP (loc
[n_var_parts
], 0)) == PLUS
2802 && GET_CODE (XEXP (XEXP (loc
[n_var_parts
], 0), 1))
2804 && rtx_equal_p (XEXP (XEXP (loc
[n_var_parts
], 0), 0),
2805 XEXP (XEXP (loc2
, 0), 0))
2806 && INTVAL (XEXP (XEXP (loc
[n_var_parts
], 0), 1))
2807 + GET_MODE_SIZE (mode
)
2808 == INTVAL (XEXP (XEXP (loc2
, 0), 1))))
2809 new_loc
= adjust_address_nv (loc
[n_var_parts
],
2815 loc
[n_var_parts
] = new_loc
;
2817 last_limit
= offsets
[n_var_parts
] + GET_MODE_SIZE (mode
);
2823 type_size_unit
= TYPE_SIZE_UNIT (TREE_TYPE (var
->decl
));
2824 if ((unsigned HOST_WIDE_INT
) last_limit
< TREE_INT_CST_LOW (type_size_unit
))
2827 if (where
== EMIT_NOTE_AFTER_INSN
)
2828 note
= emit_note_after (NOTE_INSN_VAR_LOCATION
, insn
);
2830 note
= emit_note_before (NOTE_INSN_VAR_LOCATION
, insn
);
2832 if (! flag_var_tracking_uninit
)
2833 initialized
= VAR_INIT_STATUS_INITIALIZED
;
2837 NOTE_VAR_LOCATION (note
) = gen_rtx_VAR_LOCATION (VOIDmode
, var
->decl
,
2838 NULL_RTX
, (int) initialized
);
2840 else if (n_var_parts
== 1)
2843 = gen_rtx_EXPR_LIST (VOIDmode
, loc
[0], GEN_INT (offsets
[0]));
2845 NOTE_VAR_LOCATION (note
) = gen_rtx_VAR_LOCATION (VOIDmode
, var
->decl
,
2849 else if (n_var_parts
)
2853 for (i
= 0; i
< n_var_parts
; i
++)
2855 = gen_rtx_EXPR_LIST (VOIDmode
, loc
[i
], GEN_INT (offsets
[i
]));
2857 parallel
= gen_rtx_PARALLEL (VOIDmode
,
2858 gen_rtvec_v (n_var_parts
, loc
));
2859 NOTE_VAR_LOCATION (note
) = gen_rtx_VAR_LOCATION (VOIDmode
, var
->decl
,
2864 htab_clear_slot (changed_variables
, varp
);
2866 /* When there are no location parts the variable has been already
2867 removed from hash table and a new empty variable was created.
2868 Free the empty variable. */
2869 if (var
->n_var_parts
== 0)
2871 pool_free (var_pool
, var
);
2874 /* Continue traversing the hash table. */
2878 /* Emit NOTE_INSN_VAR_LOCATION note for each variable from a chain
2879 CHANGED_VARIABLES and delete this chain. WHERE specifies whether the notes
2880 shall be emitted before of after instruction INSN. */
2883 emit_notes_for_changes (rtx insn
, enum emit_note_where where
)
2885 emit_note_data data
;
2889 htab_traverse (changed_variables
, emit_note_insn_var_location
, &data
);
2892 /* Add variable *SLOT to the chain CHANGED_VARIABLES if it differs from the
2893 same variable in hash table DATA or is not there at all. */
2896 emit_notes_for_differences_1 (void **slot
, void *data
)
2898 htab_t new_vars
= (htab_t
) data
;
2899 variable old_var
, new_var
;
2901 old_var
= *(variable
*) slot
;
2902 new_var
= (variable
) htab_find_with_hash (new_vars
, old_var
->decl
,
2903 VARIABLE_HASH_VAL (old_var
->decl
));
2907 /* Variable has disappeared. */
2910 empty_var
= (variable
) pool_alloc (var_pool
);
2911 empty_var
->decl
= old_var
->decl
;
2912 empty_var
->refcount
= 1;
2913 empty_var
->n_var_parts
= 0;
2914 variable_was_changed (empty_var
, NULL
);
2916 else if (variable_different_p (old_var
, new_var
, true))
2918 variable_was_changed (new_var
, NULL
);
2921 /* Continue traversing the hash table. */
2925 /* Add variable *SLOT to the chain CHANGED_VARIABLES if it is not in hash
2929 emit_notes_for_differences_2 (void **slot
, void *data
)
2931 htab_t old_vars
= (htab_t
) data
;
2932 variable old_var
, new_var
;
2934 new_var
= *(variable
*) slot
;
2935 old_var
= (variable
) htab_find_with_hash (old_vars
, new_var
->decl
,
2936 VARIABLE_HASH_VAL (new_var
->decl
));
2939 /* Variable has appeared. */
2940 variable_was_changed (new_var
, NULL
);
2943 /* Continue traversing the hash table. */
2947 /* Emit notes before INSN for differences between dataflow sets OLD_SET and
2951 emit_notes_for_differences (rtx insn
, dataflow_set
*old_set
,
2952 dataflow_set
*new_set
)
2954 htab_traverse (old_set
->vars
, emit_notes_for_differences_1
, new_set
->vars
);
2955 htab_traverse (new_set
->vars
, emit_notes_for_differences_2
, old_set
->vars
);
2956 emit_notes_for_changes (insn
, EMIT_NOTE_BEFORE_INSN
);
2959 /* Emit the notes for changes of location parts in the basic block BB. */
2962 emit_notes_in_bb (basic_block bb
)
2967 dataflow_set_init (&set
, htab_elements (VTI (bb
)->in
.vars
) + 3);
2968 dataflow_set_copy (&set
, &VTI (bb
)->in
);
2970 for (i
= 0; i
< VTI (bb
)->n_mos
; i
++)
2972 rtx insn
= VTI (bb
)->mos
[i
].insn
;
2974 switch (VTI (bb
)->mos
[i
].type
)
2980 for (r
= 0; r
< FIRST_PSEUDO_REGISTER
; r
++)
2981 if (TEST_HARD_REG_BIT (call_used_reg_set
, r
))
2983 var_regno_delete (&set
, r
);
2985 emit_notes_for_changes (insn
, EMIT_NOTE_AFTER_INSN
);
2991 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
2993 enum var_init_status status
= VAR_INIT_STATUS_UNINITIALIZED
;
2994 if (! flag_var_tracking_uninit
)
2995 status
= VAR_INIT_STATUS_INITIALIZED
;
2996 if (GET_CODE (loc
) == REG
)
2997 var_reg_set (&set
, loc
, status
, NULL
);
2999 var_mem_set (&set
, loc
, status
, NULL
);
3001 emit_notes_for_changes (insn
, EMIT_NOTE_AFTER_INSN
);
3007 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
3010 if (GET_CODE (loc
) == SET
)
3012 set_src
= SET_SRC (loc
);
3013 loc
= SET_DEST (loc
);
3017 var_reg_delete_and_set (&set
, loc
, true, VAR_INIT_STATUS_INITIALIZED
,
3020 var_mem_delete_and_set (&set
, loc
, true, VAR_INIT_STATUS_INITIALIZED
,
3023 emit_notes_for_changes (NEXT_INSN (insn
), EMIT_NOTE_BEFORE_INSN
);
3029 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
3030 enum var_init_status src_status
;
3033 if (GET_CODE (loc
) == SET
)
3035 set_src
= SET_SRC (loc
);
3036 loc
= SET_DEST (loc
);
3039 src_status
= find_src_status (&set
, set_src
);
3040 set_src
= find_src_set_src (&set
, set_src
);
3043 var_reg_delete_and_set (&set
, loc
, false, src_status
, set_src
);
3045 var_mem_delete_and_set (&set
, loc
, false, src_status
, set_src
);
3047 emit_notes_for_changes (NEXT_INSN (insn
), EMIT_NOTE_BEFORE_INSN
);
3053 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
3056 var_reg_delete (&set
, loc
, false);
3058 var_mem_delete (&set
, loc
, false);
3060 emit_notes_for_changes (insn
, EMIT_NOTE_AFTER_INSN
);
3066 rtx loc
= VTI (bb
)->mos
[i
].u
.loc
;
3069 var_reg_delete (&set
, loc
, true);
3071 var_mem_delete (&set
, loc
, true);
3073 emit_notes_for_changes (NEXT_INSN (insn
), EMIT_NOTE_BEFORE_INSN
);
3078 set
.stack_adjust
+= VTI (bb
)->mos
[i
].u
.adjust
;
3082 dataflow_set_destroy (&set
);
3085 /* Emit notes for the whole function. */
3088 vt_emit_notes (void)
3091 dataflow_set
*last_out
;
3094 gcc_assert (!htab_elements (changed_variables
));
3096 /* Enable emitting notes by functions (mainly by set_variable_part and
3097 delete_variable_part). */
3100 dataflow_set_init (&empty
, 7);
3105 /* Emit the notes for changes of variable locations between two
3106 subsequent basic blocks. */
3107 emit_notes_for_differences (BB_HEAD (bb
), last_out
, &VTI (bb
)->in
);
3109 /* Emit the notes for the changes in the basic block itself. */
3110 emit_notes_in_bb (bb
);
3112 last_out
= &VTI (bb
)->out
;
3114 dataflow_set_destroy (&empty
);
3118 /* If there is a declaration and offset associated with register/memory RTL
3119 assign declaration to *DECLP and offset to *OFFSETP, and return true. */
3122 vt_get_decl_and_offset (rtx rtl
, tree
*declp
, HOST_WIDE_INT
*offsetp
)
3126 if (REG_ATTRS (rtl
))
3128 *declp
= REG_EXPR (rtl
);
3129 *offsetp
= REG_OFFSET (rtl
);
3133 else if (MEM_P (rtl
))
3135 if (MEM_ATTRS (rtl
))
3137 *declp
= MEM_EXPR (rtl
);
3138 *offsetp
= INT_MEM_OFFSET (rtl
);
3145 /* Insert function parameters to IN and OUT sets of ENTRY_BLOCK. */
3148 vt_add_function_parameters (void)
3152 for (parm
= DECL_ARGUMENTS (current_function_decl
);
3153 parm
; parm
= TREE_CHAIN (parm
))
3155 rtx decl_rtl
= DECL_RTL_IF_SET (parm
);
3156 rtx incoming
= DECL_INCOMING_RTL (parm
);
3158 enum machine_mode mode
;
3159 HOST_WIDE_INT offset
;
3162 if (TREE_CODE (parm
) != PARM_DECL
)
3165 if (!DECL_NAME (parm
))
3168 if (!decl_rtl
|| !incoming
)
3171 if (GET_MODE (decl_rtl
) == BLKmode
|| GET_MODE (incoming
) == BLKmode
)
3174 if (!vt_get_decl_and_offset (incoming
, &decl
, &offset
))
3176 if (!vt_get_decl_and_offset (decl_rtl
, &decl
, &offset
))
3178 offset
+= byte_lowpart_offset (GET_MODE (incoming
),
3179 GET_MODE (decl_rtl
));
3187 /* Assume that DECL_RTL was a pseudo that got spilled to
3188 memory. The spill slot sharing code will force the
3189 memory to reference spill_slot_decl (%sfp), so we don't
3190 match above. That's ok, the pseudo must have referenced
3191 the entire parameter, so just reset OFFSET. */
3192 gcc_assert (decl
== get_spill_slot_decl (false));
3196 if (!track_loc_p (incoming
, parm
, offset
, false, &mode
, &offset
))
3199 out
= &VTI (ENTRY_BLOCK_PTR
)->out
;
3201 if (REG_P (incoming
))
3203 incoming
= var_lowpart (mode
, incoming
);
3204 gcc_assert (REGNO (incoming
) < FIRST_PSEUDO_REGISTER
);
3205 attrs_list_insert (&out
->regs
[REGNO (incoming
)],
3206 parm
, offset
, incoming
);
3207 set_variable_part (out
, incoming
, parm
, offset
, VAR_INIT_STATUS_INITIALIZED
,
3210 else if (MEM_P (incoming
))
3212 incoming
= var_lowpart (mode
, incoming
);
3213 set_variable_part (out
, incoming
, parm
, offset
,
3214 VAR_INIT_STATUS_INITIALIZED
, NULL
);
3219 /* Allocate and initialize the data structures for variable tracking
3220 and parse the RTL to get the micro operations. */
3223 vt_initialize (void)
3227 alloc_aux_for_blocks (sizeof (struct variable_tracking_info_def
));
3232 HOST_WIDE_INT pre
, post
= 0;
3234 /* Count the number of micro operations. */
3235 VTI (bb
)->n_mos
= 0;
3236 for (insn
= BB_HEAD (bb
); insn
!= NEXT_INSN (BB_END (bb
));
3237 insn
= NEXT_INSN (insn
))
3241 if (!frame_pointer_needed
)
3243 insn_stack_adjust_offset_pre_post (insn
, &pre
, &post
);
3249 note_uses (&PATTERN (insn
), count_uses_1
, insn
);
3250 note_stores (PATTERN (insn
), count_stores
, insn
);
3256 /* Add the micro-operations to the array. */
3257 VTI (bb
)->mos
= XNEWVEC (micro_operation
, VTI (bb
)->n_mos
);
3258 VTI (bb
)->n_mos
= 0;
3259 for (insn
= BB_HEAD (bb
); insn
!= NEXT_INSN (BB_END (bb
));
3260 insn
= NEXT_INSN (insn
))
3266 if (!frame_pointer_needed
)
3268 insn_stack_adjust_offset_pre_post (insn
, &pre
, &post
);
3271 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
3273 mo
->type
= MO_ADJUST
;
3279 n1
= VTI (bb
)->n_mos
;
3280 note_uses (&PATTERN (insn
), add_uses_1
, insn
);
3281 n2
= VTI (bb
)->n_mos
- 1;
3283 /* Order the MO_USEs to be before MO_USE_NO_VARs. */
3286 while (n1
< n2
&& VTI (bb
)->mos
[n1
].type
== MO_USE
)
3288 while (n1
< n2
&& VTI (bb
)->mos
[n2
].type
== MO_USE_NO_VAR
)
3294 sw
= VTI (bb
)->mos
[n1
];
3295 VTI (bb
)->mos
[n1
] = VTI (bb
)->mos
[n2
];
3296 VTI (bb
)->mos
[n2
] = sw
;
3302 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
3308 n1
= VTI (bb
)->n_mos
;
3309 /* This will record NEXT_INSN (insn), such that we can
3310 insert notes before it without worrying about any
3311 notes that MO_USEs might emit after the insn. */
3312 note_stores (PATTERN (insn
), add_stores
, insn
);
3313 n2
= VTI (bb
)->n_mos
- 1;
3315 /* Order the MO_CLOBBERs to be before MO_SETs. */
3318 while (n1
< n2
&& VTI (bb
)->mos
[n1
].type
== MO_CLOBBER
)
3320 while (n1
< n2
&& (VTI (bb
)->mos
[n2
].type
== MO_SET
3321 || VTI (bb
)->mos
[n2
].type
== MO_COPY
))
3327 sw
= VTI (bb
)->mos
[n1
];
3328 VTI (bb
)->mos
[n1
] = VTI (bb
)->mos
[n2
];
3329 VTI (bb
)->mos
[n2
] = sw
;
3333 if (!frame_pointer_needed
&& post
)
3335 micro_operation
*mo
= VTI (bb
)->mos
+ VTI (bb
)->n_mos
++;
3337 mo
->type
= MO_ADJUST
;
3338 mo
->u
.adjust
= post
;
3345 /* Init the IN and OUT sets. */
3348 VTI (bb
)->visited
= false;
3349 dataflow_set_init (&VTI (bb
)->in
, 7);
3350 dataflow_set_init (&VTI (bb
)->out
, 7);
3353 attrs_pool
= create_alloc_pool ("attrs_def pool",
3354 sizeof (struct attrs_def
), 1024);
3355 var_pool
= create_alloc_pool ("variable_def pool",
3356 sizeof (struct variable_def
), 64);
3357 loc_chain_pool
= create_alloc_pool ("location_chain_def pool",
3358 sizeof (struct location_chain_def
),
3360 changed_variables
= htab_create (10, variable_htab_hash
, variable_htab_eq
,
3362 vt_add_function_parameters ();
3365 /* Free the data structures needed for variable tracking. */
3374 free (VTI (bb
)->mos
);
3379 dataflow_set_destroy (&VTI (bb
)->in
);
3380 dataflow_set_destroy (&VTI (bb
)->out
);
3382 free_aux_for_blocks ();
3383 free_alloc_pool (attrs_pool
);
3384 free_alloc_pool (var_pool
);
3385 free_alloc_pool (loc_chain_pool
);
3386 htab_delete (changed_variables
);
3389 /* The entry point to variable tracking pass. */
3392 variable_tracking_main (void)
3394 if (n_basic_blocks
> 500 && n_edges
/ n_basic_blocks
>= 20)
3397 mark_dfs_back_edges ();
3399 if (!frame_pointer_needed
)
3401 if (!vt_stack_adjustments ())
3408 vt_find_locations ();
3411 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3413 dump_dataflow_sets ();
3414 dump_flow_info (dump_file
, dump_flags
);
3422 gate_handle_var_tracking (void)
3424 return (flag_var_tracking
);
3429 struct rtl_opt_pass pass_variable_tracking
=
3433 "vartrack", /* name */
3434 gate_handle_var_tracking
, /* gate */
3435 variable_tracking_main
, /* execute */
3438 0, /* static_pass_number */
3439 TV_VAR_TRACKING
, /* tv_id */
3440 0, /* properties_required */
3441 0, /* properties_provided */
3442 0, /* properties_destroyed */
3443 0, /* todo_flags_start */
3444 TODO_dump_func
| TODO_verify_rtl_sharing
/* todo_flags_finish */