omp-expand.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /* Expansion pass for OMP directives. Outlines regions of certain OMP
  2. directives to separate functions, converts others into explicit calls to the
  3. runtime library (libgomp) and so forth
  4. Copyright (C) 2005-2019 Free Software Foundation, Inc.
  5. This file is part of GCC.
  6. GCC is free software; you can redistribute it and/or modify it under
  7. the terms of the GNU General Public License as published by the Free
  8. Software Foundation; either version 3, or (at your option) any later
  9. version.
  10. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. 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_OMP_EXPAND_H
  18. #define GCC_OMP_EXPAND_H
  19. struct omp_region;
  20. extern void omp_expand_local (basic_block head);
  21. extern void omp_free_regions (void);
  22. extern bool omp_make_gimple_edges (basic_block bb, struct omp_region **region,
  23. int *region_idx);
  24. #endif /* GCC_OMP_EXPAND_H */