blob: ad1ab96e6d2709e26e52ddc91bf0d267cf423212 [file] [log] [blame]
sewardjbbcf1882014-01-12 12:49:10 +00001
2/*---------------------------------------------------------------*/
3/*--- begin guest_arm64_defs.h ---*/
4/*---------------------------------------------------------------*/
5/*
6 This file is part of Valgrind, a dynamic binary instrumentation
7 framework.
8
sewardj785952d2015-08-21 11:29:16 +00009 Copyright (C) 2013-2015 OpenWorks
sewardjbbcf1882014-01-12 12:49:10 +000010 info@open-works.net
11
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation; either version 2 of the
15 License, or (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
25 02110-1301, USA.
26
27 The GNU General Public License is contained in the file COPYING.
28*/
29
30#ifndef __VEX_GUEST_ARM64_DEFS_H
31#define __VEX_GUEST_ARM64_DEFS_H
32
33#include "libvex_basictypes.h"
34#include "guest_generic_bb_to_IR.h" // DisResult
35
36/*---------------------------------------------------------*/
37/*--- arm64 to IR conversion ---*/
38/*---------------------------------------------------------*/
39
40/* Convert one ARM64 insn to IR. See the type DisOneInstrFn in
41 bb_to_IR.h. */
42extern
43DisResult disInstr_ARM64 ( IRSB* irbb,
florianbeac5302014-12-31 12:09:38 +000044 Bool (*resteerOkFn) ( void*, Addr ),
sewardjbbcf1882014-01-12 12:49:10 +000045 Bool resteerCisOk,
46 void* callback_opaque,
florian8462d112014-09-24 15:18:09 +000047 const UChar* guest_code,
sewardjbbcf1882014-01-12 12:49:10 +000048 Long delta,
floriand4cc0de2015-01-02 11:44:12 +000049 Addr guest_IP,
sewardjbbcf1882014-01-12 12:49:10 +000050 VexArch guest_arch,
floriancacba8e2014-12-15 18:58:07 +000051 const VexArchInfo* archinfo,
52 const VexAbiInfo* abiinfo,
sewardj9b769162014-07-24 12:42:03 +000053 VexEndness host_endness,
sewardjbbcf1882014-01-12 12:49:10 +000054 Bool sigill_diag );
55
56/* Used by the optimiser to specialise calls to helpers. */
57extern
58IRExpr* guest_arm64_spechelper ( const HChar* function_name,
59 IRExpr** args,
60 IRStmt** precedingStmts,
61 Int n_precedingStmts );
62
63/* Describes to the optimser which part of the guest state require
64 precise memory exceptions. This is logically part of the guest
65 state description. */
66extern
sewardjca2c3c72015-02-05 12:53:20 +000067Bool guest_arm64_state_requires_precise_mem_exns ( Int, Int,
68 VexRegisterUpdates );
sewardjbbcf1882014-01-12 12:49:10 +000069
70extern
71VexGuestLayout arm64Guest_layout;
72
73
74/*---------------------------------------------------------*/
75/*--- arm64 guest helpers ---*/
76/*---------------------------------------------------------*/
77
78/* --- CLEAN HELPERS --- */
79
80/* Calculate NZCV from the supplied thunk components, in the positions
81 they appear in the CPSR, viz bits 31:28 for N Z C V respectively.
82 Returned bits 63:32 and 27:0 are zero. */
83extern
84ULong arm64g_calculate_flags_nzcv ( ULong cc_op, ULong cc_dep1,
85 ULong cc_dep2, ULong cc_dep3 );
86
sewardjdee30502014-06-04 13:09:44 +000087/* Calculate the C flag from the thunk components, in the lowest bit
88 of the word (bit 0). */
89extern
90ULong arm64g_calculate_flag_c ( ULong cc_op, ULong cc_dep1,
91 ULong cc_dep2, ULong cc_dep3 );
92
sewardjbbcf1882014-01-12 12:49:10 +000093//ZZ /* Calculate the V flag from the thunk components, in the lowest bit
94//ZZ of the word (bit 0). */
95//ZZ extern
96//ZZ UInt armg_calculate_flag_v ( UInt cc_op, UInt cc_dep1,
97//ZZ UInt cc_dep2, UInt cc_dep3 );
98//ZZ
99/* Calculate the specified condition from the thunk components, in the
100 lowest bit of the word (bit 0). */
101extern
102ULong arm64g_calculate_condition ( /* ARM64Condcode << 4 | cc_op */
103 ULong cond_n_op ,
104 ULong cc_dep1,
105 ULong cc_dep2, ULong cc_dep3 );
106
107//ZZ /* Calculate the QC flag from the thunk components, in the lowest bit
108//ZZ of the word (bit 0). */
109//ZZ extern
110//ZZ UInt armg_calculate_flag_qc ( UInt resL1, UInt resL2,
111//ZZ UInt resR1, UInt resR2 );
112
Elliott Hughesa0664b92017-04-18 17:46:52 -0700113extern ULong arm64g_calc_crc32b ( ULong acc, ULong bits );
114extern ULong arm64g_calc_crc32h ( ULong acc, ULong bits );
115extern ULong arm64g_calc_crc32w ( ULong acc, ULong bits );
116extern ULong arm64g_calc_crc32x ( ULong acc, ULong bits );
117
118extern ULong arm64g_calc_crc32cb ( ULong acc, ULong bits );
119extern ULong arm64g_calc_crc32ch ( ULong acc, ULong bits );
120extern ULong arm64g_calc_crc32cw ( ULong acc, ULong bits );
121extern ULong arm64g_calc_crc32cx ( ULong acc, ULong bits );
sewardjbbcf1882014-01-12 12:49:10 +0000122
sewardj6eb5ef82014-07-14 20:39:23 +0000123/* --- DIRTY HELPERS --- */
124
125extern ULong arm64g_dirtyhelper_MRS_CNTVCT_EL0 ( void );
126
Elliott Hughesa0664b92017-04-18 17:46:52 -0700127extern void arm64g_dirtyhelper_PMULLQ ( /*OUT*/V128* res,
128 ULong arg1, ULong arg2 );
129
130extern void arm64g_dirtyhelper_AESE ( /*OUT*/V128* res,
131 ULong argHi, ULong argLo );
132extern void arm64g_dirtyhelper_AESD ( /*OUT*/V128* res,
133 ULong argHi, ULong argLo );
134extern void arm64g_dirtyhelper_AESMC ( /*OUT*/V128* res,
135 ULong argHi, ULong argLo );
136extern void arm64g_dirtyhelper_AESIMC ( /*OUT*/V128* res,
137 ULong argHi, ULong argLo );
138
139extern
140void arm64g_dirtyhelper_SHA1C ( /*OUT*/V128* res, ULong dHi, ULong dLo,
141 ULong nHi, ULong nLo, ULong mHi, ULong mLo );
142extern
143void arm64g_dirtyhelper_SHA1H ( /*OUT*/V128* res,
144 ULong nHi, ULong nLo );
145extern
146void arm64g_dirtyhelper_SHA1M ( /*OUT*/V128* res, ULong dHi, ULong dLo,
147 ULong nHi, ULong nLo, ULong mHi, ULong mLo );
148extern
149void arm64g_dirtyhelper_SHA1P ( /*OUT*/V128* res, ULong dHi, ULong dLo,
150 ULong nHi, ULong nLo, ULong mHi, ULong mLo );
151extern
152void arm64g_dirtyhelper_SHA1SU0 ( /*OUT*/V128* res, ULong dHi, ULong dLo,
153 ULong nHi, ULong nLo, ULong mHi, ULong mLo );
154extern
155void arm64g_dirtyhelper_SHA1SU1 ( /*OUT*/V128* res, ULong dHi, ULong dLo,
156 ULong nHi, ULong nLo );
157extern
158void arm64g_dirtyhelper_SHA256H2 ( /*OUT*/V128* res, ULong dHi, ULong dLo,
159 ULong nHi, ULong nLo, ULong mHi, ULong mLo );
160extern
161void arm64g_dirtyhelper_SHA256H ( /*OUT*/V128* res, ULong dHi, ULong dLo,
162 ULong nHi, ULong nLo, ULong mHi, ULong mLo );
163extern
164void arm64g_dirtyhelper_SHA256SU0 ( /*OUT*/V128* res, ULong dHi, ULong dLo,
165 ULong nHi, ULong nLo );
166extern
167void arm64g_dirtyhelper_SHA256SU1 ( /*OUT*/V128* res, ULong dHi, ULong dLo,
168 ULong nHi, ULong nLo,
169 ULong mHi, ULong mLo );
170
sewardj6eb5ef82014-07-14 20:39:23 +0000171
sewardjbbcf1882014-01-12 12:49:10 +0000172/*---------------------------------------------------------*/
173/*--- Condition code stuff ---*/
174/*---------------------------------------------------------*/
175
176/* Flag masks. Defines positions of flag bits in the NZCV
177 register. */
178#define ARM64G_CC_SHIFT_N 31
179#define ARM64G_CC_SHIFT_Z 30
180#define ARM64G_CC_SHIFT_C 29
181#define ARM64G_CC_SHIFT_V 28
182//ZZ #define ARMG_CC_SHIFT_Q 27
183//ZZ
184//ZZ #define ARMG_CC_MASK_N (1 << ARMG_CC_SHIFT_N)
185//ZZ #define ARMG_CC_MASK_Z (1 << ARMG_CC_SHIFT_Z)
186//ZZ #define ARMG_CC_MASK_C (1 << ARMG_CC_SHIFT_C)
187//ZZ #define ARMG_CC_MASK_V (1 << ARMG_CC_SHIFT_V)
188//ZZ #define ARMG_CC_MASK_Q (1 << ARMG_CC_SHIFT_Q)
189
190/* Flag thunk descriptors. A four-word thunk is used to record
191 details of the most recent flag-setting operation, so NZCV can
192 be computed later if needed.
193
194 The four words are:
195
196 CC_OP, which describes the operation.
197
198 CC_DEP1, CC_DEP2, CC_NDEP. These are arguments to the
199 operation. We want set up the mcx_masks in flag helper calls
200 involving these fields so that Memcheck "believes" that the
201 resulting flags are data-dependent on both CC_DEP1 and
202 CC_DEP2. Hence the name DEP.
203
204 When building the thunk, it is always necessary to write words into
205 CC_DEP1/2 and NDEP, even if those args are not used given the CC_OP
206 field. This is important because otherwise Memcheck could give
207 false positives as it does not understand the relationship between
208 the CC_OP field and CC_DEP1/2/NDEP, and so believes that the
209 definedness of the stored flags always depends on all 3 DEP values.
210
211 A summary of the field usages is:
212
213 OP DEP1 DEP2 DEP3
214 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
215
216 OP_COPY curr_NZCV:28x0 unused unused
217 OP_ADD32 argL argR unused
218 OP_ADD64 argL argR unused
219 OP_SUB32 argL argR unused
220 OP_SUB64 argL argR unused
sewardjdee30502014-06-04 13:09:44 +0000221 OP_ADC32 argL argR 63x0:old_C
222 OP_ADC64 argL argR 63x0:old_C
223 OP_SBC32 argL argR 63x0:old_C
224 OP_SBC64 argL argR 63x0:old_C
sewardjbbcf1882014-01-12 12:49:10 +0000225 OP_LOGIC32 result unused unused
226 OP_LOGIC64 result unused unused
227//ZZ OP_MUL result unused 30x0:old_C:old_V
228//ZZ OP_MULL resLO32 resHI32 30x0:old_C:old_V
229//ZZ */
230
231enum {
232 ARM64G_CC_OP_COPY=0, /* DEP1 = NZCV in 31:28, DEP2 = 0, DEP3 = 0
233 just copy DEP1 to output */
234
235 ARM64G_CC_OP_ADD32, /* DEP1 = argL (Rn), DEP2 = argR (shifter_op),
236 DEP3 = 0 */
237
238 ARM64G_CC_OP_ADD64, /* DEP1 = argL (Rn), DEP2 = argR (shifter_op),
239 DEP3 = 0 */
240
241 ARM64G_CC_OP_SUB32, /* DEP1 = argL (Rn), DEP2 = argR (shifter_op),
242 DEP3 = 0 */
243
244 ARM64G_CC_OP_SUB64, /* DEP1 = argL (Rn), DEP2 = argR (shifter_op),
245 DEP3 = 0 */
246
sewardjdee30502014-06-04 13:09:44 +0000247 ARM64G_CC_OP_ADC32, /* DEP1 = argL (Rn), DEP2 = arg2 (shifter_op),
248 DEP3 = oldC (in LSB) */
249
250 ARM64G_CC_OP_ADC64, /* DEP1 = argL (Rn), DEP2 = arg2 (shifter_op),
251 DEP3 = oldC (in LSB) */
252
253 ARM64G_CC_OP_SBC32, /* DEP1 = argL (Rn), DEP2 = arg2 (shifter_op),
254 DEP3 = oldC (in LSB) */
255
256 ARM64G_CC_OP_SBC64, /* DEP1 = argL (Rn), DEP2 = arg2 (shifter_op),
257 DEP3 = oldC (in LSB) */
sewardjbbcf1882014-01-12 12:49:10 +0000258
259 ARM64G_CC_OP_LOGIC32, /* DEP1 = result, DEP2 = 0, DEP3 = 0 */
260 ARM64G_CC_OP_LOGIC64, /* DEP1 = result, DEP2 = 0, DEP3 = 0 */
261
262//ZZ ARMG_CC_OP_MUL, /* DEP1 = result, DEP2 = 0, DEP3 = oldC:old_V
263//ZZ (in bits 1:0) */
264//ZZ
265//ZZ ARMG_CC_OP_MULL, /* DEP1 = resLO32, DEP2 = resHI32, DEP3 = oldC:old_V
266//ZZ (in bits 1:0) */
267
268 ARM64G_CC_OP_NUMBER
269};
270
271/* XXXX because of the calling conventions for
272 arm64g_calculate_condition, all these OP values MUST be in the range
273 0 .. 15 only (viz, 4-bits). */
274
275
276
277/* Defines conditions which we can ask for */
278
279typedef
280 enum {
281 ARM64CondEQ = 0, /* equal : Z=1 */
282 ARM64CondNE = 1, /* not equal : Z=0 */
283
284 ARM64CondCS = 2, /* >=u (higher or same) (aka HS) : C=1 */
285 ARM64CondCC = 3, /* <u (lower) (aka LO) : C=0 */
286
287 ARM64CondMI = 4, /* minus (negative) : N=1 */
288 ARM64CondPL = 5, /* plus (zero or +ve) : N=0 */
289
290 ARM64CondVS = 6, /* overflow : V=1 */
291 ARM64CondVC = 7, /* no overflow : V=0 */
292
293 ARM64CondHI = 8, /* >u (higher) : C=1 && Z=0 */
294 ARM64CondLS = 9, /* <=u (lower or same) : C=0 || Z=1 */
295
296 ARM64CondGE = 10, /* >=s (signed greater or equal) : N=V */
297 ARM64CondLT = 11, /* <s (signed less than) : N!=V */
298
299 ARM64CondGT = 12, /* >s (signed greater) : Z=0 && N=V */
300 ARM64CondLE = 13, /* <=s (signed less or equal) : Z=1 || N!=V */
301
302 ARM64CondAL = 14, /* always (unconditional) : 1 */
303 ARM64CondNV = 15 /* always (unconditional) : 1 */
304 }
305 ARM64Condcode;
306
307#endif /* ndef __VEX_GUEST_ARM64_DEFS_H */
308
309/*---------------------------------------------------------------*/
310/*--- end guest_arm64_defs.h ---*/
311/*---------------------------------------------------------------*/