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.

1251 lines
47KB

  1. /* Form lists of pseudo register references for autoinc optimization
  2. for GNU compiler. This is part of flow optimization.
  3. Copyright (C) 1999-2020 Free Software Foundation, Inc.
  4. Originally contributed by Michael P. Hayes
  5. (m.hayes@elec.canterbury.ac.nz, mhayes@redhat.com)
  6. Major rewrite contributed by Danny Berlin (dberlin@dberlin.org)
  7. and Kenneth Zadeck (zadeck@naturalbridge.com).
  8. This file is part of GCC.
  9. GCC is free software; you can redistribute it and/or modify it under
  10. the terms of the GNU General Public License as published by the Free
  11. Software Foundation; either version 3, or (at your option) any later
  12. version.
  13. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  16. for more details.
  17. You should have received a copy of the GNU General Public License
  18. along with GCC; see the file COPYING3. If not see
  19. <http://www.gnu.org/licenses/>. */
  20. #ifndef GCC_DF_H
  21. #define GCC_DF_H
  22. #include "regset.h"
  23. #include "alloc-pool.h"
  24. #include "timevar.h"
  25. struct dataflow;
  26. class df_d;
  27. struct df_problem;
  28. struct df_link;
  29. struct df_insn_info;
  30. union df_ref_d;
  31. /* Data flow problems. All problems must have a unique id here. */
  32. /* Scanning is not really a dataflow problem, but it is useful to have
  33. the basic block functions in the vector so that things get done in
  34. a uniform manner. The last four problems can be added or deleted
  35. at any time are always defined (though LIVE is always there at -O2
  36. or higher); the others are always there. */
  37. enum df_problem_id
  38. {
  39. DF_SCAN,
  40. DF_LR, /* Live Registers backward. */
  41. DF_LIVE, /* Live Registers & Uninitialized Registers */
  42. DF_RD, /* Reaching Defs. */
  43. DF_CHAIN, /* Def-Use and/or Use-Def Chains. */
  44. DF_WORD_LR, /* Subreg tracking lr. */
  45. DF_NOTE, /* REG_DEAD and REG_UNUSED notes. */
  46. DF_MD, /* Multiple Definitions. */
  47. DF_MIR, /* Must-initialized Registers. */
  48. DF_LAST_PROBLEM_PLUS1
  49. };
  50. /* Dataflow direction. */
  51. enum df_flow_dir
  52. {
  53. DF_NONE,
  54. DF_FORWARD,
  55. DF_BACKWARD
  56. };
  57. /* Descriminator for the various df_ref types. */
  58. enum df_ref_class {DF_REF_BASE, DF_REF_ARTIFICIAL, DF_REF_REGULAR};
  59. /* The first of these us a set of a registers. The remaining three
  60. are all uses of a register (the mem_load and mem_store relate to
  61. how the register as an addressing operand). */
  62. enum df_ref_type {DF_REF_REG_DEF, DF_REF_REG_USE,
  63. DF_REF_REG_MEM_LOAD, DF_REF_REG_MEM_STORE};
  64. enum df_ref_flags
  65. {
  66. /* This flag is set if this ref occurs inside of a conditional
  67. execution instruction. */
  68. DF_REF_CONDITIONAL = 1 << 0,
  69. /* If this flag is set for an artificial use or def, that ref
  70. logically happens at the top of the block. If it is not set
  71. for an artificial use or def, that ref logically happens at the
  72. bottom of the block. This is never set for regular refs. */
  73. DF_REF_AT_TOP = 1 << 1,
  74. /* This flag is set if the use is inside a REG_EQUAL or REG_EQUIV
  75. note. */
  76. DF_REF_IN_NOTE = 1 << 2,
  77. /* This bit is true if this ref can make regs_ever_live true for
  78. this regno. */
  79. DF_HARD_REG_LIVE = 1 << 3,
  80. /* This flag is set if this ref is a partial use or def of the
  81. associated register. */
  82. DF_REF_PARTIAL = 1 << 4,
  83. /* Read-modify-write refs generate both a use and a def and
  84. these are marked with this flag to show that they are not
  85. independent. */
  86. DF_REF_READ_WRITE = 1 << 5,
  87. /* This flag is set if this ref, generally a def, may clobber the
  88. referenced register. This is generally only set for hard
  89. registers that cross a call site. With better information
  90. about calls, some of these could be changed in the future to
  91. DF_REF_MUST_CLOBBER. */
  92. DF_REF_MAY_CLOBBER = 1 << 6,
  93. /* This flag is set if this ref, generally a def, is a real
  94. clobber. This is not currently set for registers live across a
  95. call because that clobbering may or may not happen.
  96. Most of the uses of this are with sets that have a
  97. GET_CODE(..)==CLOBBER. Note that this is set even if the
  98. clobber is to a subreg. So in order to tell if the clobber
  99. wipes out the entire register, it is necessary to also check
  100. the DF_REF_PARTIAL flag. */
  101. DF_REF_MUST_CLOBBER = 1 << 7,
  102. /* If the ref has one of the following two flags set, then the
  103. struct df_ref can be cast to struct df_ref_extract to access
  104. the width and offset fields. */
  105. /* This flag is set if the ref contains a SIGN_EXTRACT. */
  106. DF_REF_SIGN_EXTRACT = 1 << 8,
  107. /* This flag is set if the ref contains a ZERO_EXTRACT. */
  108. DF_REF_ZERO_EXTRACT = 1 << 9,
  109. /* This flag is set if the ref contains a STRICT_LOW_PART. */
  110. DF_REF_STRICT_LOW_PART = 1 << 10,
  111. /* This flag is set if the ref contains a SUBREG. */
  112. DF_REF_SUBREG = 1 << 11,
  113. /* This bit is true if this ref is part of a multiword hardreg. */
  114. DF_REF_MW_HARDREG = 1 << 12,
  115. /* This flag is set if this ref is a usage of the stack pointer by
  116. a function call. */
  117. DF_REF_CALL_STACK_USAGE = 1 << 13,
  118. /* This flag is used for verification of existing refs. */
  119. DF_REF_REG_MARKER = 1 << 14,
  120. /* This flag is set if this ref is inside a pre/post modify. */
  121. DF_REF_PRE_POST_MODIFY = 1 << 15
  122. };
  123. /* The possible ordering of refs within the df_ref_info. */
  124. enum df_ref_order
  125. {
  126. /* There is not table. */
  127. DF_REF_ORDER_NO_TABLE,
  128. /* There is a table of refs but it is not (or no longer) organized
  129. by one of the following methods. */
  130. DF_REF_ORDER_UNORDERED,
  131. DF_REF_ORDER_UNORDERED_WITH_NOTES,
  132. /* Organize the table by reg order, all of the refs with regno 0
  133. followed by all of the refs with regno 1 ... . Within all of
  134. the regs for a particular regno, the refs are unordered. */
  135. DF_REF_ORDER_BY_REG,
  136. /* For uses, the refs within eq notes may be added for
  137. DF_REF_ORDER_BY_REG. */
  138. DF_REF_ORDER_BY_REG_WITH_NOTES,
  139. /* Organize the refs in insn order. The insns are ordered within a
  140. block, and the blocks are ordered by FOR_ALL_BB_FN. */
  141. DF_REF_ORDER_BY_INSN,
  142. /* For uses, the refs within eq notes may be added for
  143. DF_REF_ORDER_BY_INSN. */
  144. DF_REF_ORDER_BY_INSN_WITH_NOTES
  145. };
  146. /* Function prototypes added to df_problem instance. */
  147. /* Allocate the problem specific data. */
  148. typedef void (*df_alloc_function) (bitmap);
  149. /* This function is called if the problem has global data that needs
  150. to be cleared when ever the set of blocks changes. The bitmap
  151. contains the set of blocks that may require special attention.
  152. This call is only made if some of the blocks are going to change.
  153. If everything is to be deleted, the wholesale deletion mechanisms
  154. apply. */
  155. typedef void (*df_reset_function) (bitmap);
  156. /* Free the basic block info. Called from the block reordering code
  157. to get rid of the blocks that have been squished down. */
  158. typedef void (*df_free_bb_function) (basic_block, void *);
  159. /* Local compute function. */
  160. typedef void (*df_local_compute_function) (bitmap);
  161. /* Init the solution specific data. */
  162. typedef void (*df_init_function) (bitmap);
  163. /* Iterative dataflow function. */
  164. typedef void (*df_dataflow_function) (struct dataflow *, bitmap, int *, int);
  165. /* Confluence operator for blocks with 0 out (or in) edges. */
  166. typedef void (*df_confluence_function_0) (basic_block);
  167. /* Confluence operator for blocks with 1 or more out (or in) edges.
  168. Return true if BB input data has changed. */
  169. typedef bool (*df_confluence_function_n) (edge);
  170. /* Transfer function for blocks.
  171. Return true if BB output data has changed. */
  172. typedef bool (*df_transfer_function) (int);
  173. /* Function to massage the information after the problem solving. */
  174. typedef void (*df_finalizer_function) (bitmap);
  175. /* Function to free all of the problem specific datastructures. */
  176. typedef void (*df_free_function) (void);
  177. /* Function to remove this problem from the stack of dataflow problems
  178. without effecting the other problems in the stack except for those
  179. that depend on this problem. */
  180. typedef void (*df_remove_problem_function) (void);
  181. /* Function to dump basic block independent results to FILE. */
  182. typedef void (*df_dump_problem_function) (FILE *);
  183. /* Function to dump top or bottom of basic block results to FILE. */
  184. typedef void (*df_dump_bb_problem_function) (basic_block, FILE *);
  185. /* Function to dump before or after an insn to FILE. */
  186. typedef void (*df_dump_insn_problem_function) (const rtx_insn *, FILE *);
  187. /* Function to dump top or bottom of basic block results to FILE. */
  188. typedef void (*df_verify_solution_start) (void);
  189. /* Function to dump top or bottom of basic block results to FILE. */
  190. typedef void (*df_verify_solution_end) (void);
  191. /* The static description of a dataflow problem to solve. See above
  192. typedefs for doc for the function fields. */
  193. struct df_problem {
  194. /* The unique id of the problem. This is used it index into
  195. df->defined_problems to make accessing the problem data easy. */
  196. enum df_problem_id id;
  197. enum df_flow_dir dir; /* Dataflow direction. */
  198. df_alloc_function alloc_fun;
  199. df_reset_function reset_fun;
  200. df_free_bb_function free_bb_fun;
  201. df_local_compute_function local_compute_fun;
  202. df_init_function init_fun;
  203. df_dataflow_function dataflow_fun;
  204. df_confluence_function_0 con_fun_0;
  205. df_confluence_function_n con_fun_n;
  206. df_transfer_function trans_fun;
  207. df_finalizer_function finalize_fun;
  208. df_free_function free_fun;
  209. df_remove_problem_function remove_problem_fun;
  210. df_dump_problem_function dump_start_fun;
  211. df_dump_bb_problem_function dump_top_fun;
  212. df_dump_bb_problem_function dump_bottom_fun;
  213. df_dump_insn_problem_function dump_insn_top_fun;
  214. df_dump_insn_problem_function dump_insn_bottom_fun;
  215. df_verify_solution_start verify_start_fun;
  216. df_verify_solution_end verify_end_fun;
  217. const struct df_problem *dependent_problem;
  218. unsigned int block_info_elt_size;
  219. /* The timevar id associated with this pass. */
  220. timevar_id_t tv_id;
  221. /* True if the df_set_blocks should null out the basic block info if
  222. this block drops out of df->blocks_to_analyze. */
  223. bool free_blocks_on_set_blocks;
  224. };
  225. /* The specific instance of the problem to solve. */
  226. struct dataflow
  227. {
  228. const struct df_problem *problem; /* The problem to be solved. */
  229. /* Array indexed by bb->index, that contains basic block problem and
  230. solution specific information. */
  231. void *block_info;
  232. unsigned int block_info_size;
  233. /* The pool to allocate the block_info from. */
  234. object_allocator<df_link> *block_pool;
  235. /* The lr and live problems have their transfer functions recomputed
  236. only if necessary. This is possible for them because, the
  237. problems are kept active for the entire backend and their
  238. transfer functions are indexed by the REGNO. These are not
  239. defined for any other problem. */
  240. bitmap out_of_date_transfer_functions;
  241. /* Other problem specific data that is not on a per basic block
  242. basis. The structure is generally defined privately for the
  243. problem. The exception being the scanning problem where it is
  244. fully public. */
  245. void *problem_data;
  246. /* Local flags for some of the problems. */
  247. unsigned int local_flags;
  248. /* True if this problem of this instance has been initialized. This
  249. is used by the dumpers to keep garbage out of the dumps if, for
  250. debugging a dump is produced before the first call to
  251. df_analyze after a new problem is added. */
  252. bool computed;
  253. /* True if the something has changed which invalidates the dataflow
  254. solutions. Note that this bit is always true for all problems except
  255. lr and live. */
  256. bool solutions_dirty;
  257. /* If true, this pass is deleted by df_finish_pass. This is never
  258. true for DF_SCAN and DF_LR. It is true for DF_LIVE if optimize >
  259. 1. It is always true for the other problems. */
  260. bool optional_p;
  261. };
  262. /* The set of multiword hardregs used as operands to this
  263. instruction. These are factored into individual uses and defs but
  264. the aggregate is still needed to service the REG_DEAD and
  265. REG_UNUSED notes. */
  266. struct df_mw_hardreg
  267. {
  268. df_mw_hardreg *next; /* Next entry for this instruction. */
  269. rtx mw_reg; /* The multiword hardreg. */
  270. /* These two bitfields are intentionally oversized, in the hope that
  271. accesses to 16-bit fields will usually be quicker. */
  272. ENUM_BITFIELD(df_ref_type) type : 16;
  273. /* Used to see if the ref is read or write. */
  274. int flags : 16; /* Various df_ref_flags. */
  275. unsigned int start_regno; /* First word of the multi word subreg. */
  276. unsigned int end_regno; /* Last word of the multi word subreg. */
  277. unsigned int mw_order; /* Same as df_ref.ref_order. */
  278. };
  279. /* Define a register reference structure. One of these is allocated
  280. for every register reference (use or def). Note some register
  281. references (e.g., post_inc, subreg) generate both a def and a use. */
  282. struct df_base_ref
  283. {
  284. /* These three bitfields are intentionally oversized, in the hope that
  285. accesses to 8 and 16-bit fields will usually be quicker. */
  286. ENUM_BITFIELD(df_ref_class) cl : 8;
  287. ENUM_BITFIELD(df_ref_type) type : 8;
  288. /* Type of ref. */
  289. int flags : 16; /* Various df_ref_flags. */
  290. unsigned int regno; /* The register number referenced. */
  291. rtx reg; /* The register referenced. */
  292. union df_ref_d *next_loc; /* Next ref for same insn or bb. */
  293. struct df_link *chain; /* Head of def-use, use-def. */
  294. /* Pointer to the insn info of the containing instruction. FIXME!
  295. Currently this is NULL for artificial refs but this will be used
  296. when FUDs are added. */
  297. struct df_insn_info *insn_info;
  298. /* For each regno, there are three chains of refs, one for the uses,
  299. the eq_uses and the defs. These chains go through the refs
  300. themselves rather than using an external structure. */
  301. union df_ref_d *next_reg; /* Next ref with same regno and type. */
  302. union df_ref_d *prev_reg; /* Prev ref with same regno and type. */
  303. /* Location in the ref table. This is only valid after a call to
  304. df_maybe_reorganize_[use,def]_refs which is an expensive operation. */
  305. int id;
  306. /* The index at which the operand was scanned in the insn. This is
  307. used to totally order the refs in an insn. */
  308. unsigned int ref_order;
  309. };
  310. /* The three types of df_refs. Note that the df_ref_extract is an
  311. extension of the df_regular_ref, not the df_base_ref. */
  312. struct df_artificial_ref
  313. {
  314. struct df_base_ref base;
  315. /* Artificial refs do not have an insn, so to get the basic block,
  316. it must be explicitly here. */
  317. basic_block bb;
  318. };
  319. struct df_regular_ref
  320. {
  321. struct df_base_ref base;
  322. /* The loc is the address in the insn of the reg. This is not
  323. defined for special registers, such as clobbers and stack
  324. pointers that are also associated with call insns and so those
  325. just use the base. */
  326. rtx *loc;
  327. };
  328. /* Union of the different kinds of defs/uses placeholders. */
  329. union df_ref_d
  330. {
  331. struct df_base_ref base;
  332. struct df_regular_ref regular_ref;
  333. struct df_artificial_ref artificial_ref;
  334. };
  335. typedef union df_ref_d *df_ref;
  336. /* One of these structures is allocated for every insn. */
  337. struct df_insn_info
  338. {
  339. rtx_insn *insn; /* The insn this info comes from. */
  340. df_ref defs; /* Head of insn-def chain. */
  341. df_ref uses; /* Head of insn-use chain. */
  342. /* Head of insn-use chain for uses in REG_EQUAL/EQUIV notes. */
  343. df_ref eq_uses;
  344. struct df_mw_hardreg *mw_hardregs;
  345. /* The logical uid of the insn in the basic block. This is valid
  346. after any call to df_analyze but may rot after insns are added,
  347. deleted or moved. */
  348. int luid;
  349. };
  350. /* These links are used for ref-ref chains. Currently only DEF-USE and
  351. USE-DEF chains can be built by DF. */
  352. struct df_link
  353. {
  354. df_ref ref;
  355. struct df_link *next;
  356. };
  357. enum df_chain_flags
  358. {
  359. /* Flags that control the building of chains. */
  360. DF_DU_CHAIN = 1, /* Build DU chains. */
  361. DF_UD_CHAIN = 2 /* Build UD chains. */
  362. };
  363. enum df_scan_flags
  364. {
  365. /* Flags for the SCAN problem. */
  366. DF_SCAN_EMPTY_ENTRY_EXIT = 1 /* Don't define any registers in the entry
  367. block; don't use any in the exit block. */
  368. };
  369. enum df_changeable_flags
  370. {
  371. /* Scanning flags. */
  372. /* Flag to control the running of dce as a side effect of building LR. */
  373. DF_LR_RUN_DCE = 1 << 0, /* Run DCE. */
  374. DF_NO_HARD_REGS = 1 << 1, /* Skip hard registers in RD and CHAIN Building. */
  375. DF_EQ_NOTES = 1 << 2, /* Build chains with uses present in EQUIV/EQUAL notes. */
  376. DF_NO_REGS_EVER_LIVE = 1 << 3, /* Do not compute the regs_ever_live. */
  377. /* Cause df_insn_rescan df_notes_rescan and df_insn_delete, to
  378. return immediately. This is used by passes that know how to update
  379. the scanning them selves. */
  380. DF_NO_INSN_RESCAN = 1 << 4,
  381. /* Cause df_insn_rescan df_notes_rescan and df_insn_delete, to
  382. return after marking the insn for later processing. This allows all
  383. rescans to be batched. */
  384. DF_DEFER_INSN_RESCAN = 1 << 5,
  385. /* Compute the reaching defs problem as "live and reaching defs" (LR&RD).
  386. A DEF is reaching and live at insn I if DEF reaches I and REGNO(DEF)
  387. is in LR_IN of the basic block containing I. */
  388. DF_RD_PRUNE_DEAD_DEFS = 1 << 6,
  389. DF_VERIFY_SCHEDULED = 1 << 7
  390. };
  391. /* Two of these structures are inline in df, one for the uses and one
  392. for the defs. This structure is only contains the refs within the
  393. boundary of the df_set_blocks if that has been defined. */
  394. struct df_ref_info
  395. {
  396. df_ref *refs; /* Ref table, indexed by id. */
  397. unsigned int *begin; /* First ref_index for this pseudo. */
  398. unsigned int *count; /* Count of refs for this pseudo. */
  399. unsigned int refs_size; /* Size of currently allocated refs table. */
  400. /* Table_size is the number of elements in the refs table. This
  401. will also be the width of the bitvectors in the rd and ru
  402. problems. Total_size is the number of refs. These will be the
  403. same if the focus has not been reduced by df_set_blocks. If the
  404. focus has been reduced, table_size will be smaller since it only
  405. contains the refs in the set blocks. */
  406. unsigned int table_size;
  407. unsigned int total_size;
  408. enum df_ref_order ref_order;
  409. };
  410. /* Three of these structures are allocated for every pseudo reg. One
  411. for the uses, one for the eq_uses and one for the defs. */
  412. struct df_reg_info
  413. {
  414. /* Head of chain for refs of that type and regno. */
  415. df_ref reg_chain;
  416. /* Number of refs in the chain. */
  417. unsigned int n_refs;
  418. };
  419. /*----------------------------------------------------------------------------
  420. Problem data for the scanning dataflow problem. Unlike the other
  421. dataflow problems, the problem data for scanning is fully exposed and
  422. used by owners of the problem.
  423. ----------------------------------------------------------------------------*/
  424. class df_d
  425. {
  426. public:
  427. /* The set of problems to be solved is stored in two arrays. In
  428. PROBLEMS_IN_ORDER, the problems are stored in the order that they
  429. are solved. This is an internally dense array that may have
  430. nulls at the end of it. In PROBLEMS_BY_INDEX, the problem is
  431. stored by the value in df_problem.id. These are used to access
  432. the problem local data without having to search the first
  433. array. */
  434. struct dataflow *problems_in_order[DF_LAST_PROBLEM_PLUS1];
  435. struct dataflow *problems_by_index[DF_LAST_PROBLEM_PLUS1];
  436. /* If not NULL, this subset of blocks of the program to be
  437. considered for analysis. At certain times, this will contain all
  438. the blocks in the function so it cannot be used as an indicator
  439. of if we are analyzing a subset. See analyze_subset. */
  440. bitmap blocks_to_analyze;
  441. /* The following information is really the problem data for the
  442. scanning instance but it is used too often by the other problems
  443. to keep getting it from there. */
  444. struct df_ref_info def_info; /* Def info. */
  445. struct df_ref_info use_info; /* Use info. */
  446. /* The following three arrays are allocated in parallel. They contain
  447. the sets of refs of each type for each reg. */
  448. struct df_reg_info **def_regs; /* Def reg info. */
  449. struct df_reg_info **use_regs; /* Eq_use reg info. */
  450. struct df_reg_info **eq_use_regs; /* Eq_use info. */
  451. unsigned int regs_size; /* Size of currently allocated regs table. */
  452. unsigned int regs_inited; /* Number of regs with reg_infos allocated. */
  453. struct df_insn_info **insns; /* Insn table, indexed by insn UID. */
  454. unsigned int insns_size; /* Size of insn table. */
  455. int num_problems_defined;
  456. bitmap_head hardware_regs_used; /* The set of hardware registers used. */
  457. /* The set of hard regs that are in the artificial uses at the end
  458. of a regular basic block. */
  459. bitmap_head regular_block_artificial_uses;
  460. /* The set of hard regs that are in the artificial uses at the end
  461. of a basic block that has an EH pred. */
  462. bitmap_head eh_block_artificial_uses;
  463. /* The set of hardware registers live on entry to the function. */
  464. bitmap entry_block_defs;
  465. bitmap exit_block_uses; /* The set of hardware registers used in exit block. */
  466. /* Insns to delete, rescan or reprocess the notes at next
  467. df_rescan_all or df_process_deferred_rescans. */
  468. bitmap_head insns_to_delete;
  469. bitmap_head insns_to_rescan;
  470. bitmap_head insns_to_notes_rescan;
  471. int *postorder; /* The current set of basic blocks
  472. in reverse postorder. */
  473. vec<int> postorder_inverted; /* The current set of basic blocks
  474. in reverse postorder of inverted CFG. */
  475. int n_blocks; /* The number of blocks in reverse postorder. */
  476. /* An array [FIRST_PSEUDO_REGISTER], indexed by regno, of the number
  477. of refs that qualify as being real hard regs uses. Artificial
  478. uses and defs as well as refs in eq notes are ignored. If the
  479. ref is a def, it cannot be a MAY_CLOBBER def. If the ref is a
  480. use, it cannot be the emim_reg_set or be the frame or arg pointer
  481. register. Uses in debug insns are ignored.
  482. IT IS NOT ACCEPTABLE TO MANUALLY CHANGE THIS ARRAY. This array
  483. always reflects the actual number of refs in the insn stream that
  484. satisfy the above criteria. */
  485. unsigned int *hard_regs_live_count;
  486. /* This counter provides a way to totally order refs without using
  487. addresses. It is incremented whenever a ref is created. */
  488. unsigned int ref_order;
  489. /* Problem specific control information. This is a combination of
  490. enum df_changeable_flags values. */
  491. int changeable_flags : 8;
  492. /* If this is true, then only a subset of the blocks of the program
  493. is considered to compute the solutions of dataflow problems. */
  494. bool analyze_subset;
  495. /* True if someone added or deleted something from regs_ever_live so
  496. that the entry and exit blocks need be reprocessed. */
  497. bool redo_entry_and_exit;
  498. };
  499. #define DF_SCAN_BB_INFO(BB) (df_scan_get_bb_info ((BB)->index))
  500. #define DF_RD_BB_INFO(BB) (df_rd_get_bb_info ((BB)->index))
  501. #define DF_LR_BB_INFO(BB) (df_lr_get_bb_info ((BB)->index))
  502. #define DF_LIVE_BB_INFO(BB) (df_live_get_bb_info ((BB)->index))
  503. #define DF_WORD_LR_BB_INFO(BB) (df_word_lr_get_bb_info ((BB)->index))
  504. #define DF_MD_BB_INFO(BB) (df_md_get_bb_info ((BB)->index))
  505. #define DF_MIR_BB_INFO(BB) (df_mir_get_bb_info ((BB)->index))
  506. /* Most transformations that wish to use live register analysis will
  507. use these macros. This info is the and of the lr and live sets. */
  508. #define DF_LIVE_IN(BB) (&DF_LIVE_BB_INFO (BB)->in)
  509. #define DF_LIVE_OUT(BB) (&DF_LIVE_BB_INFO (BB)->out)
  510. #define DF_MIR_IN(BB) (&DF_MIR_BB_INFO (BB)->in)
  511. #define DF_MIR_OUT(BB) (&DF_MIR_BB_INFO (BB)->out)
  512. /* These macros are used by passes that are not tolerant of
  513. uninitialized variables. This intolerance should eventually
  514. be fixed. */
  515. #define DF_LR_IN(BB) (&DF_LR_BB_INFO (BB)->in)
  516. #define DF_LR_OUT(BB) (&DF_LR_BB_INFO (BB)->out)
  517. /* These macros are used by passes that are not tolerant of
  518. uninitialized variables. This intolerance should eventually
  519. be fixed. */
  520. #define DF_WORD_LR_IN(BB) (&DF_WORD_LR_BB_INFO (BB)->in)
  521. #define DF_WORD_LR_OUT(BB) (&DF_WORD_LR_BB_INFO (BB)->out)
  522. /* Macros to access the elements within the ref structure. */
  523. #define DF_REF_REAL_REG(REF) (GET_CODE ((REF)->base.reg) == SUBREG \
  524. ? SUBREG_REG ((REF)->base.reg) : ((REF)->base.reg))
  525. #define DF_REF_REGNO(REF) ((REF)->base.regno)
  526. #define DF_REF_REAL_LOC(REF) (GET_CODE (*((REF)->regular_ref.loc)) == SUBREG \
  527. ? &SUBREG_REG (*((REF)->regular_ref.loc)) : ((REF)->regular_ref.loc))
  528. #define DF_REF_REG(REF) ((REF)->base.reg)
  529. #define DF_REF_LOC(REF) (DF_REF_CLASS (REF) == DF_REF_REGULAR ? \
  530. (REF)->regular_ref.loc : NULL)
  531. #define DF_REF_BB(REF) (DF_REF_IS_ARTIFICIAL (REF) \
  532. ? (REF)->artificial_ref.bb \
  533. : BLOCK_FOR_INSN (DF_REF_INSN (REF)))
  534. #define DF_REF_BBNO(REF) (DF_REF_BB (REF)->index)
  535. #define DF_REF_INSN_INFO(REF) ((REF)->base.insn_info)
  536. #define DF_REF_INSN(REF) ((REF)->base.insn_info->insn)
  537. #define DF_REF_INSN_UID(REF) (INSN_UID (DF_REF_INSN(REF)))
  538. #define DF_REF_CLASS(REF) ((REF)->base.cl)
  539. #define DF_REF_TYPE(REF) ((REF)->base.type)
  540. #define DF_REF_CHAIN(REF) ((REF)->base.chain)
  541. #define DF_REF_ID(REF) ((REF)->base.id)
  542. #define DF_REF_FLAGS(REF) ((REF)->base.flags)
  543. #define DF_REF_FLAGS_IS_SET(REF, v) ((DF_REF_FLAGS (REF) & (v)) != 0)
  544. #define DF_REF_FLAGS_SET(REF, v) (DF_REF_FLAGS (REF) |= (v))
  545. #define DF_REF_FLAGS_CLEAR(REF, v) (DF_REF_FLAGS (REF) &= ~(v))
  546. #define DF_REF_ORDER(REF) ((REF)->base.ref_order)
  547. /* If DF_REF_IS_ARTIFICIAL () is true, this is not a real
  548. definition/use, but an artificial one created to model always live
  549. registers, eh uses, etc. */
  550. #define DF_REF_IS_ARTIFICIAL(REF) (DF_REF_CLASS (REF) == DF_REF_ARTIFICIAL)
  551. #define DF_REF_REG_MARK(REF) (DF_REF_FLAGS_SET ((REF),DF_REF_REG_MARKER))
  552. #define DF_REF_REG_UNMARK(REF) (DF_REF_FLAGS_CLEAR ((REF),DF_REF_REG_MARKER))
  553. #define DF_REF_IS_REG_MARKED(REF) (DF_REF_FLAGS_IS_SET ((REF),DF_REF_REG_MARKER))
  554. #define DF_REF_NEXT_LOC(REF) ((REF)->base.next_loc)
  555. #define DF_REF_NEXT_REG(REF) ((REF)->base.next_reg)
  556. #define DF_REF_PREV_REG(REF) ((REF)->base.prev_reg)
  557. /* The following two macros may only be applied if one of
  558. DF_REF_SIGN_EXTRACT | DF_REF_ZERO_EXTRACT is true. */
  559. #define DF_REF_EXTRACT_WIDTH(REF) ((REF)->extract_ref.width)
  560. #define DF_REF_EXTRACT_OFFSET(REF) ((REF)->extract_ref.offset)
  561. #define DF_REF_EXTRACT_MODE(REF) ((REF)->extract_ref.mode)
  562. /* Macros to determine the reference type. */
  563. #define DF_REF_REG_DEF_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_DEF)
  564. #define DF_REF_REG_USE_P(REF) (!DF_REF_REG_DEF_P (REF))
  565. #define DF_REF_REG_MEM_STORE_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_STORE)
  566. #define DF_REF_REG_MEM_LOAD_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_LOAD)
  567. #define DF_REF_REG_MEM_P(REF) (DF_REF_REG_MEM_STORE_P (REF) \
  568. || DF_REF_REG_MEM_LOAD_P (REF))
  569. #define DF_MWS_REG_DEF_P(MREF) (DF_MWS_TYPE (MREF) == DF_REF_REG_DEF)
  570. #define DF_MWS_REG_USE_P(MREF) (!DF_MWS_REG_DEF_P (MREF))
  571. #define DF_MWS_NEXT(MREF) ((MREF)->next)
  572. #define DF_MWS_TYPE(MREF) ((MREF)->type)
  573. /* Macros to get the refs out of def_info or use_info refs table. If
  574. the focus of the dataflow has been set to some subset of blocks
  575. with df_set_blocks, these macros will only find the uses and defs
  576. in that subset of blocks.
  577. These macros should be used with care. The def macros are only
  578. usable after a call to df_maybe_reorganize_def_refs and the use
  579. macros are only usable after a call to
  580. df_maybe_reorganize_use_refs. HOWEVER, BUILDING AND USING THESE
  581. ARRAYS ARE A CACHE LOCALITY KILLER. */
  582. #define DF_DEFS_TABLE_SIZE() (df->def_info.table_size)
  583. #define DF_DEFS_GET(ID) (df->def_info.refs[(ID)])
  584. #define DF_DEFS_SET(ID,VAL) (df->def_info.refs[(ID)]=(VAL))
  585. #define DF_DEFS_COUNT(ID) (df->def_info.count[(ID)])
  586. #define DF_DEFS_BEGIN(ID) (df->def_info.begin[(ID)])
  587. #define DF_USES_TABLE_SIZE() (df->use_info.table_size)
  588. #define DF_USES_GET(ID) (df->use_info.refs[(ID)])
  589. #define DF_USES_SET(ID,VAL) (df->use_info.refs[(ID)]=(VAL))
  590. #define DF_USES_COUNT(ID) (df->use_info.count[(ID)])
  591. #define DF_USES_BEGIN(ID) (df->use_info.begin[(ID)])
  592. /* Macros to access the register information from scan dataflow record. */
  593. #define DF_REG_SIZE(DF) (df->regs_inited)
  594. #define DF_REG_DEF_GET(REG) (df->def_regs[(REG)])
  595. #define DF_REG_DEF_CHAIN(REG) (df->def_regs[(REG)]->reg_chain)
  596. #define DF_REG_DEF_COUNT(REG) (df->def_regs[(REG)]->n_refs)
  597. #define DF_REG_USE_GET(REG) (df->use_regs[(REG)])
  598. #define DF_REG_USE_CHAIN(REG) (df->use_regs[(REG)]->reg_chain)
  599. #define DF_REG_USE_COUNT(REG) (df->use_regs[(REG)]->n_refs)
  600. #define DF_REG_EQ_USE_GET(REG) (df->eq_use_regs[(REG)])
  601. #define DF_REG_EQ_USE_CHAIN(REG) (df->eq_use_regs[(REG)]->reg_chain)
  602. #define DF_REG_EQ_USE_COUNT(REG) (df->eq_use_regs[(REG)]->n_refs)
  603. /* Macros to access the elements within the reg_info structure table. */
  604. #define DF_REGNO_FIRST_DEF(REGNUM) \
  605. (DF_REG_DEF_GET(REGNUM) ? DF_REG_DEF_GET (REGNUM) : 0)
  606. #define DF_REGNO_LAST_USE(REGNUM) \
  607. (DF_REG_USE_GET(REGNUM) ? DF_REG_USE_GET (REGNUM) : 0)
  608. /* Macros to access the elements within the insn_info structure table. */
  609. #define DF_INSN_SIZE() ((df)->insns_size)
  610. #define DF_INSN_INFO_GET(INSN) (df->insns[(INSN_UID (INSN))])
  611. #define DF_INSN_INFO_SET(INSN,VAL) (df->insns[(INSN_UID (INSN))]=(VAL))
  612. #define DF_INSN_INFO_LUID(II) ((II)->luid)
  613. #define DF_INSN_INFO_DEFS(II) ((II)->defs)
  614. #define DF_INSN_INFO_USES(II) ((II)->uses)
  615. #define DF_INSN_INFO_EQ_USES(II) ((II)->eq_uses)
  616. #define DF_INSN_INFO_MWS(II) ((II)->mw_hardregs)
  617. #define DF_INSN_LUID(INSN) (DF_INSN_INFO_LUID (DF_INSN_INFO_GET (INSN)))
  618. #define DF_INSN_DEFS(INSN) (DF_INSN_INFO_DEFS (DF_INSN_INFO_GET (INSN)))
  619. #define DF_INSN_USES(INSN) (DF_INSN_INFO_USES (DF_INSN_INFO_GET (INSN)))
  620. #define DF_INSN_EQ_USES(INSN) (DF_INSN_INFO_EQ_USES (DF_INSN_INFO_GET (INSN)))
  621. #define DF_INSN_UID_GET(UID) (df->insns[(UID)])
  622. #define DF_INSN_UID_SET(UID,VAL) (df->insns[(UID)]=(VAL))
  623. #define DF_INSN_UID_SAFE_GET(UID) (((unsigned)(UID) < DF_INSN_SIZE ()) \
  624. ? DF_INSN_UID_GET (UID) \
  625. : NULL)
  626. #define DF_INSN_UID_LUID(INSN) (DF_INSN_UID_GET (INSN)->luid)
  627. #define DF_INSN_UID_DEFS(INSN) (DF_INSN_UID_GET (INSN)->defs)
  628. #define DF_INSN_UID_USES(INSN) (DF_INSN_UID_GET (INSN)->uses)
  629. #define DF_INSN_UID_EQ_USES(INSN) (DF_INSN_UID_GET (INSN)->eq_uses)
  630. #define DF_INSN_UID_MWS(INSN) (DF_INSN_UID_GET (INSN)->mw_hardregs)
  631. #define FOR_EACH_INSN_INFO_DEF(ITER, INSN) \
  632. for (ITER = DF_INSN_INFO_DEFS (INSN); ITER; ITER = DF_REF_NEXT_LOC (ITER))
  633. #define FOR_EACH_INSN_INFO_USE(ITER, INSN) \
  634. for (ITER = DF_INSN_INFO_USES (INSN); ITER; ITER = DF_REF_NEXT_LOC (ITER))
  635. #define FOR_EACH_INSN_INFO_EQ_USE(ITER, INSN) \
  636. for (ITER = DF_INSN_INFO_EQ_USES (INSN); ITER; ITER = DF_REF_NEXT_LOC (ITER))
  637. #define FOR_EACH_INSN_INFO_MW(ITER, INSN) \
  638. for (ITER = DF_INSN_INFO_MWS (INSN); ITER; ITER = DF_MWS_NEXT (ITER))
  639. #define FOR_EACH_INSN_DEF(ITER, INSN) \
  640. FOR_EACH_INSN_INFO_DEF(ITER, DF_INSN_INFO_GET (INSN))
  641. #define FOR_EACH_INSN_USE(ITER, INSN) \
  642. FOR_EACH_INSN_INFO_USE(ITER, DF_INSN_INFO_GET (INSN))
  643. #define FOR_EACH_INSN_EQ_USE(ITER, INSN) \
  644. FOR_EACH_INSN_INFO_EQ_USE(ITER, DF_INSN_INFO_GET (INSN))
  645. #define FOR_EACH_ARTIFICIAL_USE(ITER, BB_INDEX) \
  646. for (ITER = df_get_artificial_uses (BB_INDEX); ITER; \
  647. ITER = DF_REF_NEXT_LOC (ITER))
  648. #define FOR_EACH_ARTIFICIAL_DEF(ITER, BB_INDEX) \
  649. for (ITER = df_get_artificial_defs (BB_INDEX); ITER; \
  650. ITER = DF_REF_NEXT_LOC (ITER))
  651. /* An obstack for bitmap not related to specific dataflow problems.
  652. This obstack should e.g. be used for bitmaps with a short life time
  653. such as temporary bitmaps. This obstack is declared in df-core.c. */
  654. extern bitmap_obstack df_bitmap_obstack;
  655. /* One of these structures is allocated for every basic block. */
  656. struct df_scan_bb_info
  657. {
  658. /* The entry block has many artificial defs and these are at the
  659. bottom of the block.
  660. Blocks that are targets of exception edges may have some
  661. artificial defs. These are logically located at the top of the
  662. block.
  663. Blocks that are the targets of non-local goto's have the hard
  664. frame pointer defined at the top of the block. */
  665. df_ref artificial_defs;
  666. /* Blocks that are targets of exception edges may have some
  667. artificial uses. These are logically at the top of the block.
  668. Most blocks have artificial uses at the bottom of the block. */
  669. df_ref artificial_uses;
  670. };
  671. /* Reaching definitions. All bitmaps are indexed by the id field of
  672. the ref except sparse_kill which is indexed by regno. For the
  673. LR&RD problem, the kill set is not complete: It does not contain
  674. DEFs killed because the set register has died in the LR set. */
  675. class df_rd_bb_info
  676. {
  677. public:
  678. /* Local sets to describe the basic blocks. */
  679. bitmap_head kill;
  680. bitmap_head sparse_kill;
  681. bitmap_head gen; /* The set of defs generated in this block. */
  682. /* The results of the dataflow problem. */
  683. bitmap_head in; /* At the top of the block. */
  684. bitmap_head out; /* At the bottom of the block. */
  685. };
  686. /* Multiple reaching definitions. All bitmaps are referenced by the
  687. register number. */
  688. class df_md_bb_info
  689. {
  690. public:
  691. /* Local sets to describe the basic blocks. */
  692. bitmap_head gen; /* Partial/conditional definitions live at BB out. */
  693. bitmap_head kill; /* Other definitions that are live at BB out. */
  694. bitmap_head init; /* Definitions coming from dominance frontier edges. */
  695. /* The results of the dataflow problem. */
  696. bitmap_head in; /* Just before the block itself. */
  697. bitmap_head out; /* At the bottom of the block. */
  698. };
  699. /* Live registers, a backwards dataflow problem. All bitmaps are
  700. referenced by the register number. */
  701. class df_lr_bb_info
  702. {
  703. public:
  704. /* Local sets to describe the basic blocks. */
  705. bitmap_head def; /* The set of registers set in this block
  706. - except artificial defs at the top. */
  707. bitmap_head use; /* The set of registers used in this block. */
  708. /* The results of the dataflow problem. */
  709. bitmap_head in; /* Just before the block itself. */
  710. bitmap_head out; /* At the bottom of the block. */
  711. };
  712. /* Uninitialized registers. All bitmaps are referenced by the
  713. register number. Anded results of the forwards and backward live
  714. info. Note that the forwards live information is not available
  715. separately. */
  716. class df_live_bb_info
  717. {
  718. public:
  719. /* Local sets to describe the basic blocks. */
  720. bitmap_head kill; /* The set of registers unset in this block. Calls,
  721. for instance, unset registers. */
  722. bitmap_head gen; /* The set of registers set in this block. */
  723. /* The results of the dataflow problem. */
  724. bitmap_head in; /* At the top of the block. */
  725. bitmap_head out; /* At the bottom of the block. */
  726. };
  727. /* Live registers, a backwards dataflow problem. These bitmaps are
  728. indexed by 2 * regno for each pseudo and have two entries for each
  729. pseudo. Only pseudos that have a size of 2 * UNITS_PER_WORD are
  730. meaningfully tracked. */
  731. class df_word_lr_bb_info
  732. {
  733. public:
  734. /* Local sets to describe the basic blocks. */
  735. bitmap_head def; /* The set of registers set in this block
  736. - except artificial defs at the top. */
  737. bitmap_head use; /* The set of registers used in this block. */
  738. /* The results of the dataflow problem. */
  739. bitmap_head in; /* Just before the block itself. */
  740. bitmap_head out; /* At the bottom of the block. */
  741. };
  742. /* Must-initialized registers. All bitmaps are referenced by the
  743. register number. */
  744. class df_mir_bb_info
  745. {
  746. public:
  747. /* Local sets to describe the basic blocks. */
  748. bitmap_head kill; /* The set of registers unset in this block. Calls,
  749. for instance, unset registers. */
  750. bitmap_head gen; /* The set of registers set in this block, excluding the
  751. ones killed later on in this block. */
  752. /* The results of the dataflow problem. */
  753. bitmap_head in; /* At the top of the block. */
  754. bitmap_head out; /* At the bottom of the block. */
  755. };
  756. /* This is used for debugging and for the dumpers to find the latest
  757. instance so that the df info can be added to the dumps. This
  758. should not be used by regular code. */
  759. extern class df_d *df;
  760. #define df_scan (df->problems_by_index[DF_SCAN])
  761. #define df_rd (df->problems_by_index[DF_RD])
  762. #define df_lr (df->problems_by_index[DF_LR])
  763. #define df_live (df->problems_by_index[DF_LIVE])
  764. #define df_chain (df->problems_by_index[DF_CHAIN])
  765. #define df_word_lr (df->problems_by_index[DF_WORD_LR])
  766. #define df_note (df->problems_by_index[DF_NOTE])
  767. #define df_md (df->problems_by_index[DF_MD])
  768. #define df_mir (df->problems_by_index[DF_MIR])
  769. /* This symbol turns on checking that each modification of the cfg has
  770. been identified to the appropriate df routines. It is not part of
  771. verification per se because the check that the final solution has
  772. not changed covers this. However, if the solution is not being
  773. properly recomputed because the cfg is being modified, adding in
  774. calls to df_check_cfg_clean can be used to find the source of that
  775. kind of problem. */
  776. #if 0
  777. #define DF_DEBUG_CFG
  778. #endif
  779. /* Functions defined in df-core.c. */
  780. extern void df_add_problem (const struct df_problem *);
  781. extern int df_set_flags (int);
  782. extern int df_clear_flags (int);
  783. extern void df_set_blocks (bitmap);
  784. extern void df_remove_problem (struct dataflow *);
  785. extern void df_finish_pass (bool);
  786. extern void df_analyze_problem (struct dataflow *, bitmap, int *, int);
  787. extern void df_analyze ();
  788. extern void df_analyze_loop (class loop *);
  789. extern int df_get_n_blocks (enum df_flow_dir);
  790. extern int *df_get_postorder (enum df_flow_dir);
  791. extern void df_simple_dataflow (enum df_flow_dir, df_init_function,
  792. df_confluence_function_0, df_confluence_function_n,
  793. df_transfer_function, bitmap, int *, int);
  794. extern void df_mark_solutions_dirty (void);
  795. extern bool df_get_bb_dirty (basic_block);
  796. extern void df_set_bb_dirty (basic_block);
  797. extern void df_compact_blocks (void);
  798. extern void df_bb_replace (int, basic_block);
  799. extern void df_bb_delete (int);
  800. extern void df_verify (void);
  801. #ifdef DF_DEBUG_CFG
  802. extern void df_check_cfg_clean (void);
  803. #endif
  804. extern df_ref df_bb_regno_first_def_find (basic_block, unsigned int);
  805. extern df_ref df_bb_regno_last_def_find (basic_block, unsigned int);
  806. extern df_ref df_find_def (rtx_insn *, rtx);
  807. extern bool df_reg_defined (rtx_insn *, rtx);
  808. extern df_ref df_find_use (rtx_insn *, rtx);
  809. extern bool df_reg_used (rtx_insn *, rtx);
  810. extern void df_worklist_dataflow (struct dataflow *,bitmap, int *, int);
  811. extern void df_print_regset (FILE *file, const_bitmap r);
  812. extern void df_print_word_regset (FILE *file, const_bitmap r);
  813. extern void df_dump (FILE *);
  814. extern void df_dump_region (FILE *);
  815. extern void df_dump_start (FILE *);
  816. extern void df_dump_top (basic_block, FILE *);
  817. extern void df_dump_bottom (basic_block, FILE *);
  818. extern void df_dump_insn_top (const rtx_insn *, FILE *);
  819. extern void df_dump_insn_bottom (const rtx_insn *, FILE *);
  820. extern void df_refs_chain_dump (df_ref, bool, FILE *);
  821. extern void df_regs_chain_dump (df_ref, FILE *);
  822. extern void df_insn_debug (rtx_insn *, bool, FILE *);
  823. extern void df_insn_debug_regno (rtx_insn *, FILE *);
  824. extern void df_regno_debug (unsigned int, FILE *);
  825. extern void df_ref_debug (df_ref, FILE *);
  826. extern void debug_df_insn (rtx_insn *);
  827. extern void debug_df_regno (unsigned int);
  828. extern void debug_df_reg (rtx);
  829. extern void debug_df_defno (unsigned int);
  830. extern void debug_df_useno (unsigned int);
  831. extern void debug_df_ref (df_ref);
  832. extern void debug_df_chain (struct df_link *);
  833. /* Functions defined in df-problems.c. */
  834. extern struct df_link *df_chain_create (df_ref, df_ref);
  835. extern void df_chain_unlink (df_ref);
  836. extern void df_chain_copy (df_ref, struct df_link *);
  837. extern void df_grow_bb_info (struct dataflow *);
  838. extern void df_chain_dump (struct df_link *, FILE *);
  839. extern void df_print_bb_index (basic_block bb, FILE *file);
  840. extern void df_rd_add_problem (void);
  841. extern void df_rd_simulate_artificial_defs_at_top (basic_block, bitmap);
  842. extern void df_rd_simulate_one_insn (basic_block, rtx_insn *, bitmap);
  843. extern void df_lr_add_problem (void);
  844. extern void df_lr_verify_transfer_functions (void);
  845. extern void df_live_verify_transfer_functions (void);
  846. extern void df_live_add_problem (void);
  847. extern void df_live_set_all_dirty (void);
  848. extern void df_chain_add_problem (unsigned int);
  849. extern void df_word_lr_add_problem (void);
  850. extern bool df_word_lr_mark_ref (df_ref, bool, bitmap);
  851. extern bool df_word_lr_simulate_defs (rtx_insn *, bitmap);
  852. extern void df_word_lr_simulate_uses (rtx_insn *, bitmap);
  853. extern void df_word_lr_simulate_artificial_refs_at_top (basic_block, bitmap);
  854. extern void df_word_lr_simulate_artificial_refs_at_end (basic_block, bitmap);
  855. extern void df_note_add_problem (void);
  856. extern void df_md_add_problem (void);
  857. extern void df_md_simulate_artificial_defs_at_top (basic_block, bitmap);
  858. extern void df_md_simulate_one_insn (basic_block, rtx_insn *, bitmap);
  859. extern void df_mir_add_problem (void);
  860. extern void df_mir_simulate_one_insn (basic_block, rtx_insn *, bitmap, bitmap);
  861. extern void df_simulate_find_noclobber_defs (rtx_insn *, bitmap);
  862. extern void df_simulate_find_defs (rtx_insn *, bitmap);
  863. extern void df_simulate_defs (rtx_insn *, bitmap);
  864. extern void df_simulate_uses (rtx_insn *, bitmap);
  865. extern void df_simulate_initialize_backwards (basic_block, bitmap);
  866. extern void df_simulate_one_insn_backwards (basic_block, rtx_insn *, bitmap);
  867. extern void df_simulate_finalize_backwards (basic_block, bitmap);
  868. extern void df_simulate_initialize_forwards (basic_block, bitmap);
  869. extern void df_simulate_one_insn_forwards (basic_block, rtx_insn *, bitmap);
  870. extern void simulate_backwards_to_point (basic_block, regset, rtx);
  871. extern bool can_move_insns_across (rtx_insn *, rtx_insn *,
  872. rtx_insn *, rtx_insn *,
  873. basic_block, regset,
  874. regset, rtx_insn **);
  875. /* Functions defined in df-scan.c. */
  876. extern void df_scan_alloc (bitmap);
  877. extern void df_scan_add_problem (void);
  878. extern void df_grow_reg_info (void);
  879. extern void df_grow_insn_info (void);
  880. extern void df_scan_blocks (void);
  881. extern void df_uses_create (rtx *, rtx_insn *, int);
  882. extern struct df_insn_info * df_insn_create_insn_record (rtx_insn *);
  883. extern void df_insn_delete (rtx_insn *);
  884. extern void df_bb_refs_record (int, bool);
  885. extern bool df_insn_rescan (rtx_insn *);
  886. extern bool df_insn_rescan_debug_internal (rtx_insn *);
  887. extern void df_insn_rescan_all (void);
  888. extern void df_process_deferred_rescans (void);
  889. extern void df_recompute_luids (basic_block);
  890. extern void df_insn_change_bb (rtx_insn *, basic_block);
  891. extern void df_maybe_reorganize_use_refs (enum df_ref_order);
  892. extern void df_maybe_reorganize_def_refs (enum df_ref_order);
  893. extern void df_ref_change_reg_with_loc (rtx, unsigned int);
  894. extern void df_notes_rescan (rtx_insn *);
  895. extern void df_hard_reg_init (void);
  896. extern void df_update_entry_block_defs (void);
  897. extern void df_update_exit_block_uses (void);
  898. extern void df_update_entry_exit_and_calls (void);
  899. extern bool df_hard_reg_used_p (unsigned int);
  900. extern unsigned int df_hard_reg_used_count (unsigned int);
  901. extern bool df_regs_ever_live_p (unsigned int);
  902. extern void df_set_regs_ever_live (unsigned int, bool);
  903. extern void df_compute_regs_ever_live (bool);
  904. extern void df_scan_verify (void);
  905. /*----------------------------------------------------------------------------
  906. Public functions access functions for the dataflow problems.
  907. ----------------------------------------------------------------------------*/
  908. static inline struct df_scan_bb_info *
  909. df_scan_get_bb_info (unsigned int index)
  910. {
  911. if (index < df_scan->block_info_size)
  912. return &((struct df_scan_bb_info *) df_scan->block_info)[index];
  913. else
  914. return NULL;
  915. }
  916. static inline class df_rd_bb_info *
  917. df_rd_get_bb_info (unsigned int index)
  918. {
  919. if (index < df_rd->block_info_size)
  920. return &((class df_rd_bb_info *) df_rd->block_info)[index];
  921. else
  922. return NULL;
  923. }
  924. static inline class df_lr_bb_info *
  925. df_lr_get_bb_info (unsigned int index)
  926. {
  927. if (index < df_lr->block_info_size)
  928. return &((class df_lr_bb_info *) df_lr->block_info)[index];
  929. else
  930. return NULL;
  931. }
  932. static inline class df_md_bb_info *
  933. df_md_get_bb_info (unsigned int index)
  934. {
  935. if (index < df_md->block_info_size)
  936. return &((class df_md_bb_info *) df_md->block_info)[index];
  937. else
  938. return NULL;
  939. }
  940. static inline class df_live_bb_info *
  941. df_live_get_bb_info (unsigned int index)
  942. {
  943. if (index < df_live->block_info_size)
  944. return &((class df_live_bb_info *) df_live->block_info)[index];
  945. else
  946. return NULL;
  947. }
  948. static inline class df_word_lr_bb_info *
  949. df_word_lr_get_bb_info (unsigned int index)
  950. {
  951. if (index < df_word_lr->block_info_size)
  952. return &((class df_word_lr_bb_info *) df_word_lr->block_info)[index];
  953. else
  954. return NULL;
  955. }
  956. static inline class df_mir_bb_info *
  957. df_mir_get_bb_info (unsigned int index)
  958. {
  959. if (index < df_mir->block_info_size)
  960. return &((class df_mir_bb_info *) df_mir->block_info)[index];
  961. else
  962. return NULL;
  963. }
  964. /* Get the live at out set for BB no matter what problem happens to be
  965. defined. This function is used by the register allocators who
  966. choose different dataflow problems depending on the optimization
  967. level. */
  968. static inline bitmap
  969. df_get_live_out (basic_block bb)
  970. {
  971. gcc_checking_assert (df_lr);
  972. if (df_live)
  973. return DF_LIVE_OUT (bb);
  974. else
  975. return DF_LR_OUT (bb);
  976. }
  977. /* Get the live at in set for BB no matter what problem happens to be
  978. defined. This function is used by the register allocators who
  979. choose different dataflow problems depending on the optimization
  980. level. */
  981. static inline bitmap
  982. df_get_live_in (basic_block bb)
  983. {
  984. gcc_checking_assert (df_lr);
  985. if (df_live)
  986. return DF_LIVE_IN (bb);
  987. else
  988. return DF_LR_IN (bb);
  989. }
  990. /* Get basic block info. */
  991. /* Get the artificial defs for a basic block. */
  992. static inline df_ref
  993. df_get_artificial_defs (unsigned int bb_index)
  994. {
  995. return df_scan_get_bb_info (bb_index)->artificial_defs;
  996. }
  997. /* Get the artificial uses for a basic block. */
  998. static inline df_ref
  999. df_get_artificial_uses (unsigned int bb_index)
  1000. {
  1001. return df_scan_get_bb_info (bb_index)->artificial_uses;
  1002. }
  1003. /* If INSN defines exactly one register, return the associated reference,
  1004. otherwise return null. */
  1005. static inline df_ref
  1006. df_single_def (const df_insn_info *info)
  1007. {
  1008. df_ref defs = DF_INSN_INFO_DEFS (info);
  1009. return defs && !DF_REF_NEXT_LOC (defs) ? defs : NULL;
  1010. }
  1011. /* If INSN uses exactly one register, return the associated reference,
  1012. otherwise return null. */
  1013. static inline df_ref
  1014. df_single_use (const df_insn_info *info)
  1015. {
  1016. df_ref uses = DF_INSN_INFO_USES (info);
  1017. return uses && !DF_REF_NEXT_LOC (uses) ? uses : NULL;
  1018. }
  1019. /* web */
  1020. struct web_entry_base
  1021. {
  1022. private:
  1023. /* Reference to the parent in the union/find tree. */
  1024. web_entry_base *pred_pvt;
  1025. public:
  1026. /* Accessors. */
  1027. web_entry_base *pred () { return pred_pvt; }
  1028. void set_pred (web_entry_base *p) { pred_pvt = p; }
  1029. /* Find representative in union-find tree. */
  1030. web_entry_base *unionfind_root ();
  1031. /* Union with another set, returning TRUE if they are already unioned. */
  1032. friend bool unionfind_union (web_entry_base *first, web_entry_base *second);
  1033. };
  1034. #endif /* GCC_DF_H */