You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

384 line
17KB

  1. /* Internal functions.
  2. Copyright (C) 2011-2020 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. /* This file specifies a list of internal "functions". These functions
  16. differ from built-in functions in that they have no linkage and cannot
  17. be called directly by the user. They represent operations that are only
  18. synthesised by GCC itself.
  19. Internal functions are used instead of tree codes if the operation
  20. and its operands are more naturally represented as a GIMPLE_CALL
  21. than a GIMPLE_ASSIGN.
  22. Each entry in this file has one of the forms:
  23. DEF_INTERNAL_FN (NAME, FLAGS, FNSPEC)
  24. DEF_INTERNAL_OPTAB_FN (NAME, FLAGS, OPTAB, TYPE)
  25. DEF_INTERNAL_SIGNED_OPTAB_FN (NAME, FLAGS, SELECTOR, SIGNED_OPTAB,
  26. UNSIGNED_OPTAB, TYPE)
  27. DEF_INTERNAL_FLT_FN (NAME, FLAGS, OPTAB, TYPE)
  28. DEF_INTERNAL_INT_FN (NAME, FLAGS, OPTAB, TYPE)
  29. where NAME is the name of the function, FLAGS is a set of
  30. ECF_* flags and FNSPEC is a string describing functions fnspec.
  31. DEF_INTERNAL_OPTAB_FN defines an internal function that maps to a
  32. direct optab. The function should only be called with a given
  33. set of types if the associated optab is available for the modes
  34. of those types. OPTAB says what optab to use (without the trailing
  35. "_optab") and TYPE categorizes the optab based on its inputs and
  36. outputs. The possible types of optab are:
  37. - mask_load: currently just maskload
  38. - load_lanes: currently just vec_load_lanes
  39. - mask_load_lanes: currently just vec_mask_load_lanes
  40. - gather_load: used for {mask_,}gather_load
  41. - mask_store: currently just maskstore
  42. - store_lanes: currently just vec_store_lanes
  43. - mask_store_lanes: currently just vec_mask_store_lanes
  44. - scatter_store: used for {mask_,}scatter_store
  45. - unary: a normal unary optab, such as vec_reverse_<mode>
  46. - binary: a normal binary optab, such as vec_interleave_lo_<mode>
  47. - ternary: a normal ternary optab, such as fma<mode>4
  48. - cond_binary: a conditional binary optab, such as cond_add<mode>
  49. - cond_ternary: a conditional ternary optab, such as cond_fma_rev<mode>
  50. - fold_left: for scalar = FN (scalar, vector), keyed off the vector mode
  51. - check_ptrs: used for check_{raw,war}_ptrs
  52. DEF_INTERNAL_SIGNED_OPTAB_FN defines an internal function that
  53. maps to one of two optabs, depending on the signedness of an input.
  54. SIGNED_OPTAB and UNSIGNED_OPTAB are the optabs for signed and
  55. unsigned inputs respectively, both without the trailing "_optab".
  56. SELECTOR says which type in the tree_pair determines the signedness.
  57. DEF_INTERNAL_FLT_FN is like DEF_INTERNAL_OPTAB_FN, but in addition,
  58. the function implements the computational part of a built-in math
  59. function BUILT_IN_<NAME>{F,,L}. Unlike some built-in functions,
  60. these internal functions never set errno.
  61. DEF_INTERNAL_INT_FN is like DEF_INTERNAL_OPTAB_FN, but in addition
  62. says that the function extends the C-level BUILT_IN_<NAME>{,L,LL,IMAX}
  63. group of functions to any integral mode (including vector modes).
  64. Each entry must have a corresponding expander of the form:
  65. void expand_NAME (gimple_call stmt)
  66. where STMT is the statement that performs the call. These are generated
  67. automatically for optab functions and call out to a function or macro
  68. called expand_<TYPE>_optab_fn. */
  69. #ifndef DEF_INTERNAL_FN
  70. #define DEF_INTERNAL_FN(CODE, FLAGS, FNSPEC)
  71. #endif
  72. #ifndef DEF_INTERNAL_OPTAB_FN
  73. #define DEF_INTERNAL_OPTAB_FN(NAME, FLAGS, OPTAB, TYPE) \
  74. DEF_INTERNAL_FN (NAME, FLAGS | ECF_LEAF, NULL)
  75. #endif
  76. #ifndef DEF_INTERNAL_SIGNED_OPTAB_FN
  77. #define DEF_INTERNAL_SIGNED_OPTAB_FN(NAME, FLAGS, SELECTOR, SIGNED_OPTAB, \
  78. UNSIGNED_OPTAB, TYPE) \
  79. DEF_INTERNAL_FN (NAME, FLAGS | ECF_LEAF, NULL)
  80. #endif
  81. #ifndef DEF_INTERNAL_FLT_FN
  82. #define DEF_INTERNAL_FLT_FN(NAME, FLAGS, OPTAB, TYPE) \
  83. DEF_INTERNAL_OPTAB_FN (NAME, FLAGS, OPTAB, TYPE)
  84. #endif
  85. #ifndef DEF_INTERNAL_FLT_FLOATN_FN
  86. #define DEF_INTERNAL_FLT_FLOATN_FN(NAME, FLAGS, OPTAB, TYPE) \
  87. DEF_INTERNAL_FLT_FN (NAME, FLAGS, OPTAB, TYPE)
  88. #endif
  89. #ifndef DEF_INTERNAL_INT_FN
  90. #define DEF_INTERNAL_INT_FN(NAME, FLAGS, OPTAB, TYPE) \
  91. DEF_INTERNAL_OPTAB_FN (NAME, FLAGS, OPTAB, TYPE)
  92. #endif
  93. DEF_INTERNAL_OPTAB_FN (MASK_LOAD, ECF_PURE, maskload, mask_load)
  94. DEF_INTERNAL_OPTAB_FN (LOAD_LANES, ECF_CONST, vec_load_lanes, load_lanes)
  95. DEF_INTERNAL_OPTAB_FN (MASK_LOAD_LANES, ECF_PURE,
  96. vec_mask_load_lanes, mask_load_lanes)
  97. DEF_INTERNAL_OPTAB_FN (GATHER_LOAD, ECF_PURE, gather_load, gather_load)
  98. DEF_INTERNAL_OPTAB_FN (MASK_GATHER_LOAD, ECF_PURE,
  99. mask_gather_load, gather_load)
  100. DEF_INTERNAL_OPTAB_FN (SCATTER_STORE, 0, scatter_store, scatter_store)
  101. DEF_INTERNAL_OPTAB_FN (MASK_SCATTER_STORE, 0,
  102. mask_scatter_store, scatter_store)
  103. DEF_INTERNAL_OPTAB_FN (MASK_STORE, 0, maskstore, mask_store)
  104. DEF_INTERNAL_OPTAB_FN (STORE_LANES, ECF_CONST, vec_store_lanes, store_lanes)
  105. DEF_INTERNAL_OPTAB_FN (MASK_STORE_LANES, 0,
  106. vec_mask_store_lanes, mask_store_lanes)
  107. DEF_INTERNAL_OPTAB_FN (WHILE_ULT, ECF_CONST | ECF_NOTHROW, while_ult, while)
  108. DEF_INTERNAL_OPTAB_FN (CHECK_RAW_PTRS, ECF_CONST | ECF_NOTHROW,
  109. check_raw_ptrs, check_ptrs)
  110. DEF_INTERNAL_OPTAB_FN (CHECK_WAR_PTRS, ECF_CONST | ECF_NOTHROW,
  111. check_war_ptrs, check_ptrs)
  112. DEF_INTERNAL_OPTAB_FN (VEC_SHL_INSERT, ECF_CONST | ECF_NOTHROW,
  113. vec_shl_insert, binary)
  114. DEF_INTERNAL_OPTAB_FN (DIV_POW2, ECF_CONST | ECF_NOTHROW, sdiv_pow2, binary)
  115. DEF_INTERNAL_OPTAB_FN (FMS, ECF_CONST, fms, ternary)
  116. DEF_INTERNAL_OPTAB_FN (FNMA, ECF_CONST, fnma, ternary)
  117. DEF_INTERNAL_OPTAB_FN (FNMS, ECF_CONST, fnms, ternary)
  118. DEF_INTERNAL_SIGNED_OPTAB_FN (AVG_FLOOR, ECF_CONST | ECF_NOTHROW, first,
  119. savg_floor, uavg_floor, binary)
  120. DEF_INTERNAL_SIGNED_OPTAB_FN (AVG_CEIL, ECF_CONST | ECF_NOTHROW, first,
  121. savg_ceil, uavg_ceil, binary)
  122. DEF_INTERNAL_SIGNED_OPTAB_FN (MULHS, ECF_CONST | ECF_NOTHROW, first,
  123. smulhs, umulhs, binary)
  124. DEF_INTERNAL_SIGNED_OPTAB_FN (MULHRS, ECF_CONST | ECF_NOTHROW, first,
  125. smulhrs, umulhrs, binary)
  126. DEF_INTERNAL_OPTAB_FN (COND_ADD, ECF_CONST, cond_add, cond_binary)
  127. DEF_INTERNAL_OPTAB_FN (COND_SUB, ECF_CONST, cond_sub, cond_binary)
  128. DEF_INTERNAL_OPTAB_FN (COND_MUL, ECF_CONST, cond_smul, cond_binary)
  129. DEF_INTERNAL_SIGNED_OPTAB_FN (COND_DIV, ECF_CONST, first,
  130. cond_sdiv, cond_udiv, cond_binary)
  131. DEF_INTERNAL_SIGNED_OPTAB_FN (COND_MOD, ECF_CONST, first,
  132. cond_smod, cond_umod, cond_binary)
  133. DEF_INTERNAL_OPTAB_FN (COND_RDIV, ECF_CONST, cond_sdiv, cond_binary)
  134. DEF_INTERNAL_SIGNED_OPTAB_FN (COND_MIN, ECF_CONST, first,
  135. cond_smin, cond_umin, cond_binary)
  136. DEF_INTERNAL_SIGNED_OPTAB_FN (COND_MAX, ECF_CONST, first,
  137. cond_smax, cond_umax, cond_binary)
  138. DEF_INTERNAL_OPTAB_FN (COND_AND, ECF_CONST | ECF_NOTHROW,
  139. cond_and, cond_binary)
  140. DEF_INTERNAL_OPTAB_FN (COND_IOR, ECF_CONST | ECF_NOTHROW,
  141. cond_ior, cond_binary)
  142. DEF_INTERNAL_OPTAB_FN (COND_XOR, ECF_CONST | ECF_NOTHROW,
  143. cond_xor, cond_binary)
  144. DEF_INTERNAL_OPTAB_FN (COND_SHL, ECF_CONST | ECF_NOTHROW,
  145. cond_ashl, cond_binary)
  146. DEF_INTERNAL_SIGNED_OPTAB_FN (COND_SHR, ECF_CONST | ECF_NOTHROW, first,
  147. cond_ashr, cond_lshr, cond_binary)
  148. DEF_INTERNAL_OPTAB_FN (COND_FMA, ECF_CONST, cond_fma, cond_ternary)
  149. DEF_INTERNAL_OPTAB_FN (COND_FMS, ECF_CONST, cond_fms, cond_ternary)
  150. DEF_INTERNAL_OPTAB_FN (COND_FNMA, ECF_CONST, cond_fnma, cond_ternary)
  151. DEF_INTERNAL_OPTAB_FN (COND_FNMS, ECF_CONST, cond_fnms, cond_ternary)
  152. DEF_INTERNAL_OPTAB_FN (RSQRT, ECF_CONST, rsqrt, unary)
  153. DEF_INTERNAL_OPTAB_FN (REDUC_PLUS, ECF_CONST | ECF_NOTHROW,
  154. reduc_plus_scal, unary)
  155. DEF_INTERNAL_SIGNED_OPTAB_FN (REDUC_MAX, ECF_CONST | ECF_NOTHROW, first,
  156. reduc_smax_scal, reduc_umax_scal, unary)
  157. DEF_INTERNAL_SIGNED_OPTAB_FN (REDUC_MIN, ECF_CONST | ECF_NOTHROW, first,
  158. reduc_smin_scal, reduc_umin_scal, unary)
  159. DEF_INTERNAL_OPTAB_FN (REDUC_AND, ECF_CONST | ECF_NOTHROW,
  160. reduc_and_scal, unary)
  161. DEF_INTERNAL_OPTAB_FN (REDUC_IOR, ECF_CONST | ECF_NOTHROW,
  162. reduc_ior_scal, unary)
  163. DEF_INTERNAL_OPTAB_FN (REDUC_XOR, ECF_CONST | ECF_NOTHROW,
  164. reduc_xor_scal, unary)
  165. /* Extract the last active element from a vector. */
  166. DEF_INTERNAL_OPTAB_FN (EXTRACT_LAST, ECF_CONST | ECF_NOTHROW,
  167. extract_last, fold_left)
  168. /* Same, but return the first argument if no elements are active. */
  169. DEF_INTERNAL_OPTAB_FN (FOLD_EXTRACT_LAST, ECF_CONST | ECF_NOTHROW,
  170. fold_extract_last, fold_extract)
  171. DEF_INTERNAL_OPTAB_FN (FOLD_LEFT_PLUS, ECF_CONST | ECF_NOTHROW,
  172. fold_left_plus, fold_left)
  173. DEF_INTERNAL_OPTAB_FN (MASK_FOLD_LEFT_PLUS, ECF_CONST | ECF_NOTHROW,
  174. mask_fold_left_plus, mask_fold_left)
  175. /* Unary math functions. */
  176. DEF_INTERNAL_FLT_FN (ACOS, ECF_CONST, acos, unary)
  177. DEF_INTERNAL_FLT_FN (ACOSH, ECF_CONST, acosh, unary)
  178. DEF_INTERNAL_FLT_FN (ASIN, ECF_CONST, asin, unary)
  179. DEF_INTERNAL_FLT_FN (ASINH, ECF_CONST, asinh, unary)
  180. DEF_INTERNAL_FLT_FN (ATAN, ECF_CONST, atan, unary)
  181. DEF_INTERNAL_FLT_FN (ATANH, ECF_CONST, atanh, unary)
  182. DEF_INTERNAL_FLT_FN (COS, ECF_CONST, cos, unary)
  183. DEF_INTERNAL_FLT_FN (COSH, ECF_CONST, cosh, unary)
  184. DEF_INTERNAL_FLT_FN (EXP, ECF_CONST, exp, unary)
  185. DEF_INTERNAL_FLT_FN (EXP10, ECF_CONST, exp10, unary)
  186. DEF_INTERNAL_FLT_FN (EXP2, ECF_CONST, exp2, unary)
  187. DEF_INTERNAL_FLT_FN (EXPM1, ECF_CONST, expm1, unary)
  188. DEF_INTERNAL_FLT_FN (LOG, ECF_CONST, log, unary)
  189. DEF_INTERNAL_FLT_FN (LOG10, ECF_CONST, log10, unary)
  190. DEF_INTERNAL_FLT_FN (LOG1P, ECF_CONST, log1p, unary)
  191. DEF_INTERNAL_FLT_FN (LOG2, ECF_CONST, log2, unary)
  192. DEF_INTERNAL_FLT_FN (LOGB, ECF_CONST, logb, unary)
  193. DEF_INTERNAL_FLT_FN (SIGNBIT, ECF_CONST, signbit, unary)
  194. DEF_INTERNAL_FLT_FN (SIGNIFICAND, ECF_CONST, significand, unary)
  195. DEF_INTERNAL_FLT_FN (SIN, ECF_CONST, sin, unary)
  196. DEF_INTERNAL_FLT_FN (SINH, ECF_CONST, sinh, unary)
  197. DEF_INTERNAL_FLT_FLOATN_FN (SQRT, ECF_CONST, sqrt, unary)
  198. DEF_INTERNAL_FLT_FN (TAN, ECF_CONST, tan, unary)
  199. DEF_INTERNAL_FLT_FN (TANH, ECF_CONST, tanh, unary)
  200. /* FP rounding. */
  201. DEF_INTERNAL_FLT_FLOATN_FN (CEIL, ECF_CONST, ceil, unary)
  202. DEF_INTERNAL_FLT_FLOATN_FN (FLOOR, ECF_CONST, floor, unary)
  203. DEF_INTERNAL_FLT_FLOATN_FN (NEARBYINT, ECF_CONST, nearbyint, unary)
  204. DEF_INTERNAL_FLT_FLOATN_FN (RINT, ECF_CONST, rint, unary)
  205. DEF_INTERNAL_FLT_FLOATN_FN (ROUND, ECF_CONST, round, unary)
  206. DEF_INTERNAL_FLT_FLOATN_FN (ROUNDEVEN, ECF_CONST, roundeven, unary)
  207. DEF_INTERNAL_FLT_FLOATN_FN (TRUNC, ECF_CONST, btrunc, unary)
  208. /* Binary math functions. */
  209. DEF_INTERNAL_FLT_FN (ATAN2, ECF_CONST, atan2, binary)
  210. DEF_INTERNAL_FLT_FLOATN_FN (COPYSIGN, ECF_CONST, copysign, binary)
  211. DEF_INTERNAL_FLT_FN (FMOD, ECF_CONST, fmod, binary)
  212. DEF_INTERNAL_FLT_FN (HYPOT, ECF_CONST, hypot, binary)
  213. DEF_INTERNAL_FLT_FN (POW, ECF_CONST, pow, binary)
  214. DEF_INTERNAL_FLT_FN (REMAINDER, ECF_CONST, remainder, binary)
  215. DEF_INTERNAL_FLT_FN (SCALB, ECF_CONST, scalb, binary)
  216. DEF_INTERNAL_FLT_FLOATN_FN (FMIN, ECF_CONST, fmin, binary)
  217. DEF_INTERNAL_FLT_FLOATN_FN (FMAX, ECF_CONST, fmax, binary)
  218. DEF_INTERNAL_OPTAB_FN (XORSIGN, ECF_CONST, xorsign, binary)
  219. /* FP scales. */
  220. DEF_INTERNAL_FLT_FN (LDEXP, ECF_CONST, ldexp, binary)
  221. /* Ternary math functions. */
  222. DEF_INTERNAL_FLT_FLOATN_FN (FMA, ECF_CONST, fma, ternary)
  223. /* Unary integer ops. */
  224. DEF_INTERNAL_INT_FN (CLRSB, ECF_CONST | ECF_NOTHROW, clrsb, unary)
  225. DEF_INTERNAL_INT_FN (CLZ, ECF_CONST | ECF_NOTHROW, clz, unary)
  226. DEF_INTERNAL_INT_FN (CTZ, ECF_CONST | ECF_NOTHROW, ctz, unary)
  227. DEF_INTERNAL_INT_FN (FFS, ECF_CONST | ECF_NOTHROW, ffs, unary)
  228. DEF_INTERNAL_INT_FN (PARITY, ECF_CONST | ECF_NOTHROW, parity, unary)
  229. DEF_INTERNAL_INT_FN (POPCOUNT, ECF_CONST | ECF_NOTHROW, popcount, unary)
  230. DEF_INTERNAL_FN (GOMP_USE_SIMT, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  231. DEF_INTERNAL_FN (GOMP_SIMT_ENTER, ECF_LEAF | ECF_NOTHROW, NULL)
  232. DEF_INTERNAL_FN (GOMP_SIMT_ENTER_ALLOC, ECF_LEAF | ECF_NOTHROW, NULL)
  233. DEF_INTERNAL_FN (GOMP_SIMT_EXIT, ECF_LEAF | ECF_NOTHROW, NULL)
  234. DEF_INTERNAL_FN (GOMP_SIMT_LANE, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  235. DEF_INTERNAL_FN (GOMP_SIMT_VF, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  236. DEF_INTERNAL_FN (GOMP_SIMT_LAST_LANE, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  237. DEF_INTERNAL_FN (GOMP_SIMT_ORDERED_PRED, ECF_LEAF | ECF_NOTHROW, NULL)
  238. DEF_INTERNAL_FN (GOMP_SIMT_VOTE_ANY, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  239. DEF_INTERNAL_FN (GOMP_SIMT_XCHG_BFLY, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  240. DEF_INTERNAL_FN (GOMP_SIMT_XCHG_IDX, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  241. DEF_INTERNAL_FN (GOMP_SIMD_LANE, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  242. DEF_INTERNAL_FN (GOMP_SIMD_VF, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  243. DEF_INTERNAL_FN (GOMP_SIMD_LAST_LANE, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  244. DEF_INTERNAL_FN (GOMP_SIMD_ORDERED_START, ECF_LEAF | ECF_NOTHROW, NULL)
  245. DEF_INTERNAL_FN (GOMP_SIMD_ORDERED_END, ECF_LEAF | ECF_NOTHROW, NULL)
  246. DEF_INTERNAL_FN (LOOP_VECTORIZED, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  247. DEF_INTERNAL_FN (LOOP_DIST_ALIAS, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  248. DEF_INTERNAL_FN (ANNOTATE, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  249. DEF_INTERNAL_FN (UBSAN_NULL, ECF_LEAF | ECF_NOTHROW, ".R.")
  250. DEF_INTERNAL_FN (UBSAN_BOUNDS, ECF_LEAF | ECF_NOTHROW, NULL)
  251. DEF_INTERNAL_FN (UBSAN_VPTR, ECF_LEAF | ECF_NOTHROW, ".RR..")
  252. DEF_INTERNAL_FN (UBSAN_CHECK_ADD, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  253. DEF_INTERNAL_FN (UBSAN_CHECK_SUB, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  254. DEF_INTERNAL_FN (UBSAN_CHECK_MUL, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  255. DEF_INTERNAL_FN (UBSAN_PTR, ECF_LEAF | ECF_NOTHROW, ".R.")
  256. DEF_INTERNAL_FN (UBSAN_OBJECT_SIZE, ECF_LEAF | ECF_NOTHROW, NULL)
  257. DEF_INTERNAL_FN (ABNORMAL_DISPATCHER, ECF_NORETURN, NULL)
  258. DEF_INTERNAL_FN (BUILTIN_EXPECT, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  259. DEF_INTERNAL_FN (ASAN_CHECK, ECF_TM_PURE | ECF_LEAF | ECF_NOTHROW, "..R..")
  260. DEF_INTERNAL_FN (ASAN_MARK, ECF_LEAF | ECF_NOTHROW, NULL)
  261. DEF_INTERNAL_FN (ASAN_POISON, ECF_LEAF | ECF_NOTHROW | ECF_NOVOPS, NULL)
  262. DEF_INTERNAL_FN (ASAN_POISON_USE, ECF_LEAF | ECF_NOTHROW | ECF_NOVOPS, NULL)
  263. DEF_INTERNAL_FN (ADD_OVERFLOW, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  264. DEF_INTERNAL_FN (SUB_OVERFLOW, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  265. DEF_INTERNAL_FN (MUL_OVERFLOW, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  266. DEF_INTERNAL_FN (TSAN_FUNC_EXIT, ECF_NOVOPS | ECF_LEAF | ECF_NOTHROW, NULL)
  267. DEF_INTERNAL_FN (VA_ARG, ECF_NOTHROW | ECF_LEAF, NULL)
  268. DEF_INTERNAL_FN (VEC_CONVERT, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  269. /* An unduplicable, uncombinable function. Generally used to preserve
  270. a CFG property in the face of jump threading, tail merging or
  271. other such optimizations. The first argument distinguishes
  272. between uses. See internal-fn.h for usage. */
  273. DEF_INTERNAL_FN (UNIQUE, ECF_NOTHROW, NULL)
  274. DEF_INTERNAL_FN (PHI, 0, NULL)
  275. /* DIM_SIZE and DIM_POS return the size of a particular compute
  276. dimension and the executing thread's position within that
  277. dimension. DIM_POS is pure (and not const) so that it isn't
  278. thought to clobber memory and can be gcse'd within a single
  279. parallel region, but not across FORK/JOIN boundaries. They take a
  280. single INTEGER_CST argument. This might be overly conservative. */
  281. DEF_INTERNAL_FN (GOACC_DIM_SIZE, ECF_CONST | ECF_NOTHROW | ECF_LEAF, ".")
  282. DEF_INTERNAL_FN (GOACC_DIM_POS, ECF_PURE | ECF_NOTHROW | ECF_LEAF, ".")
  283. /* OpenACC looping abstraction. See internal-fn.h for usage. */
  284. DEF_INTERNAL_FN (GOACC_LOOP, ECF_PURE | ECF_NOTHROW, NULL)
  285. /* OpenACC reduction abstraction. See internal-fn.h for usage. */
  286. DEF_INTERNAL_FN (GOACC_REDUCTION, ECF_NOTHROW | ECF_LEAF, NULL)
  287. /* Openacc tile abstraction. Describes the spans of the element loop.
  288. GOACC_TILE (num-loops, loop-no, tile-arg, tile-mask, element-mask). */
  289. DEF_INTERNAL_FN (GOACC_TILE, ECF_NOTHROW | ECF_LEAF, NULL)
  290. /* Set errno to EDOM, if GCC knows how to do that directly for the
  291. current target. */
  292. DEF_INTERNAL_FN (SET_EDOM, ECF_LEAF | ECF_NOTHROW, NULL)
  293. /* Atomic functions. These don't have ECF_NOTHROW because for
  294. -fnon-call-exceptions they can throw, otherwise we set
  295. gimple_call_nothrow_p on it. */
  296. DEF_INTERNAL_FN (ATOMIC_BIT_TEST_AND_SET, ECF_LEAF, NULL)
  297. DEF_INTERNAL_FN (ATOMIC_BIT_TEST_AND_COMPLEMENT, ECF_LEAF, NULL)
  298. DEF_INTERNAL_FN (ATOMIC_BIT_TEST_AND_RESET, ECF_LEAF, NULL)
  299. DEF_INTERNAL_FN (ATOMIC_COMPARE_EXCHANGE, ECF_LEAF, NULL)
  300. /* To implement [[fallthrough]]. */
  301. DEF_INTERNAL_FN (FALLTHROUGH, ECF_LEAF | ECF_NOTHROW, NULL)
  302. /* To implement __builtin_launder. */
  303. DEF_INTERNAL_FN (LAUNDER, ECF_LEAF | ECF_NOTHROW | ECF_NOVOPS, NULL)
  304. /* Divmod function. */
  305. DEF_INTERNAL_FN (DIVMOD, ECF_CONST | ECF_LEAF, NULL)
  306. /* For coroutines. */
  307. DEF_INTERNAL_FN (CO_ACTOR, ECF_NOTHROW | ECF_LEAF, NULL)
  308. DEF_INTERNAL_FN (CO_YIELD, ECF_NOTHROW, NULL)
  309. DEF_INTERNAL_FN (CO_SUSPN, ECF_NOTHROW, NULL)
  310. DEF_INTERNAL_FN (CO_FRAME, ECF_PURE | ECF_NOTHROW | ECF_LEAF, NULL)
  311. /* A NOP function with arbitrary arguments and return value. */
  312. DEF_INTERNAL_FN (NOP, ECF_CONST | ECF_LEAF | ECF_NOTHROW, NULL)
  313. #undef DEF_INTERNAL_INT_FN
  314. #undef DEF_INTERNAL_FLT_FN
  315. #undef DEF_INTERNAL_FLT_FLOATN_FN
  316. #undef DEF_INTERNAL_SIGNED_OPTAB_FN
  317. #undef DEF_INTERNAL_OPTAB_FN
  318. #undef DEF_INTERNAL_FN