From: Christophe Lyon Date: Wed, 15 Feb 2023 14:34:06 +0000 (+0000) Subject: arm: [MVE intrinsics] add create shape X-Git-Tag: basepoints/gcc-15~9692 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4545ca8bc32d98edf7b0d87939c81a406289a955;p=thirdparty%2Fgcc.git arm: [MVE intrinsics] add create shape This patch adds the create shape description. 2022-09-08 Christophe Lyon gcc/ * config/arm/arm-mve-builtins-shapes.cc (create): New. * config/arm/arm-mve-builtins-shapes.h: (create): New. --- diff --git a/gcc/config/arm/arm-mve-builtins-shapes.cc b/gcc/config/arm/arm-mve-builtins-shapes.cc index e2f0984e4a0a..5e6681c784a8 100644 --- a/gcc/config/arm/arm-mve-builtins-shapes.cc +++ b/gcc/config/arm/arm-mve-builtins-shapes.cc @@ -458,6 +458,28 @@ struct binary_orrq_def : public overloaded_base<0> }; SHAPE (binary_orrq) +/* xN_t vfoo[_t0](uint64_t, uint64_t) + + where there are N arguments in total. + Example: vcreateq. + int16x8_t [__arm_]vcreateq_s16(uint64_t a, uint64_t b) */ +struct create_def : public nonoverloaded_base +{ + void + build (function_builder &b, const function_group_info &group, + bool preserve_user_namespace) const override + { + build_all (b, "v0,su64,su64", group, MODE_none, preserve_user_namespace); + } + + tree + resolve (function_resolver &r) const override + { + return r.resolve_uniform (0, 2); + } +}; +SHAPE (create) + /* [xN]_t vfoo_t0(). Example: vuninitializedq. diff --git a/gcc/config/arm/arm-mve-builtins-shapes.h b/gcc/config/arm/arm-mve-builtins-shapes.h index 618b32260500..3305d12877a7 100644 --- a/gcc/config/arm/arm-mve-builtins-shapes.h +++ b/gcc/config/arm/arm-mve-builtins-shapes.h @@ -37,6 +37,7 @@ namespace arm_mve extern const function_shape *const binary; extern const function_shape *const binary_opt_n; extern const function_shape *const binary_orrq; + extern const function_shape *const create; extern const function_shape *const inherent; extern const function_shape *const unary_convert;