]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ddg.h
Update copyright years.
[thirdparty/gcc.git] / gcc / ddg.h
CommitLineData
d397e8c6 1/* DDG - Data Dependence Graph - interface.
8d9254fc 2 Copyright (C) 2004-2020 Free Software Foundation, Inc.
d397e8c6
MH
3 Contributed by Ayal Zaks and Mustafa Hagog <zaks,mustafa@il.ibm.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9dcd6f09 9Software Foundation; either version 3, or (at your option) any later
d397e8c6
MH
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
9dcd6f09
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
d397e8c6
MH
20
21#ifndef GCC_DDG_H
22#define GCC_DDG_H
23
59587b18 24/* For sbitmap. */
b8698a0f 25
d397e8c6
MH
26typedef struct ddg_node *ddg_node_ptr;
27typedef struct ddg_edge *ddg_edge_ptr;
28typedef struct ddg *ddg_ptr;
29typedef struct ddg_scc *ddg_scc_ptr;
30typedef struct ddg_all_sccs *ddg_all_sccs_ptr;
31
84562394
OE
32enum dep_type {TRUE_DEP, OUTPUT_DEP, ANTI_DEP};
33enum dep_data_type {REG_OR_MEM_DEP, REG_DEP, MEM_DEP, REG_AND_MEM_DEP};
d397e8c6
MH
34
35/* The following two macros enables direct access to the successors and
36 predecessors bitmaps held in each ddg_node. Do not make changes to
37 these bitmaps, unless you want to change the DDG. */
38#define NODE_SUCCESSORS(x) ((x)->successors)
39#define NODE_PREDECESSORS(x) ((x)->predecessors)
40
41/* A structure that represents a node in the DDG. */
42struct ddg_node
43{
44 /* Each node has a unique CUID index. These indices increase monotonically
45 (according to the order of the corresponding INSN in the BB), starting
46 from 0 with no gaps. */
47 int cuid;
48
49 /* The insn represented by the node. */
9774f20d 50 rtx_insn *insn;
d397e8c6 51
1ea7e6ad 52 /* A note preceding INSN (or INSN itself), such that all insns linked
d397e8c6
MH
53 from FIRST_NOTE until INSN (inclusive of both) are moved together
54 when reordering the insns. This takes care of notes that should
1ea7e6ad 55 continue to precede INSN. */
9774f20d 56 rtx_insn *first_note;
d397e8c6
MH
57
58 /* Incoming and outgoing dependency edges. */
59 ddg_edge_ptr in;
60 ddg_edge_ptr out;
61
62 /* Each bit corresponds to a ddg_node according to its cuid, and is
63 set iff the node is a successor/predecessor of "this" node. */
64 sbitmap successors;
65 sbitmap predecessors;
66
728c2e5e
RZ
67 /* Temporary array used for Floyd-Warshall algorithm to find
68 scc recurrence length. */
69 int *max_dist;
70
d397e8c6
MH
71 /* For general use by algorithms manipulating the ddg. */
72 union {
73 int count;
74 void *info;
75 } aux;
76};
77
78/* A structure that represents an edge in the DDG. */
79struct ddg_edge
80{
81 /* The source and destination nodes of the dependency edge. */
82 ddg_node_ptr src;
83 ddg_node_ptr dest;
84
85 /* TRUE, OUTPUT or ANTI dependency. */
86 dep_type type;
87
88 /* REG or MEM dependency. */
89 dep_data_type data_type;
90
61ada8ae 91 /* Latency of the dependency. */
d397e8c6
MH
92 int latency;
93
94 /* The distance: number of loop iterations the dependency crosses. */
95 int distance;
96
97 /* The following two fields are used to form a linked list of the in/out
98 going edges to/from each node. */
99 ddg_edge_ptr next_in;
100 ddg_edge_ptr next_out;
101
728c2e5e
RZ
102 /* Is true when edge is already in scc. */
103 bool in_scc;
d397e8c6
MH
104};
105
106/* This structure holds the Data Dependence Graph for a basic block. */
107struct ddg
108{
109 /* The basic block for which this DDG is built. */
110 basic_block bb;
111
112 /* Number of instructions in the basic block. */
113 int num_nodes;
114
115 /* Number of load/store instructions in the BB - statistics. */
116 int num_loads;
117 int num_stores;
118
b5b8b0ac
AO
119 /* Number of debug instructions in the BB. */
120 int num_debug;
121
d397e8c6
MH
122 /* This array holds the nodes in the graph; it is indexed by the node
123 cuid, which follows the order of the instructions in the BB. */
124 ddg_node_ptr nodes;
125
126 /* The branch closing the loop. */
127 ddg_node_ptr closing_branch;
128
129 /* Build dependence edges for closing_branch, when set. In certain cases,
130 the closing branch can be dealt with separately from the insns of the
131 loop, and then no such deps are needed. */
132 int closing_branch_deps;
133
134 /* Array and number of backarcs (edges with distance > 0) in the DDG. */
d397e8c6 135 int num_backarcs;
b5b8b0ac 136 ddg_edge_ptr *backarcs;
d397e8c6
MH
137};
138
139\f
140/* Holds information on an SCC (Strongly Connected Component) of the DDG. */
141struct ddg_scc
142{
143 /* A bitmap that represents the nodes of the DDG that are in the SCC. */
144 sbitmap nodes;
145
146 /* Array and number of backarcs (edges with distance > 0) in the SCC. */
147 ddg_edge_ptr *backarcs;
148 int num_backarcs;
149
150 /* The maximum of (total_latency/total_distance) over all cycles in SCC. */
151 int recurrence_length;
152};
153
154/* This structure holds the SCCs of the DDG. */
155struct ddg_all_sccs
156{
157 /* Array that holds the SCCs in the DDG, and their number. */
158 ddg_scc_ptr *sccs;
159 int num_sccs;
160
161 ddg_ptr ddg;
162};
163
164\f
6fb5fa3c 165ddg_ptr create_ddg (basic_block, int closing_branch_deps);
d397e8c6
MH
166void free_ddg (ddg_ptr);
167
168void print_ddg (FILE *, ddg_ptr);
169void vcg_print_ddg (FILE *, ddg_ptr);
170void print_ddg_edge (FILE *, ddg_edge_ptr);
8cec1624 171void print_sccs (FILE *, ddg_all_sccs_ptr, ddg_ptr);
d397e8c6 172
9774f20d 173ddg_node_ptr get_node_of_insn (ddg_ptr, rtx_insn *);
d397e8c6
MH
174
175void find_successors (sbitmap result, ddg_ptr, sbitmap);
176void find_predecessors (sbitmap result, ddg_ptr, sbitmap);
177
178ddg_all_sccs_ptr create_ddg_all_sccs (ddg_ptr);
179void free_ddg_all_sccs (ddg_all_sccs_ptr);
180
181int find_nodes_on_paths (sbitmap result, ddg_ptr, sbitmap from, sbitmap to);
d397e8c6 182
9774f20d 183bool autoinc_var_is_used_p (rtx_insn *, rtx_insn *);
d8edf83d 184
d397e8c6 185#endif /* GCC_DDG_H */