VecFuncs.def 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. //===-- VecFuncs.def - Library information -------------*- C++ -*-----------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. // This .def file will create mappings from scalar math functions to vector
  9. // functions along with their vectorization factor. The current support includes
  10. // such mappings for Accelerate framework, MASS vector library, and SVML library.
  11. // This .def file also allows creating an array of vector functions supported in
  12. // the specified framework or library.
  13. #if defined(TLI_DEFINE_MASSV_VECFUNCS_NAMES)
  14. #define TLI_DEFINE_MASSV_VECFUNCS
  15. #define TLI_DEFINE_VECFUNC(SCAL, VEC, VF) VEC,
  16. #endif
  17. #if !(defined(TLI_DEFINE_VECFUNC))
  18. #define TLI_DEFINE_VECFUNC(SCAL, VEC, VF) {SCAL, VEC, VF},
  19. #endif
  20. #if defined(TLI_DEFINE_ACCELERATE_VECFUNCS)
  21. // Accelerate framework's Vector Functions
  22. // Floating-Point Arithmetic and Auxiliary Functions
  23. TLI_DEFINE_VECFUNC("ceilf", "vceilf", 4)
  24. TLI_DEFINE_VECFUNC("fabsf", "vfabsf", 4)
  25. TLI_DEFINE_VECFUNC("llvm.fabs.f32", "vfabsf", 4)
  26. TLI_DEFINE_VECFUNC("floorf", "vfloorf", 4)
  27. TLI_DEFINE_VECFUNC("sqrtf", "vsqrtf", 4)
  28. TLI_DEFINE_VECFUNC("llvm.sqrt.f32", "vsqrtf", 4)
  29. // Exponential and Logarithmic Functions
  30. TLI_DEFINE_VECFUNC("expf", "vexpf", 4)
  31. TLI_DEFINE_VECFUNC("llvm.exp.f32", "vexpf", 4)
  32. TLI_DEFINE_VECFUNC("expm1f", "vexpm1f", 4)
  33. TLI_DEFINE_VECFUNC("logf", "vlogf", 4)
  34. TLI_DEFINE_VECFUNC("llvm.log.f32", "vlogf", 4)
  35. TLI_DEFINE_VECFUNC("log1pf", "vlog1pf", 4)
  36. TLI_DEFINE_VECFUNC("log10f", "vlog10f", 4)
  37. TLI_DEFINE_VECFUNC("llvm.log10.f32", "vlog10f", 4)
  38. TLI_DEFINE_VECFUNC("logbf", "vlogbf", 4)
  39. // Trigonometric Functions
  40. TLI_DEFINE_VECFUNC("sinf", "vsinf", 4)
  41. TLI_DEFINE_VECFUNC("llvm.sin.f32", "vsinf", 4)
  42. TLI_DEFINE_VECFUNC("cosf", "vcosf", 4)
  43. TLI_DEFINE_VECFUNC("llvm.cos.f32", "vcosf", 4)
  44. TLI_DEFINE_VECFUNC("tanf", "vtanf", 4)
  45. TLI_DEFINE_VECFUNC("asinf", "vasinf", 4)
  46. TLI_DEFINE_VECFUNC("acosf", "vacosf", 4)
  47. TLI_DEFINE_VECFUNC("atanf", "vatanf", 4)
  48. // Hyperbolic Functions
  49. TLI_DEFINE_VECFUNC("sinhf", "vsinhf", 4)
  50. TLI_DEFINE_VECFUNC("coshf", "vcoshf", 4)
  51. TLI_DEFINE_VECFUNC("tanhf", "vtanhf", 4)
  52. TLI_DEFINE_VECFUNC("asinhf", "vasinhf", 4)
  53. TLI_DEFINE_VECFUNC("acoshf", "vacoshf", 4)
  54. TLI_DEFINE_VECFUNC("atanhf", "vatanhf", 4)
  55. #elif defined(TLI_DEFINE_LIBMVEC_X86_VECFUNCS)
  56. // GLIBC Vector math Functions
  57. TLI_DEFINE_VECFUNC("sin", "_ZGVbN2v_sin", 2)
  58. TLI_DEFINE_VECFUNC("sin", "_ZGVdN4v_sin", 4)
  59. TLI_DEFINE_VECFUNC("sinf", "_ZGVbN4v_sinf", 4)
  60. TLI_DEFINE_VECFUNC("sinf", "_ZGVdN8v_sinf", 8)
  61. TLI_DEFINE_VECFUNC("llvm.sin.f64", "_ZGVbN2v_sin", 2)
  62. TLI_DEFINE_VECFUNC("llvm.sin.f64", "_ZGVdN4v_sin", 4)
  63. TLI_DEFINE_VECFUNC("llvm.sin.f32", "_ZGVbN4v_sinf", 4)
  64. TLI_DEFINE_VECFUNC("llvm.sin.f32", "_ZGVdN8v_sinf", 8)
  65. TLI_DEFINE_VECFUNC("cos", "_ZGVbN2v_cos", 2)
  66. TLI_DEFINE_VECFUNC("cos", "_ZGVdN4v_cos", 4)
  67. TLI_DEFINE_VECFUNC("cosf", "_ZGVbN4v_cosf", 4)
  68. TLI_DEFINE_VECFUNC("cosf", "_ZGVdN8v_cosf", 8)
  69. TLI_DEFINE_VECFUNC("llvm.cos.f64", "_ZGVbN2v_cos", 2)
  70. TLI_DEFINE_VECFUNC("llvm.cos.f64", "_ZGVdN4v_cos", 4)
  71. TLI_DEFINE_VECFUNC("llvm.cos.f32", "_ZGVbN4v_cosf", 4)
  72. TLI_DEFINE_VECFUNC("llvm.cos.f32", "_ZGVdN8v_cosf", 8)
  73. TLI_DEFINE_VECFUNC("pow", "_ZGVbN2vv_pow", 2)
  74. TLI_DEFINE_VECFUNC("pow", "_ZGVdN4vv_pow", 4)
  75. TLI_DEFINE_VECFUNC("powf", "_ZGVbN4vv_powf", 4)
  76. TLI_DEFINE_VECFUNC("powf", "_ZGVdN8vv_powf", 8)
  77. TLI_DEFINE_VECFUNC("__pow_finite", "_ZGVbN2vv___pow_finite", 2)
  78. TLI_DEFINE_VECFUNC("__pow_finite", "_ZGVdN4vv___pow_finite", 4)
  79. TLI_DEFINE_VECFUNC("__powf_finite", "_ZGVbN4vv___powf_finite", 4)
  80. TLI_DEFINE_VECFUNC("__powf_finite", "_ZGVdN8vv___powf_finite", 8)
  81. TLI_DEFINE_VECFUNC("llvm.pow.f64", "_ZGVbN2vv_pow", 2)
  82. TLI_DEFINE_VECFUNC("llvm.pow.f64", "_ZGVdN4vv_pow", 4)
  83. TLI_DEFINE_VECFUNC("llvm.pow.f32", "_ZGVbN4vv_powf", 4)
  84. TLI_DEFINE_VECFUNC("llvm.pow.f32", "_ZGVdN8vv_powf", 8)
  85. TLI_DEFINE_VECFUNC("exp", "_ZGVbN2v_exp", 2)
  86. TLI_DEFINE_VECFUNC("exp", "_ZGVdN4v_exp", 4)
  87. TLI_DEFINE_VECFUNC("expf", "_ZGVbN4v_expf", 4)
  88. TLI_DEFINE_VECFUNC("expf", "_ZGVdN8v_expf", 8)
  89. TLI_DEFINE_VECFUNC("__exp_finite", "_ZGVbN2v___exp_finite", 2)
  90. TLI_DEFINE_VECFUNC("__exp_finite", "_ZGVdN4v___exp_finite", 4)
  91. TLI_DEFINE_VECFUNC("__expf_finite", "_ZGVbN4v___expf_finite", 4)
  92. TLI_DEFINE_VECFUNC("__expf_finite", "_ZGVdN8v___expf_finite", 8)
  93. TLI_DEFINE_VECFUNC("llvm.exp.f64", "_ZGVbN2v_exp", 2)
  94. TLI_DEFINE_VECFUNC("llvm.exp.f64", "_ZGVdN4v_exp", 4)
  95. TLI_DEFINE_VECFUNC("llvm.exp.f32", "_ZGVbN4v_expf", 4)
  96. TLI_DEFINE_VECFUNC("llvm.exp.f32", "_ZGVdN8v_expf", 8)
  97. TLI_DEFINE_VECFUNC("log", "_ZGVbN2v_log", 2)
  98. TLI_DEFINE_VECFUNC("log", "_ZGVdN4v_log", 4)
  99. TLI_DEFINE_VECFUNC("logf", "_ZGVbN4v_logf", 4)
  100. TLI_DEFINE_VECFUNC("logf", "_ZGVdN8v_logf", 8)
  101. TLI_DEFINE_VECFUNC("__log_finite", "_ZGVbN2v___log_finite", 2)
  102. TLI_DEFINE_VECFUNC("__log_finite", "_ZGVdN4v___log_finite", 4)
  103. TLI_DEFINE_VECFUNC("__logf_finite", "_ZGVbN4v___logf_finite", 4)
  104. TLI_DEFINE_VECFUNC("__logf_finite", "_ZGVdN8v___logf_finite", 8)
  105. TLI_DEFINE_VECFUNC("llvm.log.f64", "_ZGVbN2v_log", 2)
  106. TLI_DEFINE_VECFUNC("llvm.log.f64", "_ZGVdN4v_log", 4)
  107. TLI_DEFINE_VECFUNC("llvm.log.f32", "_ZGVbN4v_logf", 4)
  108. TLI_DEFINE_VECFUNC("llvm.log.f32", "_ZGVdN8v_logf", 8)
  109. #elif defined(TLI_DEFINE_MASSV_VECFUNCS)
  110. // IBM MASS library's vector Functions
  111. // Floating-Point Arithmetic and Auxiliary Functions
  112. TLI_DEFINE_VECFUNC("cbrt", "__cbrtd2_massv", 2)
  113. TLI_DEFINE_VECFUNC("cbrtf", "__cbrtf4_massv", 4)
  114. TLI_DEFINE_VECFUNC("pow", "__powd2_massv", 2)
  115. TLI_DEFINE_VECFUNC("llvm.pow.f64", "__powd2_massv", 2)
  116. TLI_DEFINE_VECFUNC("powf", "__powf4_massv", 4)
  117. TLI_DEFINE_VECFUNC("llvm.pow.f32", "__powf4_massv", 4)
  118. TLI_DEFINE_VECFUNC("sqrt", "__sqrtd2_massv", 2)
  119. TLI_DEFINE_VECFUNC("llvm.sqrt.f64", "__sqrtd2_massv", 2)
  120. TLI_DEFINE_VECFUNC("sqrtf", "__sqrtf4_massv", 4)
  121. TLI_DEFINE_VECFUNC("llvm.sqrt.f32", "__sqrtf4_massv", 4)
  122. // Exponential and Logarithmic Functions
  123. TLI_DEFINE_VECFUNC("exp", "__expd2_massv", 2)
  124. TLI_DEFINE_VECFUNC("llvm.exp.f64", "__expd2_massv", 2)
  125. TLI_DEFINE_VECFUNC("expf", "__expf4_massv", 4)
  126. TLI_DEFINE_VECFUNC("llvm.exp.f32", "__expf4_massv", 4)
  127. TLI_DEFINE_VECFUNC("exp2", "__exp2d2_massv", 2)
  128. TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__exp2d2_massv", 2)
  129. TLI_DEFINE_VECFUNC("exp2f", "__exp2f4_massv", 4)
  130. TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__exp2f4_massv", 4)
  131. TLI_DEFINE_VECFUNC("expm1", "__expm1d2_massv", 2)
  132. TLI_DEFINE_VECFUNC("expm1f", "__expm1f4_massv", 4)
  133. TLI_DEFINE_VECFUNC("log", "__logd2_massv", 2)
  134. TLI_DEFINE_VECFUNC("llvm.log.f64", "__logd2_massv", 2)
  135. TLI_DEFINE_VECFUNC("logf", "__logf4_massv", 4)
  136. TLI_DEFINE_VECFUNC("llvm.log.f32", "__logf4_massv", 4)
  137. TLI_DEFINE_VECFUNC("log1p", "__log1pd2_massv", 2)
  138. TLI_DEFINE_VECFUNC("log1pf", "__log1pf4_massv", 4)
  139. TLI_DEFINE_VECFUNC("log10", "__log10d2_massv", 2)
  140. TLI_DEFINE_VECFUNC("llvm.log10.f64", "__log10d2_massv", 2)
  141. TLI_DEFINE_VECFUNC("log10f", "__log10f4_massv", 4)
  142. TLI_DEFINE_VECFUNC("llvm.log10.f32", "__log10f4_massv", 4)
  143. TLI_DEFINE_VECFUNC("log2", "__log2d2_massv", 2)
  144. TLI_DEFINE_VECFUNC("llvm.log2.f64", "__log2d2_massv", 2)
  145. TLI_DEFINE_VECFUNC("log2f", "__log2f4_massv", 4)
  146. TLI_DEFINE_VECFUNC("llvm.log2.f32", "__log2f4_massv", 4)
  147. // Trigonometric Functions
  148. TLI_DEFINE_VECFUNC("sin", "__sind2_massv", 2)
  149. TLI_DEFINE_VECFUNC("llvm.sin.f64", "__sind2_massv", 2)
  150. TLI_DEFINE_VECFUNC("sinf", "__sinf4_massv", 4)
  151. TLI_DEFINE_VECFUNC("llvm.sin.f32", "__sinf4_massv", 4)
  152. TLI_DEFINE_VECFUNC("cos", "__cosd2_massv", 2)
  153. TLI_DEFINE_VECFUNC("llvm.cos.f64", "__cosd2_massv", 2)
  154. TLI_DEFINE_VECFUNC("cosf", "__cosf4_massv", 4)
  155. TLI_DEFINE_VECFUNC("llvm.cos.f32", "__cosf4_massv", 4)
  156. TLI_DEFINE_VECFUNC("tan", "__tand2_massv", 2)
  157. TLI_DEFINE_VECFUNC("tanf", "__tanf4_massv", 4)
  158. TLI_DEFINE_VECFUNC("asin", "__asind2_massv", 2)
  159. TLI_DEFINE_VECFUNC("asinf", "__asinf4_massv", 4)
  160. TLI_DEFINE_VECFUNC("acos", "__acosd2_massv", 2)
  161. TLI_DEFINE_VECFUNC("acosf", "__acosf4_massv", 4)
  162. TLI_DEFINE_VECFUNC("atan", "__atand2_massv", 2)
  163. TLI_DEFINE_VECFUNC("atanf", "__atanf4_massv", 4)
  164. TLI_DEFINE_VECFUNC("atan2", "__atan2d2_massv", 2)
  165. TLI_DEFINE_VECFUNC("atan2f", "__atan2f4_massv", 4)
  166. // Hyperbolic Functions
  167. TLI_DEFINE_VECFUNC("sinh", "__sinhd2_massv", 2)
  168. TLI_DEFINE_VECFUNC("sinhf", "__sinhf4_massv", 4)
  169. TLI_DEFINE_VECFUNC("cosh", "__coshd2_massv", 2)
  170. TLI_DEFINE_VECFUNC("coshf", "__coshf4_massv", 4)
  171. TLI_DEFINE_VECFUNC("tanh", "__tanhd2_massv", 2)
  172. TLI_DEFINE_VECFUNC("tanhf", "__tanhf4_massv", 4)
  173. TLI_DEFINE_VECFUNC("asinh", "__asinhd2_massv", 2)
  174. TLI_DEFINE_VECFUNC("asinhf", "__asinhf4_massv", 4)
  175. TLI_DEFINE_VECFUNC("acosh", "__acoshd2_massv", 2)
  176. TLI_DEFINE_VECFUNC("acoshf", "__acoshf4_massv", 4)
  177. TLI_DEFINE_VECFUNC("atanh", "__atanhd2_massv", 2)
  178. TLI_DEFINE_VECFUNC("atanhf", "__atanhf4_massv", 4)
  179. #elif defined(TLI_DEFINE_SVML_VECFUNCS)
  180. // Intel SVM library's Vector Functions
  181. TLI_DEFINE_VECFUNC("sin", "__svml_sin2", 2)
  182. TLI_DEFINE_VECFUNC("sin", "__svml_sin4", 4)
  183. TLI_DEFINE_VECFUNC("sin", "__svml_sin8", 8)
  184. TLI_DEFINE_VECFUNC("sinf", "__svml_sinf4", 4)
  185. TLI_DEFINE_VECFUNC("sinf", "__svml_sinf8", 8)
  186. TLI_DEFINE_VECFUNC("sinf", "__svml_sinf16", 16)
  187. TLI_DEFINE_VECFUNC("llvm.sin.f64", "__svml_sin2", 2)
  188. TLI_DEFINE_VECFUNC("llvm.sin.f64", "__svml_sin4", 4)
  189. TLI_DEFINE_VECFUNC("llvm.sin.f64", "__svml_sin8", 8)
  190. TLI_DEFINE_VECFUNC("llvm.sin.f32", "__svml_sinf4", 4)
  191. TLI_DEFINE_VECFUNC("llvm.sin.f32", "__svml_sinf8", 8)
  192. TLI_DEFINE_VECFUNC("llvm.sin.f32", "__svml_sinf16", 16)
  193. TLI_DEFINE_VECFUNC("cos", "__svml_cos2", 2)
  194. TLI_DEFINE_VECFUNC("cos", "__svml_cos4", 4)
  195. TLI_DEFINE_VECFUNC("cos", "__svml_cos8", 8)
  196. TLI_DEFINE_VECFUNC("cosf", "__svml_cosf4", 4)
  197. TLI_DEFINE_VECFUNC("cosf", "__svml_cosf8", 8)
  198. TLI_DEFINE_VECFUNC("cosf", "__svml_cosf16", 16)
  199. TLI_DEFINE_VECFUNC("llvm.cos.f64", "__svml_cos2", 2)
  200. TLI_DEFINE_VECFUNC("llvm.cos.f64", "__svml_cos4", 4)
  201. TLI_DEFINE_VECFUNC("llvm.cos.f64", "__svml_cos8", 8)
  202. TLI_DEFINE_VECFUNC("llvm.cos.f32", "__svml_cosf4", 4)
  203. TLI_DEFINE_VECFUNC("llvm.cos.f32", "__svml_cosf8", 8)
  204. TLI_DEFINE_VECFUNC("llvm.cos.f32", "__svml_cosf16", 16)
  205. TLI_DEFINE_VECFUNC("pow", "__svml_pow2", 2)
  206. TLI_DEFINE_VECFUNC("pow", "__svml_pow4", 4)
  207. TLI_DEFINE_VECFUNC("pow", "__svml_pow8", 8)
  208. TLI_DEFINE_VECFUNC("powf", "__svml_powf4", 4)
  209. TLI_DEFINE_VECFUNC("powf", "__svml_powf8", 8)
  210. TLI_DEFINE_VECFUNC("powf", "__svml_powf16", 16)
  211. TLI_DEFINE_VECFUNC("__pow_finite", "__svml_pow2", 2)
  212. TLI_DEFINE_VECFUNC("__pow_finite", "__svml_pow4", 4)
  213. TLI_DEFINE_VECFUNC("__pow_finite", "__svml_pow8", 8)
  214. TLI_DEFINE_VECFUNC("__powf_finite", "__svml_powf4", 4)
  215. TLI_DEFINE_VECFUNC("__powf_finite", "__svml_powf8", 8)
  216. TLI_DEFINE_VECFUNC("__powf_finite", "__svml_powf16", 16)
  217. TLI_DEFINE_VECFUNC("llvm.pow.f64", "__svml_pow2", 2)
  218. TLI_DEFINE_VECFUNC("llvm.pow.f64", "__svml_pow4", 4)
  219. TLI_DEFINE_VECFUNC("llvm.pow.f64", "__svml_pow8", 8)
  220. TLI_DEFINE_VECFUNC("llvm.pow.f32", "__svml_powf4", 4)
  221. TLI_DEFINE_VECFUNC("llvm.pow.f32", "__svml_powf8", 8)
  222. TLI_DEFINE_VECFUNC("llvm.pow.f32", "__svml_powf16", 16)
  223. TLI_DEFINE_VECFUNC("exp", "__svml_exp2", 2)
  224. TLI_DEFINE_VECFUNC("exp", "__svml_exp4", 4)
  225. TLI_DEFINE_VECFUNC("exp", "__svml_exp8", 8)
  226. TLI_DEFINE_VECFUNC("expf", "__svml_expf4", 4)
  227. TLI_DEFINE_VECFUNC("expf", "__svml_expf8", 8)
  228. TLI_DEFINE_VECFUNC("expf", "__svml_expf16", 16)
  229. TLI_DEFINE_VECFUNC("__exp_finite", "__svml_exp2", 2)
  230. TLI_DEFINE_VECFUNC("__exp_finite", "__svml_exp4", 4)
  231. TLI_DEFINE_VECFUNC("__exp_finite", "__svml_exp8", 8)
  232. TLI_DEFINE_VECFUNC("__expf_finite", "__svml_expf4", 4)
  233. TLI_DEFINE_VECFUNC("__expf_finite", "__svml_expf8", 8)
  234. TLI_DEFINE_VECFUNC("__expf_finite", "__svml_expf16", 16)
  235. TLI_DEFINE_VECFUNC("llvm.exp.f64", "__svml_exp2", 2)
  236. TLI_DEFINE_VECFUNC("llvm.exp.f64", "__svml_exp4", 4)
  237. TLI_DEFINE_VECFUNC("llvm.exp.f64", "__svml_exp8", 8)
  238. TLI_DEFINE_VECFUNC("llvm.exp.f32", "__svml_expf4", 4)
  239. TLI_DEFINE_VECFUNC("llvm.exp.f32", "__svml_expf8", 8)
  240. TLI_DEFINE_VECFUNC("llvm.exp.f32", "__svml_expf16", 16)
  241. TLI_DEFINE_VECFUNC("log", "__svml_log2", 2)
  242. TLI_DEFINE_VECFUNC("log", "__svml_log4", 4)
  243. TLI_DEFINE_VECFUNC("log", "__svml_log8", 8)
  244. TLI_DEFINE_VECFUNC("logf", "__svml_logf4", 4)
  245. TLI_DEFINE_VECFUNC("logf", "__svml_logf8", 8)
  246. TLI_DEFINE_VECFUNC("logf", "__svml_logf16", 16)
  247. TLI_DEFINE_VECFUNC("__log_finite", "__svml_log2", 2)
  248. TLI_DEFINE_VECFUNC("__log_finite", "__svml_log4", 4)
  249. TLI_DEFINE_VECFUNC("__log_finite", "__svml_log8", 8)
  250. TLI_DEFINE_VECFUNC("__logf_finite", "__svml_logf4", 4)
  251. TLI_DEFINE_VECFUNC("__logf_finite", "__svml_logf8", 8)
  252. TLI_DEFINE_VECFUNC("__logf_finite", "__svml_logf16", 16)
  253. TLI_DEFINE_VECFUNC("llvm.log.f64", "__svml_log2", 2)
  254. TLI_DEFINE_VECFUNC("llvm.log.f64", "__svml_log4", 4)
  255. TLI_DEFINE_VECFUNC("llvm.log.f64", "__svml_log8", 8)
  256. TLI_DEFINE_VECFUNC("llvm.log.f32", "__svml_logf4", 4)
  257. TLI_DEFINE_VECFUNC("llvm.log.f32", "__svml_logf8", 8)
  258. TLI_DEFINE_VECFUNC("llvm.log.f32", "__svml_logf16", 16)
  259. TLI_DEFINE_VECFUNC("log2", "__svml_log22", 2)
  260. TLI_DEFINE_VECFUNC("log2", "__svml_log24", 4)
  261. TLI_DEFINE_VECFUNC("log2", "__svml_log28", 8)
  262. TLI_DEFINE_VECFUNC("log2f", "__svml_log2f4", 4)
  263. TLI_DEFINE_VECFUNC("log2f", "__svml_log2f8", 8)
  264. TLI_DEFINE_VECFUNC("log2f", "__svml_log2f16", 16)
  265. TLI_DEFINE_VECFUNC("__log2_finite", "__svml_log22", 2)
  266. TLI_DEFINE_VECFUNC("__log2_finite", "__svml_log24", 4)
  267. TLI_DEFINE_VECFUNC("__log2_finite", "__svml_log28", 8)
  268. TLI_DEFINE_VECFUNC("__log2f_finite", "__svml_log2f4", 4)
  269. TLI_DEFINE_VECFUNC("__log2f_finite", "__svml_log2f8", 8)
  270. TLI_DEFINE_VECFUNC("__log2f_finite", "__svml_log2f16", 16)
  271. TLI_DEFINE_VECFUNC("llvm.log2.f64", "__svml_log22", 2)
  272. TLI_DEFINE_VECFUNC("llvm.log2.f64", "__svml_log24", 4)
  273. TLI_DEFINE_VECFUNC("llvm.log2.f64", "__svml_log28", 8)
  274. TLI_DEFINE_VECFUNC("llvm.log2.f32", "__svml_log2f4", 4)
  275. TLI_DEFINE_VECFUNC("llvm.log2.f32", "__svml_log2f8", 8)
  276. TLI_DEFINE_VECFUNC("llvm.log2.f32", "__svml_log2f16", 16)
  277. TLI_DEFINE_VECFUNC("log10", "__svml_log102", 2)
  278. TLI_DEFINE_VECFUNC("log10", "__svml_log104", 4)
  279. TLI_DEFINE_VECFUNC("log10", "__svml_log108", 8)
  280. TLI_DEFINE_VECFUNC("log10f", "__svml_log10f4", 4)
  281. TLI_DEFINE_VECFUNC("log10f", "__svml_log10f8", 8)
  282. TLI_DEFINE_VECFUNC("log10f", "__svml_log10f16", 16)
  283. TLI_DEFINE_VECFUNC("__log10_finite", "__svml_log102", 2)
  284. TLI_DEFINE_VECFUNC("__log10_finite", "__svml_log104", 4)
  285. TLI_DEFINE_VECFUNC("__log10_finite", "__svml_log108", 8)
  286. TLI_DEFINE_VECFUNC("__log10f_finite", "__svml_log10f4", 4)
  287. TLI_DEFINE_VECFUNC("__log10f_finite", "__svml_log10f8", 8)
  288. TLI_DEFINE_VECFUNC("__log10f_finite", "__svml_log10f16", 16)
  289. TLI_DEFINE_VECFUNC("llvm.log10.f64", "__svml_log102", 2)
  290. TLI_DEFINE_VECFUNC("llvm.log10.f64", "__svml_log104", 4)
  291. TLI_DEFINE_VECFUNC("llvm.log10.f64", "__svml_log108", 8)
  292. TLI_DEFINE_VECFUNC("llvm.log10.f32", "__svml_log10f4", 4)
  293. TLI_DEFINE_VECFUNC("llvm.log10.f32", "__svml_log10f8", 8)
  294. TLI_DEFINE_VECFUNC("llvm.log10.f32", "__svml_log10f16", 16)
  295. TLI_DEFINE_VECFUNC("sqrt", "__svml_sqrt2", 2)
  296. TLI_DEFINE_VECFUNC("sqrt", "__svml_sqrt4", 4)
  297. TLI_DEFINE_VECFUNC("sqrt", "__svml_sqrt8", 8)
  298. TLI_DEFINE_VECFUNC("sqrtf", "__svml_sqrtf4", 4)
  299. TLI_DEFINE_VECFUNC("sqrtf", "__svml_sqrtf8", 8)
  300. TLI_DEFINE_VECFUNC("sqrtf", "__svml_sqrtf16", 16)
  301. TLI_DEFINE_VECFUNC("__sqrt_finite", "__svml_sqrt2", 2)
  302. TLI_DEFINE_VECFUNC("__sqrt_finite", "__svml_sqrt4", 4)
  303. TLI_DEFINE_VECFUNC("__sqrt_finite", "__svml_sqrt8", 8)
  304. TLI_DEFINE_VECFUNC("__sqrtf_finite", "__svml_sqrtf4", 4)
  305. TLI_DEFINE_VECFUNC("__sqrtf_finite", "__svml_sqrtf8", 8)
  306. TLI_DEFINE_VECFUNC("__sqrtf_finite", "__svml_sqrtf16", 16)
  307. TLI_DEFINE_VECFUNC("exp2", "__svml_exp22", 2)
  308. TLI_DEFINE_VECFUNC("exp2", "__svml_exp24", 4)
  309. TLI_DEFINE_VECFUNC("exp2", "__svml_exp28", 8)
  310. TLI_DEFINE_VECFUNC("exp2f", "__svml_exp2f4", 4)
  311. TLI_DEFINE_VECFUNC("exp2f", "__svml_exp2f8", 8)
  312. TLI_DEFINE_VECFUNC("exp2f", "__svml_exp2f16", 16)
  313. TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__svml_exp22", 2)
  314. TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__svml_exp24", 4)
  315. TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__svml_exp28", 8)
  316. TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__svml_exp2f4", 4)
  317. TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__svml_exp2f8", 8)
  318. TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__svml_exp2f16", 16)
  319. TLI_DEFINE_VECFUNC("__exp2_finite", "__svml_exp22", 2)
  320. TLI_DEFINE_VECFUNC("__exp2_finite", "__svml_exp24", 4)
  321. TLI_DEFINE_VECFUNC("__exp2_finite", "__svml_exp28", 8)
  322. TLI_DEFINE_VECFUNC("__exp2f_finite", "__svml_exp2f4", 4)
  323. TLI_DEFINE_VECFUNC("__exp2f_finite", "__svml_exp2f8", 8)
  324. TLI_DEFINE_VECFUNC("__exp2f_finite", "__svml_exp2f16", 16)
  325. #else
  326. #error "Must choose which vector library functions are to be defined."
  327. #endif
  328. #undef TLI_DEFINE_VECFUNC
  329. #undef TLI_DEFINE_ACCELERATE_VECFUNCS
  330. #undef TLI_DEFINE_LIBMVEC_X86_VECFUNCS
  331. #undef TLI_DEFINE_MASSV_VECFUNCS
  332. #undef TLI_DEFINE_SVML_VECFUNCS
  333. #undef TLI_DEFINE_MASSV_VECFUNCS_NAMES