tree-ssa-threadedge.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Header file for SSA jump threading.
  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_SSA_THREADEDGE_H
  16. #define GCC_TREE_SSA_THREADEDGE_H
  17. extern vec<tree> ssa_name_values;
  18. #define SSA_NAME_VALUE(x) \
  19. (SSA_NAME_VERSION (x) < ssa_name_values.length () \
  20. ? ssa_name_values[SSA_NAME_VERSION (x)] \
  21. : NULL_TREE)
  22. extern void set_ssa_name_value (tree, tree);
  23. extern void threadedge_initialize_values (void);
  24. extern void threadedge_finalize_values (void);
  25. extern bool potentially_threadable_block (basic_block);
  26. extern void propagate_threaded_block_debug_into (basic_block, basic_block);
  27. class evrp_range_analyzer;
  28. extern void thread_outgoing_edges (basic_block, gcond *,
  29. const_and_copies *,
  30. avail_exprs_stack *,
  31. evrp_range_analyzer *,
  32. tree (*) (gimple *, gimple *,
  33. avail_exprs_stack *, basic_block));
  34. #endif /* GCC_TREE_SSA_THREADEDGE_H */