df.h 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243
  1. /* Form lists of pseudo register references for autoinc optimization
  2. for GNU compiler. This is part of flow optimization.
  3. Copyright (C) 1999-2019 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. struct 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. struct df_d
  425. {
  426. /* The set of problems to be solved is stored in two arrays. In
  427. PROBLEMS_IN_ORDER, the problems are stored in the order that they
  428. are solved. This is an internally dense array that may have
  429. nulls at the end of it. In PROBLEMS_BY_INDEX, the problem is
  430. stored by the value in df_problem.id. These are used to access
  431. the problem local data without having to search the first
  432. array. */
  433. struct dataflow *problems_in_order[DF_LAST_PROBLEM_PLUS1];
  434. struct dataflow *problems_by_index[DF_LAST_PROBLEM_PLUS1];
  435. /* If not NULL, this subset of blocks of the program to be
  436. considered for analysis. At certain times, this will contain all
  437. the blocks in the function so it cannot be used as an indicator
  438. of if we are analyzing a subset. See analyze_subset. */
  439. bitmap blocks_to_analyze;
  440. /* The following information is really the problem data for the
  441. scanning instance but it is used too often by the other problems
  442. to keep getting it from there. */
  443. struct df_ref_info def_info; /* Def info. */
  444. struct df_ref_info use_info; /* Use info. */
  445. /* The following three arrays are allocated in parallel. They contain
  446. the sets of refs of each type for each reg. */
  447. struct df_reg_info **def_regs; /* Def reg info. */
  448. struct df_reg_info **use_regs; /* Eq_use reg info. */
  449. struct df_reg_info **eq_use_regs; /* Eq_use info. */
  450. unsigned int regs_size; /* Size of currently allocated regs table. */
  451. unsigned int regs_inited; /* Number of regs with reg_infos allocated. */
  452. struct df_insn_info **insns; /* Insn table, indexed by insn UID. */
  453. unsigned int insns_size; /* Size of insn table. */
  454. int num_problems_defined;
  455. bitmap_head hardware_regs_used; /* The set of hardware registers used. */
  456. /* The set of hard regs that are in the artificial uses at the end
  457. of a regular basic block. */
  458. bitmap_head regular_block_artificial_uses;
  459. /* The set of hard regs that are in the artificial uses at the end
  460. of a basic block that has an EH pred. */
  461. bitmap_head eh_block_artificial_uses;
  462. /* The set of hardware registers live on entry to the function. */
  463. bitmap entry_block_defs;
  464. bitmap exit_block_uses; /* The set of hardware registers used in exit block. */
  465. /* Insns to delete, rescan or reprocess the notes at next
  466. df_rescan_all or df_process_deferred_rescans. */
  467. bitmap_head insns_to_delete;
  468. bitmap_head insns_to_rescan;
  469. bitmap_head insns_to_notes_rescan;
  470. int *postorder; /* The current set of basic blocks
  471. in reverse postorder. */
  472. vec<int> postorder_inverted; /* The current set of basic blocks
  473. in reverse postorder of inverted CFG. */
  474. int n_blocks; /* The number of blocks in reverse postorder. */
  475. /* An array [FIRST_PSEUDO_REGISTER], indexed by regno, of the number
  476. of refs that qualify as being real hard regs uses. Artificial
  477. uses and defs as well as refs in eq notes are ignored. If the
  478. ref is a def, it cannot be a MAY_CLOBBER def. If the ref is a
  479. use, it cannot be the emim_reg_set or be the frame or arg pointer
  480. register. Uses in debug insns are ignored.
  481. IT IS NOT ACCEPTABLE TO MANUALLY CHANGE THIS ARRAY. This array
  482. always reflects the actual number of refs in the insn stream that
  483. satisfy the above criteria. */
  484. unsigned int *hard_regs_live_count;
  485. /* This counter provides a way to totally order refs without using
  486. addresses. It is incremented whenever a ref is created. */
  487. unsigned int ref_order;
  488. /* Problem specific control information. This is a combination of
  489. enum df_changeable_flags values. */
  490. int changeable_flags : 8;
  491. /* If this is true, then only a subset of the blocks of the program
  492. is considered to compute the solutions of dataflow problems. */
  493. bool analyze_subset;
  494. /* True if someone added or deleted something from regs_ever_live so
  495. that the entry and exit blocks need be reprocessed. */
  496. bool redo_entry_and_exit;
  497. };
  498. #define DF_SCAN_BB_INFO(BB) (df_scan_get_bb_info ((BB)->index))
  499. #define DF_RD_BB_INFO(BB) (df_rd_get_bb_info ((BB)->index))
  500. #define DF_LR_BB_INFO(BB) (df_lr_get_bb_info ((BB)->index))
  501. #define DF_LIVE_BB_INFO(BB) (df_live_get_bb_info ((BB)->index))
  502. #define DF_WORD_LR_BB_INFO(BB) (df_word_lr_get_bb_info ((BB)->index))
  503. #define DF_MD_BB_INFO(BB) (df_md_get_bb_info ((BB)->index))
  504. #define DF_MIR_BB_INFO(BB) (df_mir_get_bb_info ((BB)->index))
  505. /* Most transformations that wish to use live register analysis will
  506. use these macros. This info is the and of the lr and live sets. */
  507. #define DF_LIVE_IN(BB) (&DF_LIVE_BB_INFO (BB)->in)
  508. #define DF_LIVE_OUT(BB) (&DF_LIVE_BB_INFO (BB)->out)
  509. #define DF_MIR_IN(BB) (&DF_MIR_BB_INFO (BB)->in)
  510. #define DF_MIR_OUT(BB) (&DF_MIR_BB_INFO (BB)->out)
  511. /* These macros are used by passes that are not tolerant of
  512. uninitialized variables. This intolerance should eventually
  513. be fixed. */
  514. #define DF_LR_IN(BB) (&DF_LR_BB_INFO (BB)->in)
  515. #define DF_LR_OUT(BB) (&DF_LR_BB_INFO (BB)->out)
  516. /* These macros are used by passes that are not tolerant of
  517. uninitialized variables. This intolerance should eventually
  518. be fixed. */
  519. #define DF_WORD_LR_IN(BB) (&DF_WORD_LR_BB_INFO (BB)->in)
  520. #define DF_WORD_LR_OUT(BB) (&DF_WORD_LR_BB_INFO (BB)->out)
  521. /* Macros to access the elements within the ref structure. */
  522. #define DF_REF_REAL_REG(REF) (GET_CODE ((REF)->base.reg) == SUBREG \
  523. ? SUBREG_REG ((REF)->base.reg) : ((REF)->base.reg))
  524. #define DF_REF_REGNO(REF) ((REF)->base.regno)
  525. #define DF_REF_REAL_LOC(REF) (GET_CODE (*((REF)->regular_ref.loc)) == SUBREG \
  526. ? &SUBREG_REG (*((REF)->regular_ref.loc)) : ((REF)->regular_ref.loc))
  527. #define DF_REF_REG(REF) ((REF)->base.reg)
  528. #define DF_REF_LOC(REF) (DF_REF_CLASS (REF) == DF_REF_REGULAR ? \
  529. (REF)->regular_ref.loc : NULL)
  530. #define DF_REF_BB(REF) (DF_REF_IS_ARTIFICIAL (REF) \
  531. ? (REF)->artificial_ref.bb \
  532. : BLOCK_FOR_INSN (DF_REF_INSN (REF)))
  533. #define DF_REF_BBNO(REF) (DF_REF_BB (REF)->index)
  534. #define DF_REF_INSN_INFO(REF) ((REF)->base.insn_info)
  535. #define DF_REF_INSN(REF) ((REF)->base.insn_info->insn)
  536. #define DF_REF_INSN_UID(REF) (INSN_UID (DF_REF_INSN(REF)))
  537. #define DF_REF_CLASS(REF) ((REF)->base.cl)
  538. #define DF_REF_TYPE(REF) ((REF)->base.type)
  539. #define DF_REF_CHAIN(REF) ((REF)->base.chain)
  540. #define DF_REF_ID(REF) ((REF)->base.id)
  541. #define DF_REF_FLAGS(REF) ((REF)->base.flags)
  542. #define DF_REF_FLAGS_IS_SET(REF, v) ((DF_REF_FLAGS (REF) & (v)) != 0)
  543. #define DF_REF_FLAGS_SET(REF, v) (DF_REF_FLAGS (REF) |= (v))
  544. #define DF_REF_FLAGS_CLEAR(REF, v) (DF_REF_FLAGS (REF) &= ~(v))
  545. #define DF_REF_ORDER(REF) ((REF)->base.ref_order)
  546. /* If DF_REF_IS_ARTIFICIAL () is true, this is not a real
  547. definition/use, but an artificial one created to model always live
  548. registers, eh uses, etc. */
  549. #define DF_REF_IS_ARTIFICIAL(REF) (DF_REF_CLASS (REF) == DF_REF_ARTIFICIAL)
  550. #define DF_REF_REG_MARK(REF) (DF_REF_FLAGS_SET ((REF),DF_REF_REG_MARKER))
  551. #define DF_REF_REG_UNMARK(REF) (DF_REF_FLAGS_CLEAR ((REF),DF_REF_REG_MARKER))
  552. #define DF_REF_IS_REG_MARKED(REF) (DF_REF_FLAGS_IS_SET ((REF),DF_REF_REG_MARKER))
  553. #define DF_REF_NEXT_LOC(REF) ((REF)->base.next_loc)
  554. #define DF_REF_NEXT_REG(REF) ((REF)->base.next_reg)
  555. #define DF_REF_PREV_REG(REF) ((REF)->base.prev_reg)
  556. /* The following two macros may only be applied if one of
  557. DF_REF_SIGN_EXTRACT | DF_REF_ZERO_EXTRACT is true. */
  558. #define DF_REF_EXTRACT_WIDTH(REF) ((REF)->extract_ref.width)
  559. #define DF_REF_EXTRACT_OFFSET(REF) ((REF)->extract_ref.offset)
  560. #define DF_REF_EXTRACT_MODE(REF) ((REF)->extract_ref.mode)
  561. /* Macros to determine the reference type. */
  562. #define DF_REF_REG_DEF_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_DEF)
  563. #define DF_REF_REG_USE_P(REF) (!DF_REF_REG_DEF_P (REF))
  564. #define DF_REF_REG_MEM_STORE_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_STORE)
  565. #define DF_REF_REG_MEM_LOAD_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_LOAD)
  566. #define DF_REF_REG_MEM_P(REF) (DF_REF_REG_MEM_STORE_P (REF) \
  567. || DF_REF_REG_MEM_LOAD_P (REF))
  568. #define DF_MWS_REG_DEF_P(MREF) (DF_MWS_TYPE (MREF) == DF_REF_REG_DEF)
  569. #define DF_MWS_REG_USE_P(MREF) (!DF_MWS_REG_DEF_P (MREF))
  570. #define DF_MWS_NEXT(MREF) ((MREF)->next)
  571. #define DF_MWS_TYPE(MREF) ((MREF)->type)
  572. /* Macros to get the refs out of def_info or use_info refs table. If
  573. the focus of the dataflow has been set to some subset of blocks
  574. with df_set_blocks, these macros will only find the uses and defs
  575. in that subset of blocks.
  576. These macros should be used with care. The def macros are only
  577. usable after a call to df_maybe_reorganize_def_refs and the use
  578. macros are only usable after a call to
  579. df_maybe_reorganize_use_refs. HOWEVER, BUILDING AND USING THESE
  580. ARRAYS ARE A CACHE LOCALITY KILLER. */
  581. #define DF_DEFS_TABLE_SIZE() (df->def_info.table_size)
  582. #define DF_DEFS_GET(ID) (df->def_info.refs[(ID)])
  583. #define DF_DEFS_SET(ID,VAL) (df->def_info.refs[(ID)]=(VAL))
  584. #define DF_DEFS_COUNT(ID) (df->def_info.count[(ID)])
  585. #define DF_DEFS_BEGIN(ID) (df->def_info.begin[(ID)])
  586. #define DF_USES_TABLE_SIZE() (df->use_info.table_size)
  587. #define DF_USES_GET(ID) (df->use_info.refs[(ID)])
  588. #define DF_USES_SET(ID,VAL) (df->use_info.refs[(ID)]=(VAL))
  589. #define DF_USES_COUNT(ID) (df->use_info.count[(ID)])
  590. #define DF_USES_BEGIN(ID) (df->use_info.begin[(ID)])
  591. /* Macros to access the register information from scan dataflow record. */
  592. #define DF_REG_SIZE(DF) (df->regs_inited)
  593. #define DF_REG_DEF_GET(REG) (df->def_regs[(REG)])
  594. #define DF_REG_DEF_CHAIN(REG) (df->def_regs[(REG)]->reg_chain)
  595. #define DF_REG_DEF_COUNT(REG) (df->def_regs[(REG)]->n_refs)
  596. #define DF_REG_USE_GET(REG) (df->use_regs[(REG)])
  597. #define DF_REG_USE_CHAIN(REG) (df->use_regs[(REG)]->reg_chain)
  598. #define DF_REG_USE_COUNT(REG) (df->use_regs[(REG)]->n_refs)
  599. #define DF_REG_EQ_USE_GET(REG) (df->eq_use_regs[(REG)])
  600. #define DF_REG_EQ_USE_CHAIN(REG) (df->eq_use_regs[(REG)]->reg_chain)
  601. #define DF_REG_EQ_USE_COUNT(REG) (df->eq_use_regs[(REG)]->n_refs)
  602. /* Macros to access the elements within the reg_info structure table. */
  603. #define DF_REGNO_FIRST_DEF(REGNUM) \
  604. (DF_REG_DEF_GET(REGNUM) ? DF_REG_DEF_GET (REGNUM) : 0)
  605. #define DF_REGNO_LAST_USE(REGNUM) \
  606. (DF_REG_USE_GET(REGNUM) ? DF_REG_USE_GET (REGNUM) : 0)
  607. /* Macros to access the elements within the insn_info structure table. */
  608. #define DF_INSN_SIZE() ((df)->insns_size)
  609. #define DF_INSN_INFO_GET(INSN) (df->insns[(INSN_UID (INSN))])
  610. #define DF_INSN_INFO_SET(INSN,VAL) (df->insns[(INSN_UID (INSN))]=(VAL))
  611. #define DF_INSN_INFO_LUID(II) ((II)->luid)
  612. #define DF_INSN_INFO_DEFS(II) ((II)->defs)
  613. #define DF_INSN_INFO_USES(II) ((II)->uses)
  614. #define DF_INSN_INFO_EQ_USES(II) ((II)->eq_uses)
  615. #define DF_INSN_INFO_MWS(II) ((II)->mw_hardregs)
  616. #define DF_INSN_LUID(INSN) (DF_INSN_INFO_LUID (DF_INSN_INFO_GET (INSN)))
  617. #define DF_INSN_DEFS(INSN) (DF_INSN_INFO_DEFS (DF_INSN_INFO_GET (INSN)))
  618. #define DF_INSN_USES(INSN) (DF_INSN_INFO_USES (DF_INSN_INFO_GET (INSN)))
  619. #define DF_INSN_EQ_USES(INSN) (DF_INSN_INFO_EQ_USES (DF_INSN_INFO_GET (INSN)))
  620. #define DF_INSN_UID_GET(UID) (df->insns[(UID)])
  621. #define DF_INSN_UID_SET(UID,VAL) (df->insns[(UID)]=(VAL))
  622. #define DF_INSN_UID_SAFE_GET(UID) (((unsigned)(UID) < DF_INSN_SIZE ()) \
  623. ? DF_INSN_UID_GET (UID) \
  624. : NULL)
  625. #define DF_INSN_UID_LUID(INSN) (DF_INSN_UID_GET (INSN)->luid)
  626. #define DF_INSN_UID_DEFS(INSN) (DF_INSN_UID_GET (INSN)->defs)
  627. #define DF_INSN_UID_USES(INSN) (DF_INSN_UID_GET (INSN)->uses)
  628. #define DF_INSN_UID_EQ_USES(INSN) (DF_INSN_UID_GET (INSN)->eq_uses)
  629. #define DF_INSN_UID_MWS(INSN) (DF_INSN_UID_GET (INSN)->mw_hardregs)
  630. #define FOR_EACH_INSN_INFO_DEF(ITER, INSN) \
  631. for (ITER = DF_INSN_INFO_DEFS (INSN); ITER; ITER = DF_REF_NEXT_LOC (ITER))
  632. #define FOR_EACH_INSN_INFO_USE(ITER, INSN) \
  633. for (ITER = DF_INSN_INFO_USES (INSN); ITER; ITER = DF_REF_NEXT_LOC (ITER))
  634. #define FOR_EACH_INSN_INFO_EQ_USE(ITER, INSN) \
  635. for (ITER = DF_INSN_INFO_EQ_USES (INSN); ITER; ITER = DF_REF_NEXT_LOC (ITER))
  636. #define FOR_EACH_INSN_INFO_MW(ITER, INSN) \
  637. for (ITER = DF_INSN_INFO_MWS (INSN); ITER; ITER = DF_MWS_NEXT (ITER))
  638. #define FOR_EACH_INSN_DEF(ITER, INSN) \
  639. FOR_EACH_INSN_INFO_DEF(ITER, DF_INSN_INFO_GET (INSN))
  640. #define FOR_EACH_INSN_USE(ITER, INSN) \
  641. FOR_EACH_INSN_INFO_USE(ITER, DF_INSN_INFO_GET (INSN))
  642. #define FOR_EACH_INSN_EQ_USE(ITER, INSN) \
  643. FOR_EACH_INSN_INFO_EQ_USE(ITER, DF_INSN_INFO_GET (INSN))
  644. #define FOR_EACH_ARTIFICIAL_USE(ITER, BB_INDEX) \
  645. for (ITER = df_get_artificial_uses (BB_INDEX); ITER; \
  646. ITER = DF_REF_NEXT_LOC (ITER))
  647. #define FOR_EACH_ARTIFICIAL_DEF(ITER, BB_INDEX) \
  648. for (ITER = df_get_artificial_defs (BB_INDEX); ITER; \
  649. ITER = DF_REF_NEXT_LOC (ITER))
  650. /* An obstack for bitmap not related to specific dataflow problems.
  651. This obstack should e.g. be used for bitmaps with a short life time
  652. such as temporary bitmaps. This obstack is declared in df-core.c. */
  653. extern bitmap_obstack df_bitmap_obstack;
  654. /* One of these structures is allocated for every basic block. */
  655. struct df_scan_bb_info
  656. {
  657. /* The entry block has many artificial defs and these are at the
  658. bottom of the block.
  659. Blocks that are targets of exception edges may have some
  660. artificial defs. These are logically located at the top of the
  661. block.
  662. Blocks that are the targets of non-local goto's have the hard
  663. frame pointer defined at the top of the block. */
  664. df_ref artificial_defs;
  665. /* Blocks that are targets of exception edges may have some
  666. artificial uses. These are logically at the top of the block.
  667. Most blocks have artificial uses at the bottom of the block. */
  668. df_ref artificial_uses;
  669. };
  670. /* Reaching definitions. All bitmaps are indexed by the id field of
  671. the ref except sparse_kill which is indexed by regno. For the
  672. LR&RD problem, the kill set is not complete: It does not contain
  673. DEFs killed because the set register has died in the LR set. */
  674. struct df_rd_bb_info
  675. {
  676. /* Local sets to describe the basic blocks. */
  677. bitmap_head kill;
  678. bitmap_head sparse_kill;
  679. bitmap_head gen; /* The set of defs generated in this block. */
  680. /* The results of the dataflow problem. */
  681. bitmap_head in; /* At the top of the block. */
  682. bitmap_head out; /* At the bottom of the block. */
  683. };
  684. /* Multiple reaching definitions. All bitmaps are referenced by the
  685. register number. */
  686. struct df_md_bb_info
  687. {
  688. /* Local sets to describe the basic blocks. */
  689. bitmap_head gen; /* Partial/conditional definitions live at BB out. */
  690. bitmap_head kill; /* Other definitions that are live at BB out. */
  691. bitmap_head init; /* Definitions coming from dominance frontier edges. */
  692. /* The results of the dataflow problem. */
  693. bitmap_head in; /* Just before the block itself. */
  694. bitmap_head out; /* At the bottom of the block. */
  695. };
  696. /* Live registers, a backwards dataflow problem. All bitmaps are
  697. referenced by the register number. */
  698. struct df_lr_bb_info
  699. {
  700. /* Local sets to describe the basic blocks. */
  701. bitmap_head def; /* The set of registers set in this block
  702. - except artificial defs at the top. */
  703. bitmap_head use; /* The set of registers used in this block. */
  704. /* The results of the dataflow problem. */
  705. bitmap_head in; /* Just before the block itself. */
  706. bitmap_head out; /* At the bottom of the block. */
  707. };
  708. /* Uninitialized registers. All bitmaps are referenced by the
  709. register number. Anded results of the forwards and backward live
  710. info. Note that the forwards live information is not available
  711. separately. */
  712. struct df_live_bb_info
  713. {
  714. /* Local sets to describe the basic blocks. */
  715. bitmap_head kill; /* The set of registers unset in this block. Calls,
  716. for instance, unset registers. */
  717. bitmap_head gen; /* The set of registers set in this block. */
  718. /* The results of the dataflow problem. */
  719. bitmap_head in; /* At the top of the block. */
  720. bitmap_head out; /* At the bottom of the block. */
  721. };
  722. /* Live registers, a backwards dataflow problem. These bitmaps are
  723. indexed by 2 * regno for each pseudo and have two entries for each
  724. pseudo. Only pseudos that have a size of 2 * UNITS_PER_WORD are
  725. meaningfully tracked. */
  726. struct df_word_lr_bb_info
  727. {
  728. /* Local sets to describe the basic blocks. */
  729. bitmap_head def; /* The set of registers set in this block
  730. - except artificial defs at the top. */
  731. bitmap_head use; /* The set of registers used in this block. */
  732. /* The results of the dataflow problem. */
  733. bitmap_head in; /* Just before the block itself. */
  734. bitmap_head out; /* At the bottom of the block. */
  735. };
  736. /* Must-initialized registers. All bitmaps are referenced by the
  737. register number. */
  738. struct df_mir_bb_info
  739. {
  740. /* Local sets to describe the basic blocks. */
  741. bitmap_head kill; /* The set of registers unset in this block. Calls,
  742. for instance, unset registers. */
  743. bitmap_head gen; /* The set of registers set in this block, excluding the
  744. ones killed later on in this block. */
  745. /* The results of the dataflow problem. */
  746. bitmap_head in; /* At the top of the block. */
  747. bitmap_head out; /* At the bottom of the block. */
  748. };
  749. /* This is used for debugging and for the dumpers to find the latest
  750. instance so that the df info can be added to the dumps. This
  751. should not be used by regular code. */
  752. extern struct df_d *df;
  753. #define df_scan (df->problems_by_index[DF_SCAN])
  754. #define df_rd (df->problems_by_index[DF_RD])
  755. #define df_lr (df->problems_by_index[DF_LR])
  756. #define df_live (df->problems_by_index[DF_LIVE])
  757. #define df_chain (df->problems_by_index[DF_CHAIN])
  758. #define df_word_lr (df->problems_by_index[DF_WORD_LR])
  759. #define df_note (df->problems_by_index[DF_NOTE])
  760. #define df_md (df->problems_by_index[DF_MD])
  761. #define df_mir (df->problems_by_index[DF_MIR])
  762. /* This symbol turns on checking that each modification of the cfg has
  763. been identified to the appropriate df routines. It is not part of
  764. verification per se because the check that the final solution has
  765. not changed covers this. However, if the solution is not being
  766. properly recomputed because the cfg is being modified, adding in
  767. calls to df_check_cfg_clean can be used to find the source of that
  768. kind of problem. */
  769. #if 0
  770. #define DF_DEBUG_CFG
  771. #endif
  772. /* Functions defined in df-core.c. */
  773. extern void df_add_problem (const struct df_problem *);
  774. extern int df_set_flags (int);
  775. extern int df_clear_flags (int);
  776. extern void df_set_blocks (bitmap);
  777. extern void df_remove_problem (struct dataflow *);
  778. extern void df_finish_pass (bool);
  779. extern void df_analyze_problem (struct dataflow *, bitmap, int *, int);
  780. extern void df_analyze ();
  781. extern void df_analyze_loop (struct loop *);
  782. extern int df_get_n_blocks (enum df_flow_dir);
  783. extern int *df_get_postorder (enum df_flow_dir);
  784. extern void df_simple_dataflow (enum df_flow_dir, df_init_function,
  785. df_confluence_function_0, df_confluence_function_n,
  786. df_transfer_function, bitmap, int *, int);
  787. extern void df_mark_solutions_dirty (void);
  788. extern bool df_get_bb_dirty (basic_block);
  789. extern void df_set_bb_dirty (basic_block);
  790. extern void df_compact_blocks (void);
  791. extern void df_bb_replace (int, basic_block);
  792. extern void df_bb_delete (int);
  793. extern void df_verify (void);
  794. #ifdef DF_DEBUG_CFG
  795. extern void df_check_cfg_clean (void);
  796. #endif
  797. extern df_ref df_bb_regno_first_def_find (basic_block, unsigned int);
  798. extern df_ref df_bb_regno_last_def_find (basic_block, unsigned int);
  799. extern df_ref df_find_def (rtx_insn *, rtx);
  800. extern bool df_reg_defined (rtx_insn *, rtx);
  801. extern df_ref df_find_use (rtx_insn *, rtx);
  802. extern bool df_reg_used (rtx_insn *, rtx);
  803. extern void df_worklist_dataflow (struct dataflow *,bitmap, int *, int);
  804. extern void df_print_regset (FILE *file, bitmap r);
  805. extern void df_print_word_regset (FILE *file, bitmap r);
  806. extern void df_dump (FILE *);
  807. extern void df_dump_region (FILE *);
  808. extern void df_dump_start (FILE *);
  809. extern void df_dump_top (basic_block, FILE *);
  810. extern void df_dump_bottom (basic_block, FILE *);
  811. extern void df_dump_insn_top (const rtx_insn *, FILE *);
  812. extern void df_dump_insn_bottom (const rtx_insn *, FILE *);
  813. extern void df_refs_chain_dump (df_ref, bool, FILE *);
  814. extern void df_regs_chain_dump (df_ref, FILE *);
  815. extern void df_insn_debug (rtx_insn *, bool, FILE *);
  816. extern void df_insn_debug_regno (rtx_insn *, FILE *);
  817. extern void df_regno_debug (unsigned int, FILE *);
  818. extern void df_ref_debug (df_ref, FILE *);
  819. extern void debug_df_insn (rtx_insn *);
  820. extern void debug_df_regno (unsigned int);
  821. extern void debug_df_reg (rtx);
  822. extern void debug_df_defno (unsigned int);
  823. extern void debug_df_useno (unsigned int);
  824. extern void debug_df_ref (df_ref);
  825. extern void debug_df_chain (struct df_link *);
  826. /* Functions defined in df-problems.c. */
  827. extern struct df_link *df_chain_create (df_ref, df_ref);
  828. extern void df_chain_unlink (df_ref);
  829. extern void df_chain_copy (df_ref, struct df_link *);
  830. extern void df_grow_bb_info (struct dataflow *);
  831. extern void df_chain_dump (struct df_link *, FILE *);
  832. extern void df_print_bb_index (basic_block bb, FILE *file);
  833. extern void df_rd_add_problem (void);
  834. extern void df_rd_simulate_artificial_defs_at_top (basic_block, bitmap);
  835. extern void df_rd_simulate_one_insn (basic_block, rtx_insn *, bitmap);
  836. extern void df_lr_add_problem (void);
  837. extern void df_lr_verify_transfer_functions (void);
  838. extern void df_live_verify_transfer_functions (void);
  839. extern void df_live_add_problem (void);
  840. extern void df_live_set_all_dirty (void);
  841. extern void df_chain_add_problem (unsigned int);
  842. extern void df_word_lr_add_problem (void);
  843. extern bool df_word_lr_mark_ref (df_ref, bool, bitmap);
  844. extern bool df_word_lr_simulate_defs (rtx_insn *, bitmap);
  845. extern void df_word_lr_simulate_uses (rtx_insn *, bitmap);
  846. extern void df_word_lr_simulate_artificial_refs_at_top (basic_block, bitmap);
  847. extern void df_word_lr_simulate_artificial_refs_at_end (basic_block, bitmap);
  848. extern void df_note_add_problem (void);
  849. extern void df_md_add_problem (void);
  850. extern void df_md_simulate_artificial_defs_at_top (basic_block, bitmap);
  851. extern void df_md_simulate_one_insn (basic_block, rtx_insn *, bitmap);
  852. extern void df_mir_add_problem (void);
  853. extern void df_mir_simulate_one_insn (basic_block, rtx_insn *, bitmap, bitmap);
  854. extern void df_simulate_find_noclobber_defs (rtx_insn *, bitmap);
  855. extern void df_simulate_find_defs (rtx_insn *, bitmap);
  856. extern void df_simulate_defs (rtx_insn *, bitmap);
  857. extern void df_simulate_uses (rtx_insn *, bitmap);
  858. extern void df_simulate_initialize_backwards (basic_block, bitmap);
  859. extern void df_simulate_one_insn_backwards (basic_block, rtx_insn *, bitmap);
  860. extern void df_simulate_finalize_backwards (basic_block, bitmap);
  861. extern void df_simulate_initialize_forwards (basic_block, bitmap);
  862. extern void df_simulate_one_insn_forwards (basic_block, rtx_insn *, bitmap);
  863. extern void simulate_backwards_to_point (basic_block, regset, rtx);
  864. extern bool can_move_insns_across (rtx_insn *, rtx_insn *,
  865. rtx_insn *, rtx_insn *,
  866. basic_block, regset,
  867. regset, rtx_insn **);
  868. /* Functions defined in df-scan.c. */
  869. extern void df_scan_alloc (bitmap);
  870. extern void df_scan_add_problem (void);
  871. extern void df_grow_reg_info (void);
  872. extern void df_grow_insn_info (void);
  873. extern void df_scan_blocks (void);
  874. extern void df_uses_create (rtx *, rtx_insn *, int);
  875. extern struct df_insn_info * df_insn_create_insn_record (rtx_insn *);
  876. extern void df_insn_delete (rtx_insn *);
  877. extern void df_bb_refs_record (int, bool);
  878. extern bool df_insn_rescan (rtx_insn *);
  879. extern bool df_insn_rescan_debug_internal (rtx_insn *);
  880. extern void df_insn_rescan_all (void);
  881. extern void df_process_deferred_rescans (void);
  882. extern void df_recompute_luids (basic_block);
  883. extern void df_insn_change_bb (rtx_insn *, basic_block);
  884. extern void df_maybe_reorganize_use_refs (enum df_ref_order);
  885. extern void df_maybe_reorganize_def_refs (enum df_ref_order);
  886. extern void df_ref_change_reg_with_loc (rtx, unsigned int);
  887. extern void df_notes_rescan (rtx_insn *);
  888. extern void df_hard_reg_init (void);
  889. extern void df_update_entry_block_defs (void);
  890. extern void df_update_exit_block_uses (void);
  891. extern void df_update_entry_exit_and_calls (void);
  892. extern bool df_hard_reg_used_p (unsigned int);
  893. extern unsigned int df_hard_reg_used_count (unsigned int);
  894. extern bool df_regs_ever_live_p (unsigned int);
  895. extern void df_set_regs_ever_live (unsigned int, bool);
  896. extern void df_compute_regs_ever_live (bool);
  897. extern void df_scan_verify (void);
  898. /*----------------------------------------------------------------------------
  899. Public functions access functions for the dataflow problems.
  900. ----------------------------------------------------------------------------*/
  901. static inline struct df_scan_bb_info *
  902. df_scan_get_bb_info (unsigned int index)
  903. {
  904. if (index < df_scan->block_info_size)
  905. return &((struct df_scan_bb_info *) df_scan->block_info)[index];
  906. else
  907. return NULL;
  908. }
  909. static inline struct df_rd_bb_info *
  910. df_rd_get_bb_info (unsigned int index)
  911. {
  912. if (index < df_rd->block_info_size)
  913. return &((struct df_rd_bb_info *) df_rd->block_info)[index];
  914. else
  915. return NULL;
  916. }
  917. static inline struct df_lr_bb_info *
  918. df_lr_get_bb_info (unsigned int index)
  919. {
  920. if (index < df_lr->block_info_size)
  921. return &((struct df_lr_bb_info *) df_lr->block_info)[index];
  922. else
  923. return NULL;
  924. }
  925. static inline struct df_md_bb_info *
  926. df_md_get_bb_info (unsigned int index)
  927. {
  928. if (index < df_md->block_info_size)
  929. return &((struct df_md_bb_info *) df_md->block_info)[index];
  930. else
  931. return NULL;
  932. }
  933. static inline struct df_live_bb_info *
  934. df_live_get_bb_info (unsigned int index)
  935. {
  936. if (index < df_live->block_info_size)
  937. return &((struct df_live_bb_info *) df_live->block_info)[index];
  938. else
  939. return NULL;
  940. }
  941. static inline struct df_word_lr_bb_info *
  942. df_word_lr_get_bb_info (unsigned int index)
  943. {
  944. if (index < df_word_lr->block_info_size)
  945. return &((struct df_word_lr_bb_info *) df_word_lr->block_info)[index];
  946. else
  947. return NULL;
  948. }
  949. static inline struct df_mir_bb_info *
  950. df_mir_get_bb_info (unsigned int index)
  951. {
  952. if (index < df_mir->block_info_size)
  953. return &((struct df_mir_bb_info *) df_mir->block_info)[index];
  954. else
  955. return NULL;
  956. }
  957. /* Get the live at out set for BB no matter what problem happens to be
  958. defined. This function is used by the register allocators who
  959. choose different dataflow problems depending on the optimization
  960. level. */
  961. static inline bitmap
  962. df_get_live_out (basic_block bb)
  963. {
  964. gcc_checking_assert (df_lr);
  965. if (df_live)
  966. return DF_LIVE_OUT (bb);
  967. else
  968. return DF_LR_OUT (bb);
  969. }
  970. /* Get the live at in set for BB no matter what problem happens to be
  971. defined. This function is used by the register allocators who
  972. choose different dataflow problems depending on the optimization
  973. level. */
  974. static inline bitmap
  975. df_get_live_in (basic_block bb)
  976. {
  977. gcc_checking_assert (df_lr);
  978. if (df_live)
  979. return DF_LIVE_IN (bb);
  980. else
  981. return DF_LR_IN (bb);
  982. }
  983. /* Get basic block info. */
  984. /* Get the artificial defs for a basic block. */
  985. static inline df_ref
  986. df_get_artificial_defs (unsigned int bb_index)
  987. {
  988. return df_scan_get_bb_info (bb_index)->artificial_defs;
  989. }
  990. /* Get the artificial uses for a basic block. */
  991. static inline df_ref
  992. df_get_artificial_uses (unsigned int bb_index)
  993. {
  994. return df_scan_get_bb_info (bb_index)->artificial_uses;
  995. }
  996. /* If INSN defines exactly one register, return the associated reference,
  997. otherwise return null. */
  998. static inline df_ref
  999. df_single_def (const df_insn_info *info)
  1000. {
  1001. df_ref defs = DF_INSN_INFO_DEFS (info);
  1002. return defs && !DF_REF_NEXT_LOC (defs) ? defs : NULL;
  1003. }
  1004. /* If INSN uses exactly one register, return the associated reference,
  1005. otherwise return null. */
  1006. static inline df_ref
  1007. df_single_use (const df_insn_info *info)
  1008. {
  1009. df_ref uses = DF_INSN_INFO_USES (info);
  1010. return uses && !DF_REF_NEXT_LOC (uses) ? uses : NULL;
  1011. }
  1012. /* web */
  1013. class web_entry_base
  1014. {
  1015. private:
  1016. /* Reference to the parent in the union/find tree. */
  1017. web_entry_base *pred_pvt;
  1018. public:
  1019. /* Accessors. */
  1020. web_entry_base *pred () { return pred_pvt; }
  1021. void set_pred (web_entry_base *p) { pred_pvt = p; }
  1022. /* Find representative in union-find tree. */
  1023. web_entry_base *unionfind_root ();
  1024. /* Union with another set, returning TRUE if they are already unioned. */
  1025. friend bool unionfind_union (web_entry_base *first, web_entry_base *second);
  1026. };
  1027. #endif /* GCC_DF_H */