graphite-scop-detection.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /* Detection of Static Control Parts (SCoP) for Graphite.
  2. Copyright (C) 2009-2015 Free Software Foundation, Inc.
  3. Contributed by Sebastian Pop <sebastian.pop@amd.com> and
  4. Tobias Grosser <grosser@fim.uni-passau.de>.
  5. This file is part of GCC.
  6. GCC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 3, or (at your option)
  9. any later version.
  10. GCC is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with GCC; see the file COPYING3. If not see
  16. <http://www.gnu.org/licenses/>. */
  17. #ifndef GCC_GRAPHITE_SCOP_DETECTION_H
  18. #define GCC_GRAPHITE_SCOP_DETECTION_H
  19. extern void build_scops (vec<scop_p> *);
  20. extern void dot_all_scops (vec<scop_p> );
  21. extern void dot_scop (scop_p);
  22. #endif /* GCC_GRAPHITE_SCOP_DETECTION_H */