tree-phinodes.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Header file for PHI node routines
  2. Copyright (C) 2013-2019 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef GCC_TREE_PHINODES_H
  16. #define GCC_TREE_PHINODES_H
  17. extern void phinodes_print_statistics (void);
  18. extern void reserve_phi_args_for_new_edge (basic_block);
  19. extern void add_phi_node_to_bb (gphi *phi, basic_block bb);
  20. extern gphi *create_phi_node (tree, basic_block);
  21. extern void add_phi_arg (gphi *, tree, edge, location_t);
  22. extern void remove_phi_args (edge);
  23. extern void remove_phi_node (gimple_stmt_iterator *, bool);
  24. extern void remove_phi_nodes (basic_block);
  25. extern tree degenerate_phi_result (gphi *);
  26. extern void set_phi_nodes (basic_block, gimple_seq);
  27. static inline use_operand_p
  28. gimple_phi_arg_imm_use_ptr (gimple *gs, int i)
  29. {
  30. return &gimple_phi_arg (gs, i)->imm_use;
  31. }
  32. /* Return the phi argument which contains the specified use. */
  33. static inline int
  34. phi_arg_index_from_use (use_operand_p use)
  35. {
  36. struct phi_arg_d *element, *root;
  37. size_t index;
  38. gimple *phi;
  39. /* Since the use is the first thing in a PHI argument element, we can
  40. calculate its index based on casting it to an argument, and performing
  41. pointer arithmetic. */
  42. phi = USE_STMT (use);
  43. element = (struct phi_arg_d *)use;
  44. root = gimple_phi_arg (phi, 0);
  45. index = element - root;
  46. /* Make sure the calculation doesn't have any leftover bytes. If it does,
  47. then imm_use is likely not the first element in phi_arg_d. */
  48. gcc_checking_assert ((((char *)element - (char *)root)
  49. % sizeof (struct phi_arg_d)) == 0
  50. && index < gimple_phi_capacity (phi));
  51. return index;
  52. }
  53. #endif /* GCC_TREE_PHINODES_H */