hsa-builtins.def 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* This file contains the definitions and documentation for the
  2. Offloading and Multi Processing builtins used in the GNU compiler.
  3. Copyright (C) 2005-2019 Free Software Foundation, Inc.
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU General Public License as published by the Free
  7. Software Foundation; either version 3, or (at your option) any later
  8. version.
  9. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. /* Before including this file, you should define a macro:
  17. DEF_HSA_BUILTIN (ENUM, NAME, TYPE, ATTRS)
  18. See builtins.def for details. */
  19. /* The reason why they aren't in gcc/builtins.def is that the Fortran front end
  20. doesn't source those. */
  21. DEF_HSA_BUILTIN (BUILT_IN_HSA_WORKGROUPID, "hsa_workgroupid",
  22. BT_FN_UINT_UINT, ATTR_CONST_NOTHROW_LEAF_LIST)
  23. DEF_HSA_BUILTIN (BUILT_IN_HSA_WORKITEMID, "hsa_workitemid",
  24. BT_FN_UINT_UINT, ATTR_CONST_NOTHROW_LEAF_LIST)
  25. DEF_HSA_BUILTIN (BUILT_IN_HSA_WORKITEMABSID, "hsa_workitemabsid",
  26. BT_FN_UINT_UINT, ATTR_CONST_NOTHROW_LEAF_LIST)
  27. DEF_HSA_BUILTIN (BUILT_IN_HSA_GRIDSIZE, "hsa_gridsize",
  28. BT_FN_UINT_UINT, ATTR_CONST_NOTHROW_LEAF_LIST)
  29. DEF_HSA_BUILTIN (BUILT_IN_HSA_CURRENTWORKGROUPSIZE, "hsa_currentworkgroupsize",
  30. BT_FN_UINT_UINT, ATTR_CONST_NOTHROW_LEAF_LIST)