regtest: add check for -Wl,--no-warn-execstack
[valgrind.git] / VEX / priv / host_generic_simd64.h
blob0df3fccff815a450be0bb5b786ac3938383c2c2c
2 /*---------------------------------------------------------------*/
3 /*--- begin host_generic_simd64.h ---*/
4 /*---------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2004-2017 OpenWorks LLP
11 info@open-works.net
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
28 Neither the names of the U.S. Department of Energy nor the
29 University of California nor the names of its contributors may be
30 used to endorse or promote products derived from this software
31 without prior written permission.
34 /* Generic helper functions for doing 64-bit SIMD arithmetic in cases
35 where the instruction selectors cannot generate code in-line.
36 These are purely back-end entities and cannot be seen/referenced
37 as clean helper functions from IR.
39 These will get called from generated code and therefore should be
40 well behaved -- no floating point or mmx insns, just straight
41 integer code.
43 Each function implements the correspondingly-named IR primop.
46 #ifndef __VEX_HOST_GENERIC_SIMD64_H
47 #define __VEX_HOST_GENERIC_SIMD64_H
49 #include "libvex_basictypes.h"
51 /* DO NOT MAKE THESE INTO REGPARM FNS! THIS WILL BREAK CALLING
52 SEQUENCES GENERATED BY host-x86/isel.c. */
54 extern ULong h_generic_calc_Add32x2 ( ULong, ULong );
55 extern ULong h_generic_calc_Add16x4 ( ULong, ULong );
56 extern ULong h_generic_calc_Add8x8 ( ULong, ULong );
58 extern ULong h_generic_calc_QAdd16Sx4 ( ULong, ULong );
59 extern ULong h_generic_calc_QAdd8Sx8 ( ULong, ULong );
60 extern ULong h_generic_calc_QAdd16Ux4 ( ULong, ULong );
61 extern ULong h_generic_calc_QAdd8Ux8 ( ULong, ULong );
63 extern ULong h_generic_calc_Sub32x2 ( ULong, ULong );
64 extern ULong h_generic_calc_Sub16x4 ( ULong, ULong );
65 extern ULong h_generic_calc_Sub8x8 ( ULong, ULong );
67 extern ULong h_generic_calc_QSub16Sx4 ( ULong, ULong );
68 extern ULong h_generic_calc_QSub8Sx8 ( ULong, ULong );
69 extern ULong h_generic_calc_QSub16Ux4 ( ULong, ULong );
70 extern ULong h_generic_calc_QSub8Ux8 ( ULong, ULong );
72 extern ULong h_generic_calc_Mul16x4 ( ULong, ULong );
73 extern ULong h_generic_calc_Mul32x2 ( ULong, ULong );
74 extern ULong h_generic_calc_MulHi16Sx4 ( ULong, ULong );
75 extern ULong h_generic_calc_MulHi16Ux4 ( ULong, ULong );
77 extern ULong h_generic_calc_CmpEQ32x2 ( ULong, ULong );
78 extern ULong h_generic_calc_CmpEQ16x4 ( ULong, ULong );
79 extern ULong h_generic_calc_CmpEQ8x8 ( ULong, ULong );
80 extern ULong h_generic_calc_CmpGT32Sx2 ( ULong, ULong );
81 extern ULong h_generic_calc_CmpGT16Sx4 ( ULong, ULong );
82 extern ULong h_generic_calc_CmpGT8Sx8 ( ULong, ULong );
84 extern ULong h_generic_calc_CmpNEZ32x2 ( ULong );
85 extern ULong h_generic_calc_CmpNEZ16x4 ( ULong );
86 extern ULong h_generic_calc_CmpNEZ8x8 ( ULong );
88 extern ULong h_generic_calc_QNarrowBin32Sto16Sx4 ( ULong, ULong );
89 extern ULong h_generic_calc_QNarrowBin16Sto8Sx8 ( ULong, ULong );
90 extern ULong h_generic_calc_QNarrowBin16Sto8Ux8 ( ULong, ULong );
91 extern ULong h_generic_calc_NarrowBin32to16x4 ( ULong, ULong );
92 extern ULong h_generic_calc_NarrowBin16to8x8 ( ULong, ULong );
94 extern ULong h_generic_calc_InterleaveHI8x8 ( ULong, ULong );
95 extern ULong h_generic_calc_InterleaveLO8x8 ( ULong, ULong );
96 extern ULong h_generic_calc_InterleaveHI16x4 ( ULong, ULong );
97 extern ULong h_generic_calc_InterleaveLO16x4 ( ULong, ULong );
98 extern ULong h_generic_calc_InterleaveHI32x2 ( ULong, ULong );
99 extern ULong h_generic_calc_InterleaveLO32x2 ( ULong, ULong );
101 extern ULong h_generic_calc_CatOddLanes16x4 ( ULong, ULong );
102 extern ULong h_generic_calc_CatEvenLanes16x4 ( ULong, ULong );
103 extern ULong h_generic_calc_Perm8x8 ( ULong, ULong );
104 extern ULong h_generic_calc_PermOrZero8x8 ( ULong, ULong );
106 extern ULong h_generic_calc_ShlN8x8 ( ULong, UInt );
107 extern ULong h_generic_calc_ShlN16x4 ( ULong, UInt );
108 extern ULong h_generic_calc_ShlN32x2 ( ULong, UInt );
110 extern ULong h_generic_calc_ShrN16x4 ( ULong, UInt );
111 extern ULong h_generic_calc_ShrN32x2 ( ULong, UInt );
113 extern ULong h_generic_calc_SarN8x8 ( ULong, UInt );
114 extern ULong h_generic_calc_SarN16x4 ( ULong, UInt );
115 extern ULong h_generic_calc_SarN32x2 ( ULong, UInt );
117 extern ULong h_generic_calc_Avg8Ux8 ( ULong, ULong );
118 extern ULong h_generic_calc_Avg16Ux4 ( ULong, ULong );
120 extern ULong h_generic_calc_Max16Sx4 ( ULong, ULong );
121 extern ULong h_generic_calc_Max8Ux8 ( ULong, ULong );
122 extern ULong h_generic_calc_Min16Sx4 ( ULong, ULong );
123 extern ULong h_generic_calc_Min8Ux8 ( ULong, ULong );
125 extern UInt h_generic_calc_GetMSBs8x8 ( ULong );
127 /* 32-bit SIMD HELPERS */
129 extern UInt h_generic_calc_Add16x2 ( UInt, UInt );
130 extern UInt h_generic_calc_Sub16x2 ( UInt, UInt );
132 extern UInt h_generic_calc_HAdd16Ux2 ( UInt, UInt );
133 extern UInt h_generic_calc_HAdd16Sx2 ( UInt, UInt );
134 extern UInt h_generic_calc_HSub16Ux2 ( UInt, UInt );
135 extern UInt h_generic_calc_HSub16Sx2 ( UInt, UInt );
137 extern UInt h_generic_calc_QAdd16Ux2 ( UInt, UInt );
138 extern UInt h_generic_calc_QAdd16Sx2 ( UInt, UInt );
139 extern UInt h_generic_calc_QSub16Ux2 ( UInt, UInt );
140 extern UInt h_generic_calc_QSub16Sx2 ( UInt, UInt );
142 extern UInt h_generic_calc_Add8x4 ( UInt, UInt );
143 extern UInt h_generic_calc_Sub8x4 ( UInt, UInt );
145 extern UInt h_generic_calc_HAdd8Ux4 ( UInt, UInt );
146 extern UInt h_generic_calc_HAdd8Sx4 ( UInt, UInt );
147 extern UInt h_generic_calc_HSub8Ux4 ( UInt, UInt );
148 extern UInt h_generic_calc_HSub8Sx4 ( UInt, UInt );
150 extern UInt h_generic_calc_QAdd8Ux4 ( UInt, UInt );
151 extern UInt h_generic_calc_QAdd8Sx4 ( UInt, UInt );
152 extern UInt h_generic_calc_QSub8Ux4 ( UInt, UInt );
153 extern UInt h_generic_calc_QSub8Sx4 ( UInt, UInt );
155 extern UInt h_generic_calc_Sad8Ux4 ( UInt, UInt );
157 extern UInt h_generic_calc_QAdd32S ( UInt, UInt );
158 extern UInt h_generic_calc_QSub32S ( UInt, UInt );
160 extern UInt h_generic_calc_CmpNEZ16x2 ( UInt );
161 extern UInt h_generic_calc_CmpNEZ8x4 ( UInt );
163 extern ULong h_calc_DPBtoBCD ( ULong dpb );
164 extern ULong h_calc_BCDtoDPB ( ULong bcd );
166 // Signed and unsigned integer division, that behave like
167 // the ARMv7 UDIV and SDIV instructions.
168 extern UInt h_calc_udiv32_w_arm_semantics ( UInt, UInt );
169 extern ULong h_calc_udiv64_w_arm_semantics ( ULong, ULong );
170 extern Int h_calc_sdiv32_w_arm_semantics ( Int, Int );
171 extern Long h_calc_sdiv64_w_arm_semantics ( Long, Long );
174 #endif /* ndef __VEX_HOST_GENERIC_SIMD64_H */
176 /*---------------------------------------------------------------*/
177 /*--- end host_generic_simd64.h ---*/
178 /*---------------------------------------------------------------*/