diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-10-14 22:00:25 -0500 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-10-14 21:21:58 -0700 |
commit | 52ab7604db35e0421bc3d2468a3af52b2c513a7b (patch) | |
tree | 2763b19062339644b3a747ad81ca38d253bd8ce7 /sysdeps/x86_64/multiarch/x86-evex256-vecs.h | |
parent | 2c42257314536b94cc8d52edede86e94e98c1436 (diff) | |
download | glibc-52ab7604db35e0421bc3d2468a3af52b2c513a7b.tar.gz glibc-52ab7604db35e0421bc3d2468a3af52b2c513a7b.tar.xz glibc-52ab7604db35e0421bc3d2468a3af52b2c513a7b.zip |
x86: Update VEC macros to complete API for evex/evex512 impls
1) Copy so that backport will be easier. 2) Make section only define if there is not a previous definition 3) Add `VEC_lo` definition for proper reg-width but in the ymm/zmm0-15 range. 4) Add macros for accessing GPRs based on VEC_SIZE This is to make it easier to do think like: ``` vpcmpb %VEC(0), %VEC(1), %k0 kmov{d|q} %k0, %{eax|rax} test %{eax|rax} ``` It adds macro s.t any GPR can get the proper width with: `V{upcase_GPR_name}` and any mask insn can get the proper width with: `{upcase_mask_insn_without_postfix}` This commit does not change libc.so Tested build on x86-64
Diffstat (limited to 'sysdeps/x86_64/multiarch/x86-evex256-vecs.h')
-rw-r--r-- | sysdeps/x86_64/multiarch/x86-evex256-vecs.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/x86-evex256-vecs.h b/sysdeps/x86_64/multiarch/x86-evex256-vecs.h new file mode 100644 index 0000000000..8337b95504 --- /dev/null +++ b/sysdeps/x86_64/multiarch/x86-evex256-vecs.h @@ -0,0 +1,38 @@ +/* Common config for EVEX256 VECs + All versions must be listed in ifunc-impl-list.c. + Copyright (C) 2022 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#ifndef _EVEX256_VECS_H +#define _EVEX256_VECS_H 1 + +#ifdef VEC_SIZE +# error "Multiple VEC configs included!" +#endif + +#define VEC_SIZE 32 +#include "x86-evex-vecs-common.h" + +#define USE_WITH_EVEX256 1 + +#ifndef SECTION +# define SECTION(p) p##.evex +#endif + +#define VMM VMM_256 +#define VMM_lo VMM_any_ymm +#endif |