123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- //===-- VecFuncs.def - Library information -------------*- C++ -*-----------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- // This .def file will create mappings from scalar math functions to vector
- // functions along with their vectorization factor. The current support includes
- // such mappings for Accelerate framework, MASS vector library, and SVML library.
- // This .def file also allows creating an array of vector functions supported in
- // the specified framework or library.
- #if defined(TLI_DEFINE_MASSV_VECFUNCS_NAMES)
- #define TLI_DEFINE_MASSV_VECFUNCS
- #define TLI_DEFINE_VECFUNC(SCAL, VEC, VF) VEC,
- #endif
- #if !(defined(TLI_DEFINE_VECFUNC))
- #define TLI_DEFINE_VECFUNC(SCAL, VEC, VF) {SCAL, VEC, VF},
- #endif
- #if defined(TLI_DEFINE_ACCELERATE_VECFUNCS)
- // Accelerate framework's Vector Functions
- // Floating-Point Arithmetic and Auxiliary Functions
- TLI_DEFINE_VECFUNC("ceilf", "vceilf", 4)
- TLI_DEFINE_VECFUNC("fabsf", "vfabsf", 4)
- TLI_DEFINE_VECFUNC("llvm.fabs.f32", "vfabsf", 4)
- TLI_DEFINE_VECFUNC("floorf", "vfloorf", 4)
- TLI_DEFINE_VECFUNC("sqrtf", "vsqrtf", 4)
- TLI_DEFINE_VECFUNC("llvm.sqrt.f32", "vsqrtf", 4)
- // Exponential and Logarithmic Functions
- TLI_DEFINE_VECFUNC("expf", "vexpf", 4)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "vexpf", 4)
- TLI_DEFINE_VECFUNC("expm1f", "vexpm1f", 4)
- TLI_DEFINE_VECFUNC("logf", "vlogf", 4)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "vlogf", 4)
- TLI_DEFINE_VECFUNC("log1pf", "vlog1pf", 4)
- TLI_DEFINE_VECFUNC("log10f", "vlog10f", 4)
- TLI_DEFINE_VECFUNC("llvm.log10.f32", "vlog10f", 4)
- TLI_DEFINE_VECFUNC("logbf", "vlogbf", 4)
- // Trigonometric Functions
- TLI_DEFINE_VECFUNC("sinf", "vsinf", 4)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "vsinf", 4)
- TLI_DEFINE_VECFUNC("cosf", "vcosf", 4)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "vcosf", 4)
- TLI_DEFINE_VECFUNC("tanf", "vtanf", 4)
- TLI_DEFINE_VECFUNC("asinf", "vasinf", 4)
- TLI_DEFINE_VECFUNC("acosf", "vacosf", 4)
- TLI_DEFINE_VECFUNC("atanf", "vatanf", 4)
- // Hyperbolic Functions
- TLI_DEFINE_VECFUNC("sinhf", "vsinhf", 4)
- TLI_DEFINE_VECFUNC("coshf", "vcoshf", 4)
- TLI_DEFINE_VECFUNC("tanhf", "vtanhf", 4)
- TLI_DEFINE_VECFUNC("asinhf", "vasinhf", 4)
- TLI_DEFINE_VECFUNC("acoshf", "vacoshf", 4)
- TLI_DEFINE_VECFUNC("atanhf", "vatanhf", 4)
- #elif defined(TLI_DEFINE_LIBMVEC_X86_VECFUNCS)
- // GLIBC Vector math Functions
- TLI_DEFINE_VECFUNC("sin", "_ZGVbN2v_sin", 2)
- TLI_DEFINE_VECFUNC("sin", "_ZGVdN4v_sin", 4)
- TLI_DEFINE_VECFUNC("sinf", "_ZGVbN4v_sinf", 4)
- TLI_DEFINE_VECFUNC("sinf", "_ZGVdN8v_sinf", 8)
- TLI_DEFINE_VECFUNC("llvm.sin.f64", "_ZGVbN2v_sin", 2)
- TLI_DEFINE_VECFUNC("llvm.sin.f64", "_ZGVdN4v_sin", 4)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "_ZGVbN4v_sinf", 4)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "_ZGVdN8v_sinf", 8)
- TLI_DEFINE_VECFUNC("cos", "_ZGVbN2v_cos", 2)
- TLI_DEFINE_VECFUNC("cos", "_ZGVdN4v_cos", 4)
- TLI_DEFINE_VECFUNC("cosf", "_ZGVbN4v_cosf", 4)
- TLI_DEFINE_VECFUNC("cosf", "_ZGVdN8v_cosf", 8)
- TLI_DEFINE_VECFUNC("llvm.cos.f64", "_ZGVbN2v_cos", 2)
- TLI_DEFINE_VECFUNC("llvm.cos.f64", "_ZGVdN4v_cos", 4)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "_ZGVbN4v_cosf", 4)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "_ZGVdN8v_cosf", 8)
- TLI_DEFINE_VECFUNC("pow", "_ZGVbN2vv_pow", 2)
- TLI_DEFINE_VECFUNC("pow", "_ZGVdN4vv_pow", 4)
- TLI_DEFINE_VECFUNC("powf", "_ZGVbN4vv_powf", 4)
- TLI_DEFINE_VECFUNC("powf", "_ZGVdN8vv_powf", 8)
- TLI_DEFINE_VECFUNC("__pow_finite", "_ZGVbN2vv___pow_finite", 2)
- TLI_DEFINE_VECFUNC("__pow_finite", "_ZGVdN4vv___pow_finite", 4)
- TLI_DEFINE_VECFUNC("__powf_finite", "_ZGVbN4vv___powf_finite", 4)
- TLI_DEFINE_VECFUNC("__powf_finite", "_ZGVdN8vv___powf_finite", 8)
- TLI_DEFINE_VECFUNC("llvm.pow.f64", "_ZGVbN2vv_pow", 2)
- TLI_DEFINE_VECFUNC("llvm.pow.f64", "_ZGVdN4vv_pow", 4)
- TLI_DEFINE_VECFUNC("llvm.pow.f32", "_ZGVbN4vv_powf", 4)
- TLI_DEFINE_VECFUNC("llvm.pow.f32", "_ZGVdN8vv_powf", 8)
- TLI_DEFINE_VECFUNC("exp", "_ZGVbN2v_exp", 2)
- TLI_DEFINE_VECFUNC("exp", "_ZGVdN4v_exp", 4)
- TLI_DEFINE_VECFUNC("expf", "_ZGVbN4v_expf", 4)
- TLI_DEFINE_VECFUNC("expf", "_ZGVdN8v_expf", 8)
- TLI_DEFINE_VECFUNC("__exp_finite", "_ZGVbN2v___exp_finite", 2)
- TLI_DEFINE_VECFUNC("__exp_finite", "_ZGVdN4v___exp_finite", 4)
- TLI_DEFINE_VECFUNC("__expf_finite", "_ZGVbN4v___expf_finite", 4)
- TLI_DEFINE_VECFUNC("__expf_finite", "_ZGVdN8v___expf_finite", 8)
- TLI_DEFINE_VECFUNC("llvm.exp.f64", "_ZGVbN2v_exp", 2)
- TLI_DEFINE_VECFUNC("llvm.exp.f64", "_ZGVdN4v_exp", 4)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "_ZGVbN4v_expf", 4)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "_ZGVdN8v_expf", 8)
- TLI_DEFINE_VECFUNC("log", "_ZGVbN2v_log", 2)
- TLI_DEFINE_VECFUNC("log", "_ZGVdN4v_log", 4)
- TLI_DEFINE_VECFUNC("logf", "_ZGVbN4v_logf", 4)
- TLI_DEFINE_VECFUNC("logf", "_ZGVdN8v_logf", 8)
- TLI_DEFINE_VECFUNC("__log_finite", "_ZGVbN2v___log_finite", 2)
- TLI_DEFINE_VECFUNC("__log_finite", "_ZGVdN4v___log_finite", 4)
- TLI_DEFINE_VECFUNC("__logf_finite", "_ZGVbN4v___logf_finite", 4)
- TLI_DEFINE_VECFUNC("__logf_finite", "_ZGVdN8v___logf_finite", 8)
- TLI_DEFINE_VECFUNC("llvm.log.f64", "_ZGVbN2v_log", 2)
- TLI_DEFINE_VECFUNC("llvm.log.f64", "_ZGVdN4v_log", 4)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "_ZGVbN4v_logf", 4)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "_ZGVdN8v_logf", 8)
- #elif defined(TLI_DEFINE_MASSV_VECFUNCS)
- // IBM MASS library's vector Functions
- // Floating-Point Arithmetic and Auxiliary Functions
- TLI_DEFINE_VECFUNC("cbrt", "__cbrtd2_massv", 2)
- TLI_DEFINE_VECFUNC("cbrtf", "__cbrtf4_massv", 4)
- TLI_DEFINE_VECFUNC("pow", "__powd2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.pow.f64", "__powd2_massv", 2)
- TLI_DEFINE_VECFUNC("powf", "__powf4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.pow.f32", "__powf4_massv", 4)
- TLI_DEFINE_VECFUNC("sqrt", "__sqrtd2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.sqrt.f64", "__sqrtd2_massv", 2)
- TLI_DEFINE_VECFUNC("sqrtf", "__sqrtf4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.sqrt.f32", "__sqrtf4_massv", 4)
- // Exponential and Logarithmic Functions
- TLI_DEFINE_VECFUNC("exp", "__expd2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.exp.f64", "__expd2_massv", 2)
- TLI_DEFINE_VECFUNC("expf", "__expf4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "__expf4_massv", 4)
- TLI_DEFINE_VECFUNC("exp2", "__exp2d2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__exp2d2_massv", 2)
- TLI_DEFINE_VECFUNC("exp2f", "__exp2f4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__exp2f4_massv", 4)
- TLI_DEFINE_VECFUNC("expm1", "__expm1d2_massv", 2)
- TLI_DEFINE_VECFUNC("expm1f", "__expm1f4_massv", 4)
- TLI_DEFINE_VECFUNC("log", "__logd2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.log.f64", "__logd2_massv", 2)
- TLI_DEFINE_VECFUNC("logf", "__logf4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "__logf4_massv", 4)
- TLI_DEFINE_VECFUNC("log1p", "__log1pd2_massv", 2)
- TLI_DEFINE_VECFUNC("log1pf", "__log1pf4_massv", 4)
- TLI_DEFINE_VECFUNC("log10", "__log10d2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.log10.f64", "__log10d2_massv", 2)
- TLI_DEFINE_VECFUNC("log10f", "__log10f4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.log10.f32", "__log10f4_massv", 4)
- TLI_DEFINE_VECFUNC("log2", "__log2d2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.log2.f64", "__log2d2_massv", 2)
- TLI_DEFINE_VECFUNC("log2f", "__log2f4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.log2.f32", "__log2f4_massv", 4)
- // Trigonometric Functions
- TLI_DEFINE_VECFUNC("sin", "__sind2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.sin.f64", "__sind2_massv", 2)
- TLI_DEFINE_VECFUNC("sinf", "__sinf4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "__sinf4_massv", 4)
- TLI_DEFINE_VECFUNC("cos", "__cosd2_massv", 2)
- TLI_DEFINE_VECFUNC("llvm.cos.f64", "__cosd2_massv", 2)
- TLI_DEFINE_VECFUNC("cosf", "__cosf4_massv", 4)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "__cosf4_massv", 4)
- TLI_DEFINE_VECFUNC("tan", "__tand2_massv", 2)
- TLI_DEFINE_VECFUNC("tanf", "__tanf4_massv", 4)
- TLI_DEFINE_VECFUNC("asin", "__asind2_massv", 2)
- TLI_DEFINE_VECFUNC("asinf", "__asinf4_massv", 4)
- TLI_DEFINE_VECFUNC("acos", "__acosd2_massv", 2)
- TLI_DEFINE_VECFUNC("acosf", "__acosf4_massv", 4)
- TLI_DEFINE_VECFUNC("atan", "__atand2_massv", 2)
- TLI_DEFINE_VECFUNC("atanf", "__atanf4_massv", 4)
- TLI_DEFINE_VECFUNC("atan2", "__atan2d2_massv", 2)
- TLI_DEFINE_VECFUNC("atan2f", "__atan2f4_massv", 4)
- // Hyperbolic Functions
- TLI_DEFINE_VECFUNC("sinh", "__sinhd2_massv", 2)
- TLI_DEFINE_VECFUNC("sinhf", "__sinhf4_massv", 4)
- TLI_DEFINE_VECFUNC("cosh", "__coshd2_massv", 2)
- TLI_DEFINE_VECFUNC("coshf", "__coshf4_massv", 4)
- TLI_DEFINE_VECFUNC("tanh", "__tanhd2_massv", 2)
- TLI_DEFINE_VECFUNC("tanhf", "__tanhf4_massv", 4)
- TLI_DEFINE_VECFUNC("asinh", "__asinhd2_massv", 2)
- TLI_DEFINE_VECFUNC("asinhf", "__asinhf4_massv", 4)
- TLI_DEFINE_VECFUNC("acosh", "__acoshd2_massv", 2)
- TLI_DEFINE_VECFUNC("acoshf", "__acoshf4_massv", 4)
- TLI_DEFINE_VECFUNC("atanh", "__atanhd2_massv", 2)
- TLI_DEFINE_VECFUNC("atanhf", "__atanhf4_massv", 4)
- #elif defined(TLI_DEFINE_SVML_VECFUNCS)
- // Intel SVM library's Vector Functions
- TLI_DEFINE_VECFUNC("sin", "__svml_sin2", 2)
- TLI_DEFINE_VECFUNC("sin", "__svml_sin4", 4)
- TLI_DEFINE_VECFUNC("sin", "__svml_sin8", 8)
- TLI_DEFINE_VECFUNC("sinf", "__svml_sinf4", 4)
- TLI_DEFINE_VECFUNC("sinf", "__svml_sinf8", 8)
- TLI_DEFINE_VECFUNC("sinf", "__svml_sinf16", 16)
- TLI_DEFINE_VECFUNC("llvm.sin.f64", "__svml_sin2", 2)
- TLI_DEFINE_VECFUNC("llvm.sin.f64", "__svml_sin4", 4)
- TLI_DEFINE_VECFUNC("llvm.sin.f64", "__svml_sin8", 8)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "__svml_sinf4", 4)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "__svml_sinf8", 8)
- TLI_DEFINE_VECFUNC("llvm.sin.f32", "__svml_sinf16", 16)
- TLI_DEFINE_VECFUNC("cos", "__svml_cos2", 2)
- TLI_DEFINE_VECFUNC("cos", "__svml_cos4", 4)
- TLI_DEFINE_VECFUNC("cos", "__svml_cos8", 8)
- TLI_DEFINE_VECFUNC("cosf", "__svml_cosf4", 4)
- TLI_DEFINE_VECFUNC("cosf", "__svml_cosf8", 8)
- TLI_DEFINE_VECFUNC("cosf", "__svml_cosf16", 16)
- TLI_DEFINE_VECFUNC("llvm.cos.f64", "__svml_cos2", 2)
- TLI_DEFINE_VECFUNC("llvm.cos.f64", "__svml_cos4", 4)
- TLI_DEFINE_VECFUNC("llvm.cos.f64", "__svml_cos8", 8)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "__svml_cosf4", 4)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "__svml_cosf8", 8)
- TLI_DEFINE_VECFUNC("llvm.cos.f32", "__svml_cosf16", 16)
- TLI_DEFINE_VECFUNC("pow", "__svml_pow2", 2)
- TLI_DEFINE_VECFUNC("pow", "__svml_pow4", 4)
- TLI_DEFINE_VECFUNC("pow", "__svml_pow8", 8)
- TLI_DEFINE_VECFUNC("powf", "__svml_powf4", 4)
- TLI_DEFINE_VECFUNC("powf", "__svml_powf8", 8)
- TLI_DEFINE_VECFUNC("powf", "__svml_powf16", 16)
- TLI_DEFINE_VECFUNC("__pow_finite", "__svml_pow2", 2)
- TLI_DEFINE_VECFUNC("__pow_finite", "__svml_pow4", 4)
- TLI_DEFINE_VECFUNC("__pow_finite", "__svml_pow8", 8)
- TLI_DEFINE_VECFUNC("__powf_finite", "__svml_powf4", 4)
- TLI_DEFINE_VECFUNC("__powf_finite", "__svml_powf8", 8)
- TLI_DEFINE_VECFUNC("__powf_finite", "__svml_powf16", 16)
- TLI_DEFINE_VECFUNC("llvm.pow.f64", "__svml_pow2", 2)
- TLI_DEFINE_VECFUNC("llvm.pow.f64", "__svml_pow4", 4)
- TLI_DEFINE_VECFUNC("llvm.pow.f64", "__svml_pow8", 8)
- TLI_DEFINE_VECFUNC("llvm.pow.f32", "__svml_powf4", 4)
- TLI_DEFINE_VECFUNC("llvm.pow.f32", "__svml_powf8", 8)
- TLI_DEFINE_VECFUNC("llvm.pow.f32", "__svml_powf16", 16)
- TLI_DEFINE_VECFUNC("exp", "__svml_exp2", 2)
- TLI_DEFINE_VECFUNC("exp", "__svml_exp4", 4)
- TLI_DEFINE_VECFUNC("exp", "__svml_exp8", 8)
- TLI_DEFINE_VECFUNC("expf", "__svml_expf4", 4)
- TLI_DEFINE_VECFUNC("expf", "__svml_expf8", 8)
- TLI_DEFINE_VECFUNC("expf", "__svml_expf16", 16)
- TLI_DEFINE_VECFUNC("__exp_finite", "__svml_exp2", 2)
- TLI_DEFINE_VECFUNC("__exp_finite", "__svml_exp4", 4)
- TLI_DEFINE_VECFUNC("__exp_finite", "__svml_exp8", 8)
- TLI_DEFINE_VECFUNC("__expf_finite", "__svml_expf4", 4)
- TLI_DEFINE_VECFUNC("__expf_finite", "__svml_expf8", 8)
- TLI_DEFINE_VECFUNC("__expf_finite", "__svml_expf16", 16)
- TLI_DEFINE_VECFUNC("llvm.exp.f64", "__svml_exp2", 2)
- TLI_DEFINE_VECFUNC("llvm.exp.f64", "__svml_exp4", 4)
- TLI_DEFINE_VECFUNC("llvm.exp.f64", "__svml_exp8", 8)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "__svml_expf4", 4)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "__svml_expf8", 8)
- TLI_DEFINE_VECFUNC("llvm.exp.f32", "__svml_expf16", 16)
- TLI_DEFINE_VECFUNC("log", "__svml_log2", 2)
- TLI_DEFINE_VECFUNC("log", "__svml_log4", 4)
- TLI_DEFINE_VECFUNC("log", "__svml_log8", 8)
- TLI_DEFINE_VECFUNC("logf", "__svml_logf4", 4)
- TLI_DEFINE_VECFUNC("logf", "__svml_logf8", 8)
- TLI_DEFINE_VECFUNC("logf", "__svml_logf16", 16)
- TLI_DEFINE_VECFUNC("__log_finite", "__svml_log2", 2)
- TLI_DEFINE_VECFUNC("__log_finite", "__svml_log4", 4)
- TLI_DEFINE_VECFUNC("__log_finite", "__svml_log8", 8)
- TLI_DEFINE_VECFUNC("__logf_finite", "__svml_logf4", 4)
- TLI_DEFINE_VECFUNC("__logf_finite", "__svml_logf8", 8)
- TLI_DEFINE_VECFUNC("__logf_finite", "__svml_logf16", 16)
- TLI_DEFINE_VECFUNC("llvm.log.f64", "__svml_log2", 2)
- TLI_DEFINE_VECFUNC("llvm.log.f64", "__svml_log4", 4)
- TLI_DEFINE_VECFUNC("llvm.log.f64", "__svml_log8", 8)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "__svml_logf4", 4)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "__svml_logf8", 8)
- TLI_DEFINE_VECFUNC("llvm.log.f32", "__svml_logf16", 16)
- TLI_DEFINE_VECFUNC("log2", "__svml_log22", 2)
- TLI_DEFINE_VECFUNC("log2", "__svml_log24", 4)
- TLI_DEFINE_VECFUNC("log2", "__svml_log28", 8)
- TLI_DEFINE_VECFUNC("log2f", "__svml_log2f4", 4)
- TLI_DEFINE_VECFUNC("log2f", "__svml_log2f8", 8)
- TLI_DEFINE_VECFUNC("log2f", "__svml_log2f16", 16)
- TLI_DEFINE_VECFUNC("__log2_finite", "__svml_log22", 2)
- TLI_DEFINE_VECFUNC("__log2_finite", "__svml_log24", 4)
- TLI_DEFINE_VECFUNC("__log2_finite", "__svml_log28", 8)
- TLI_DEFINE_VECFUNC("__log2f_finite", "__svml_log2f4", 4)
- TLI_DEFINE_VECFUNC("__log2f_finite", "__svml_log2f8", 8)
- TLI_DEFINE_VECFUNC("__log2f_finite", "__svml_log2f16", 16)
- TLI_DEFINE_VECFUNC("llvm.log2.f64", "__svml_log22", 2)
- TLI_DEFINE_VECFUNC("llvm.log2.f64", "__svml_log24", 4)
- TLI_DEFINE_VECFUNC("llvm.log2.f64", "__svml_log28", 8)
- TLI_DEFINE_VECFUNC("llvm.log2.f32", "__svml_log2f4", 4)
- TLI_DEFINE_VECFUNC("llvm.log2.f32", "__svml_log2f8", 8)
- TLI_DEFINE_VECFUNC("llvm.log2.f32", "__svml_log2f16", 16)
- TLI_DEFINE_VECFUNC("log10", "__svml_log102", 2)
- TLI_DEFINE_VECFUNC("log10", "__svml_log104", 4)
- TLI_DEFINE_VECFUNC("log10", "__svml_log108", 8)
- TLI_DEFINE_VECFUNC("log10f", "__svml_log10f4", 4)
- TLI_DEFINE_VECFUNC("log10f", "__svml_log10f8", 8)
- TLI_DEFINE_VECFUNC("log10f", "__svml_log10f16", 16)
- TLI_DEFINE_VECFUNC("__log10_finite", "__svml_log102", 2)
- TLI_DEFINE_VECFUNC("__log10_finite", "__svml_log104", 4)
- TLI_DEFINE_VECFUNC("__log10_finite", "__svml_log108", 8)
- TLI_DEFINE_VECFUNC("__log10f_finite", "__svml_log10f4", 4)
- TLI_DEFINE_VECFUNC("__log10f_finite", "__svml_log10f8", 8)
- TLI_DEFINE_VECFUNC("__log10f_finite", "__svml_log10f16", 16)
- TLI_DEFINE_VECFUNC("llvm.log10.f64", "__svml_log102", 2)
- TLI_DEFINE_VECFUNC("llvm.log10.f64", "__svml_log104", 4)
- TLI_DEFINE_VECFUNC("llvm.log10.f64", "__svml_log108", 8)
- TLI_DEFINE_VECFUNC("llvm.log10.f32", "__svml_log10f4", 4)
- TLI_DEFINE_VECFUNC("llvm.log10.f32", "__svml_log10f8", 8)
- TLI_DEFINE_VECFUNC("llvm.log10.f32", "__svml_log10f16", 16)
- TLI_DEFINE_VECFUNC("sqrt", "__svml_sqrt2", 2)
- TLI_DEFINE_VECFUNC("sqrt", "__svml_sqrt4", 4)
- TLI_DEFINE_VECFUNC("sqrt", "__svml_sqrt8", 8)
- TLI_DEFINE_VECFUNC("sqrtf", "__svml_sqrtf4", 4)
- TLI_DEFINE_VECFUNC("sqrtf", "__svml_sqrtf8", 8)
- TLI_DEFINE_VECFUNC("sqrtf", "__svml_sqrtf16", 16)
- TLI_DEFINE_VECFUNC("__sqrt_finite", "__svml_sqrt2", 2)
- TLI_DEFINE_VECFUNC("__sqrt_finite", "__svml_sqrt4", 4)
- TLI_DEFINE_VECFUNC("__sqrt_finite", "__svml_sqrt8", 8)
- TLI_DEFINE_VECFUNC("__sqrtf_finite", "__svml_sqrtf4", 4)
- TLI_DEFINE_VECFUNC("__sqrtf_finite", "__svml_sqrtf8", 8)
- TLI_DEFINE_VECFUNC("__sqrtf_finite", "__svml_sqrtf16", 16)
- TLI_DEFINE_VECFUNC("exp2", "__svml_exp22", 2)
- TLI_DEFINE_VECFUNC("exp2", "__svml_exp24", 4)
- TLI_DEFINE_VECFUNC("exp2", "__svml_exp28", 8)
- TLI_DEFINE_VECFUNC("exp2f", "__svml_exp2f4", 4)
- TLI_DEFINE_VECFUNC("exp2f", "__svml_exp2f8", 8)
- TLI_DEFINE_VECFUNC("exp2f", "__svml_exp2f16", 16)
- TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__svml_exp22", 2)
- TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__svml_exp24", 4)
- TLI_DEFINE_VECFUNC("llvm.exp2.f64", "__svml_exp28", 8)
- TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__svml_exp2f4", 4)
- TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__svml_exp2f8", 8)
- TLI_DEFINE_VECFUNC("llvm.exp2.f32", "__svml_exp2f16", 16)
- TLI_DEFINE_VECFUNC("__exp2_finite", "__svml_exp22", 2)
- TLI_DEFINE_VECFUNC("__exp2_finite", "__svml_exp24", 4)
- TLI_DEFINE_VECFUNC("__exp2_finite", "__svml_exp28", 8)
- TLI_DEFINE_VECFUNC("__exp2f_finite", "__svml_exp2f4", 4)
- TLI_DEFINE_VECFUNC("__exp2f_finite", "__svml_exp2f8", 8)
- TLI_DEFINE_VECFUNC("__exp2f_finite", "__svml_exp2f16", 16)
- #else
- #error "Must choose which vector library functions are to be defined."
- #endif
- #undef TLI_DEFINE_VECFUNC
- #undef TLI_DEFINE_ACCELERATE_VECFUNCS
- #undef TLI_DEFINE_LIBMVEC_X86_VECFUNCS
- #undef TLI_DEFINE_MASSV_VECFUNCS
- #undef TLI_DEFINE_SVML_VECFUNCS
- #undef TLI_DEFINE_MASSV_VECFUNCS_NAMES
|