You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

183 lines
5.3KB

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