8e4fa4ed3605296328856483fa20cb2e50a0b368
[cacao.git] / src / vm / jit / s390 / codegen.h
1 /* src/vm/jit/s390/codegen.h - code generation macros for s390
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: codegen.h 7691 2007-04-12 12:45:10Z twisti $
26
27 */
28
29
30 #ifndef _CODEGEN_H
31 #define _CODEGEN_H
32
33 #include "config.h"
34
35 #include <ucontext.h>
36
37 #include "vm/types.h"
38
39 #include "vm/jit/jit.h"
40
41
42 /* additional functions and macros to generate code ***************************/
43
44 #define CALCOFFSETBYTES(var, reg, val) \
45     if ((s4) (val) < -128 || (s4) (val) > 127) (var) += 4; \
46     else if ((s4) (val) != 0) (var) += 1; \
47     else if ((reg) == RBP || (reg) == RSP || (reg) == R12 || (reg) == R13) (var) += 1;
48
49
50 #define CALCIMMEDIATEBYTES(var, val) \
51     if ((s4) (val) < -128 || (s4) (val) > 127) (var) += 4; \
52     else (var) += 1;
53
54
55 #define gen_nullptr_check_intern(objreg) \
56         do { \
57                 M_TEST(objreg); \
58                 M_BEQ(0); \
59                 codegen_add_nullpointerexception_ref(cd); \
60         } while (0);
61
62 #define gen_nullptr_check(objreg) \
63         if (checknull) { \
64                 gen_nullptr_check_intern(objreg); \
65         }
66
67
68 #define gen_bound_check \
69     if (checkbounds) { \
70         M_ILD(REG_ITMP3, s1, OFFSET(java_arrayheader, size));\
71         M_ICMP(REG_ITMP3, s2); \
72         M_BAE(0); \
73         codegen_add_arrayindexoutofboundsexception_ref(cd, s2); \
74     }
75
76
77 /* MCODECHECK(icnt) */
78
79 #define MCODECHECK(icnt) \
80     do { \
81         if ((cd->mcodeptr + (icnt)) > cd->mcodeend) \
82             codegen_increase(cd); \
83     } while (0)
84
85
86 #define ALIGNCODENOP \
87     if ((s4) (((ptrint) cd->mcodeptr) & 7)) { \
88         M_NOP; \
89     }
90
91
92
93 /* branch defines *************************************************************/
94
95 #define BRANCH_NOPS \
96     do { \
97         M_NOP; \
98     } while (0)
99
100
101 /* some patcher defines *******************************************************/
102
103 #define PATCHER_CALL_SIZE    4          /* size in bytes of a patcher call    */
104
105 #define PATCHER_NOPS \
106     do { \
107         M_NOP; \
108                 M_NOP; \ 
109                 M_NOP; \
110     } while (0)
111
112 #define PATCHER_NOPS_SKIP   12 
113
114
115  /* stub defines **************************************************************/
116
117 #define COMPILERSTUB_CODESIZE    (SZ_AHI + SZ_L + SZ_L + SZ_BCR)
118
119
120 /* *** BIG TODO ***
121  * Make all this inline functions !!!!!!!!!!
122  */
123
124 /* macros to create code ******************************************************/
125
126 /* Conventions:
127  * N_foo:   defines the instrucition foo as in `ESA/390 Principles of operations'
128  * SZ_foo:  defines the size of the instruction N_foo
129  * DD_foo:  defines a condition code as used by s390 GCC
130  * M_foo:   defines the alpha like instruction used in cacao
131  *          the instruction is defined by an equivalent N_ instruction
132  * CC_foo:  defines a condition code as used
133  *          the instruction is defined as an equivalent DD_ condition code
134  */
135
136 /* S390 specific code */
137
138 /* Argument checks for debug mode */
139
140 /* Some instructions with register arguments treat %r0 as "value not given".
141  * To prevent bugs, in debug mode we use a special value RN (reg none) with 
142  * the meaning "value not given".
143  * In debug mode, the instructions assert that %r0 was not given as argument.
144  */
145
146 #if 1
147 #       include <stdlib.h>
148         /* register none */
149 #       define RN 16
150         /* Optional register.
151          * Check that value given is %r1 - %r15 or RN
152          */
153 #       define _WITH_LINE(f, ...) f(__FILE__, __LINE__, __VA_ARGS__)
154         static inline int _OR_IMPL(const char *file, int line, int r) {
155                 if(!(
156                         ((0 < r) && (r < 16)) ||
157                         (r == RN)
158                 )) {
159                         fprintf(stdout, "%d is not a valid register at %s:%d.\n", r, file, line);
160                         abort();
161                 }
162                 return ((r == RN) ? 0 : r);
163         }
164 #       define _OR(r) _WITH_LINE(_OR_IMPL, r)
165
166 #       define _SMIN(b) (-(1 << (bits - 1)))
167 #       define _SMAX(b) ((1 << (b - 1)) - 1)
168 #       define _UMIN(b) 0
169 #       define _UMAX(b) ((1 << b) - 1)
170
171         static inline int _UBITS_IMPL(const char *file, int line, int i, int bits) {
172                 if (!((_UMIN(bits) <= i) && (i <= _UMAX(bits)))) {
173                         fprintf(stdout, "%d (0x%X) is not an unsigned %d bit integer at %s:%d.\n", i, i, bits, file, line);
174                         abort();
175                 }
176                 return i;
177         }
178 #       define _UBITS(i, bits) _WITH_LINE(_UBITS_IMPL, i, bits)
179         static inline int _SBITS_IMPL(const char *file, int line, int i, int bits) {
180                 if(!((_SMIN(bits) <= i) && (i <= _SMAX(bits)))) {
181                         fprintf(stdout, "%d (0x%X) is not an signed %d bit integer at %s:%d.\n", i, i, bits, file, line);
182                         abort();
183                 }
184                 return i;
185         }
186 #       define _SBITS(i, bits) _WITH_LINE(_SBITS_IMPL, i, bits)
187         static inline int _BITS_IMPL(const char *file, int line, int i, int bits) {
188                 if (!(
189                         ((_UMIN(bits) <= i) && (i <= _UMAX(bits))) ||
190                         ((_SMIN(bits) <= i) && (i <= _SMAX(bits)))
191                 )) {
192                         fprintf(stdout, "%d (0x%X) is not an %d bit integer at %s:%d.\n", i, i, bits, file, line);
193                         abort();
194                 }
195                 return i;
196         }
197 #       define _BITS(i, bits) _WITH_LINE(_BITS_IMPL, i, bits)
198 #else
199 #       define RN 0
200 #       define _OR(x) (x)
201 #       define _BITS(x, b) (x)
202 #       define _UBITS(x, b) (x)
203 #       define _SBITS(x, b) (x)
204 #endif
205
206 /* Register */
207 #define _R(x) _UBITS((x), 4)
208 /* Displacement */
209 #define _D(x) _UBITS((x), 12)
210 /* 4 bit Immediate */
211 #define _I4(x) _BITS((x), 4)
212 #define _UI4(x) _UBITS((x), 4)
213 #define _SI4(x) _SBITS((x), 4)
214 /* 8 bit Immediate */
215 #define _I8(x) _BITS((x), 8)
216 #define _UI8(x) _UBITS((x), 8)
217 #define _SI8(x) _SBITS((x), 8)
218 /* 12 bit Immediate */
219 #define _I12(x) _BITS((x), 12)
220 #define _UI12(x) _UBITS((x), 12)
221 #define _SI12(x) _SBITS((x), 12)
222 /* 16 bit Immediate */
223 #define _I16(x) _BITS((x), 16)
224 #define _UI16(x) _UBITS((x), 16)
225 #define _SI16(x) _SBITS((x), 16)
226 /* Opcode */
227 #define _OP(x) _UBITS((x), 8)
228 /* Second part of opcode */
229 #define _OP4(x) _UBITS((x), 4)
230 /* Extended opcode */
231 #define _OP16(x) _UBITS((x), 16)
232
233 /* Instruction formats */
234
235 #define _CODE(t, code) \
236         do { \
237                 *((t *) cd->mcodeptr) = (code); \
238                 cd->mcodeptr += sizeof(t); \
239         } while (0)
240
241 #define _CODE2(code) _CODE(u2, code)
242 #define _CODE4(code) _CODE(u4, code)
243
244 #define _IF(cond, t, f) \
245         do { if (cond) { t ; } else { f ; } } while (0)
246
247 #define _IFNEG(val, neg, pos) _IF((val) < 0, neg, pos)
248
249 #define N_RR(op, r1, r2) \
250         _CODE2( (_OP(op) << 8) | (_R(r1) << 4) | _R(r2) )
251
252 #define SZ_RR 2
253
254 #define N_RR2(op, i) \
255         _CODE2( (_OP(op) << 8) | _I8(i) )
256
257 #define N_RX(op, r1, d2, x2, b2) \
258         _CODE4( (_OP(op) << 24) | (_R(r1) << 20) | (_OR(x2) << 16) | (_OR(b2) << 12) | (_D(d2) << 0) )
259
260 #define SZ_RX 4
261
262 #define N_RI(op1, op2, r1, i2) \
263         _CODE4( (_OP(op1) << 24) | (_R(r1) << 20) | (_OP4(op2) << 16) | (u2)_I16(i2) )
264
265 #define SZ_RI 4
266
267 #define N_SI(op, d1, b1, i2) \
268         _CODE4( (_OP(op) << 24) | (_OR(i2) << 16) | (_OR(b1) << 12) | _D(d1) )
269
270 #define SZ_SI 4
271
272 #define N_SS(op, d1, l, b1, d2, b2) \
273         do { \
274                 _CODE4( (_OP(op) << 24) | (_I8(l) << 16) | (_OR(b1) << 12) | _D(d1) ); \
275                 _CODE2( (_OR(b2) << 12) | _D(d2) ); \
276         } while (0)
277
278 #define SZ_SS 6
279
280 #define N_SS2(op, d1, l1, b1, d2, l2, b2) \
281         N_SS(op, d1, (_I4(l1) << 4) | _I4(l2), b1, d2, l2)
282
283 #define N_RS(op, r1, r3, d2, b2) \
284         _CODE4( (_OP(op) << 24) | (_R(r1) << 20) | (_R(r3) << 16) | (_OR(b2) << 12) | _D(d2) )
285
286 #define SZ_RS 4
287
288 #define N_RSI(op, r1, r2, i2) \
289         _CODE4( ((op) << 24) | (_R(r1) << 20) | (_R(r3) << 16) | (u2)_16(i2) )
290
291 #define SZ_RSI 4
292
293 #define N_RRE(op, r1, r2) \
294         _CODE4( (_OP16(op) << 16) | (_R(r1) << 4) | _R(r2) )
295
296 #define SZ_RRE 4
297
298 #define N_S2(d2, b2) \
299         _CODE4( (_OP16(op) << 16) | (_OR(b2) << 12) | _D(d2)  )
300
301 #define SZ_S2 4
302
303 #define N_E(op) \
304         _CODE2( _OP16(op) )
305
306 #define SZ_E 2
307
308 #define N_RXE(op, r1, d2, x2, b2) \
309         do { \
310                 _CODE4( ((_OP16(op) >> 8) << 24) | (_R(r1) << 20) | \
311                         (_R(x2) << 16) | (_R(b2) << 12) | _UI12(d2) ); \
312                 _CODE2( _OP16(op) & 0xFF ); \
313         } while (0) 
314
315 #define S_RXE 6
316
317 #define N_RRF(op, r1, m3, r2) \
318         _CODE4( (_OP16(op) << 16) | (_R(m3) << 12) | (_R(r1) << 4) | _R(r2) )
319
320 #define S_RRF 4
321
322 #define N_IMM_MIN -32768
323 #define N_IMM_MAX 32767
324 #define N_VALID_IMM(x) ((N_IMM_MIN <= (x)) && ((x) <= N_IMM_MAX))
325 #define ASSERT_VALID_IMM(x) assert(N_VALID_IMM(x))
326
327 #define N_DISP_MIN 0
328 #define N_DISP_MAX 0xFFF
329 #define N_VALID_DISP(x) ((N_DISP_MIN <= (x)) && ((x) <= N_DISP_MAX))
330 #define ASSERT_VALID_DISP(x) assert(N_VALID_DISP(x))
331
332 #define N_BRANCH_MIN -32768
333 #define N_BRANCH_MAX 32767
334 #define N_VALID_BRANCH(x) ((N_BRANCH_MIN <= (x)) && ((x) <= N_BRANCH_MAX))
335 #define ASSERT_VALID_BRANCH(x) assert(N_VALID_BRANCH(x))
336
337 /* Condition codes */
338
339 #define DD_O 1
340 #define DD_H 2
341 #define DD_NLE 3
342 #define DD_L 4
343 #define DD_NHE 5
344 #define DD_LH 6
345 #define DD_NE 7
346 #define DD_E 8
347 #define DD_NLH 9
348 #define DD_HE 10
349 #define DD_NL 11
350 #define DD_LE 12
351 #define DD_NH 13
352 #define DD_NO 14
353 #define DD_ANY 15
354
355 /* Misc */
356
357 #define N_LONG_0() _CODE4(0)
358
359 /* Chapter 7. General instructions */
360
361 #define N_AR(r1, r2) N_RR(0x1A, r1, r2)
362 #define N_A(r1, d2, x2, b2) N_RX(0x5A, r1, d2, x2, b2)
363 #define N_AH(r1, d2, x2, b2) N_RX(0x4A, r1, d2, x2, b2)
364 #define N_AHI(r1, i2) N_RI(0xA7, 0xA, r1, i2)
365 #       define SZ_AHI SZ_RI
366 #define N_ALR(r1, r2) N_RR(0x1E, r1, r2)
367 #define N_AL(r1, d2, x2, b2) N_RX(0x5E, r1, d2, x2, b2)
368 #define N_NR(r1, r2) N_RR(0x14, r1, r2)
369 #       define SZ_NR SZ_RR
370 #define N_N(r1, d2, x2, b2) N_RX(0x54, r1, d2, x2, b2)
371 #define N_NI(d1, b1, i2) N_SI(0x94, d1, b1, i2)
372 #define N_NC(d1, l, b1, d2, b2) N_NC(0xD4, l, b1, d1, b2, d2)
373 #define N_BALR(r1, r2) N_RR(0x05, r1, _OR(r2))
374 #define N_BAL(r1, d2, x2, b2) N_RX(0x45, r1, d2, x2, b2)
375 #define N_BASR(r1, r2) N_RR(0x0D, r1, _OR(r2))
376 #define N_BAS(r1, d2, x2, b2) N_RX(0x4D, r1, d2, x2, b2)
377 #define N_BASSM(r1, r2) N_RR(0x0C, r1, _OR(r2))
378 #define N_BSM(r1, r2) N_RR(0x0B, r1, _OR(r2))
379 #define N_BCR(m1, r2) N_RR(0x07, m1, _OR(r2))
380 #       define SZ_BCR SZ_RR
381 #       define N_BR(r2) N_BCR(DD_ANY, r2)
382 #define N_BC(m1, d2, x2, b2) N_RX(0x47, m1, d2, x2, b2)
383 #       define SZ_BC SZ_RS
384 #define N_BCTR(r1, r2) N_RR(0x06, r1, _OR(r2))
385 #define N_BCT(r1, d2, x2, b2) N_RX(0x46, r1, d2, x2, b2)
386 #define N_BHX(r1, r2, d2, b2) N_RS(0xB6, r1, r3, d2, b2)
387 #define N_BXLE(r1, r3, d2, b2) N_RS(0xB7, r1, r3, d2, b2)
388 #define N_BRAS(r1, i2) N_RI(0xA7, 0x5, r1, (i2) / 2)
389 #       define SZ_BRAS SZ_RI
390 #define N_BRC(m1, i2) N_RI(0xA7, 0x4, m1, (i2) / 2)
391 #       define N_J(i2) N_BRC(DD_ANY, i2)
392 #       define SZ_BRC SZ_RI
393 #       define SZ_J SZ_RI
394 #define N_BRCT(r1, i2) N_RI(0xA7, 0x6, r1, (i2) / 2)
395 #define N_BRXH(r1, r3, i2) N_RSI(0x84, r1, r3, (i2) / 2)
396 #define N_BRXLE(r1, r3, i2) N_RSI(0x85, r1, r2, (i2) / 2)
397 #define N_CKSM(r1, r2) N_RRE(0xB241, r1, r2)
398 #define N_CR(r1, r2) N_RR(0x19, r1, r2)
399 #       define SZ_CR SZ_RR
400 #define N_C(r1, d2, x2, b2) N_RX(0x59, r1, d2, x2, b2)
401 #define N_CFC(d2, b2) N_S2(0xB21A, d2, b2)
402 #define N_CS(r1, r3, d2, b2) N_RS(0xBA, r1, r3, d2, b2)
403 #define N_CDS(r1, r3, d2, b2) N_RS(0xBB, r1, r3, d2, b2)
404 #define N_CH(r1, d2, x2, b2) N_CH(0x49, r1, d2, x2, b2)
405 #define N_CHI(r1, i2) N_RI(0xA7, 0xE, r1, i2)
406 #define N_CLR(r1, r2) N_RR(0x15, r1, r2)
407 #define N_CL(r1, d2, x2, b2) N_RX(0x55, r1, d2, x2, b2)
408 #define N_CLI(d1, b1, i2) N_SI(0x95, d1, b1, i2)
409 #define N_CLC(d1, l, b1, d2, b2) N_SS(0xD5, d1, l, b1, d2, b2)
410 #define N_CLM(r1, m3, d2, b2) N_RS(0xBD, r1, m3, d2, b2)
411 #define N_CLCL(r1, r2) N_RR(0x0F, r1, r2)
412 #define N_CLCLE(r1, r3, d2, b2) N_RS(0xA9, r1, r3, d2, b2)
413 #define N_CLST(r1, r2) N_RRE(0xB25D, r1, r2)
414 #define N_CUSE(r1, r2) N_RRE(0xB257, r1, r2)
415 #define N_CVB(r1, d2, x2, b2) N_RX(0x4F, r1, r2, x2, b2)
416 #define N_CVD(r1, d2, x2, b2) N_RX(0x4E, r1, d2, x2, b2)
417 #define N_CUUTF(r1, r2) N_RRE(0xB2A6, r1, r2)
418 #define N_CUTFU(r1, r2) N_RRE(0xB2A7, r1, r2)
419 #define N_CPYA(r1, r2) N_RRE(0xB240, r1, r2)
420 #define N_DR(r1, r2) N_RR(0x1D, r1, r2)
421 #define N_D(r1, d2, x2, b2) N_RX(0x5D, r1, d2, x2, b2)
422 #define N_XR(r1, r2) N_RR(0x17, r1, r2)
423 #define N_X(r1, d2, x2, b2) N_RX(0x57, r1, d2, x2, b2)
424 #define N_XI(d1, b1, i2) N_SI(0x97, d1, b1, i2)
425 #define N_XC(d1, l, b1, d2, b2) N_SS(0xD7, d1, l, b1, d2, b2)
426 #define N_EX(r1, d2, x2, b2) N_RX(0x44, r1, d2, x2, b2)
427 #define N_EAR(r1, r2) N_RRE(0xB24F, r1, r2)
428 #define N_IC(r1, d2, x2, b2) N_RX(0x43, r1, d2, x2, b2)
429 #define N_ICM(r1, m3, d2, b2) N_RS(0xBF, r1, m3, d2, b2)
430 #define N_IPM(r1) N_RRE(0xB222, r1, 0)
431 #define N_LR(r1, r2) N_RR(0x18, r1, r2)
432 #define N_L(r1, d2, x2, b2) N_RX(0x58, r1, d2, x2, b2)
433 #       define SZ_L SZ_RX
434 #define N_LAM(r1, r3, d2, b2) N_RS(0x9A, r1, r3, d2, b2)
435 #define N_LA(r1, d2, x2, b2) N_RX(0x41, r1, d2, x2, b2)
436 #define N_LAE(r1, d2, x2, b2) N_RX(0x51, r1, d2, x2, b2)
437 #define N_LTR(r1, r2) N_RR(0x12, r1, r2)
438 #define N_LCR(r1, r2) N_RR(0x13, r1, r2)
439 #       define SZ_LCR SZ_RR
440 #define N_LH(r1, d2, x2, b2) N_RX(0x48, r1, d2, x2, b2)
441 #define N_LHI(r1, i2) N_RI(0xA7, 0x8, r1, i2)
442 #       define SZ_LHI SZ_RI
443 #define N_LM(r1, r3, d2, b2) N_RS(0x98, r1, r3, d2, b2)
444 #define N_LNR(r1, r2) N_RR(0x11, r1, r2)
445 #define N_LPR(r1, r2) N_RR(0x10, r1, r2)
446 #define N_MC(d1, b1, i2) N_SI(0xAF, d1, b1, i2)
447 #define N_MVI(d1, b1, i2) N_SI(0x92, d1, b1, i2)
448 #define N_MVC(d1, l, b1, d2, b2) N_SS(0xD2, d1, l, b1, d2, b2)
449 #define N_MVCIN(d1, l, b1, d2, b2) N_SS(0xEB, d1, l, b1, d2, b2)
450 #define N_MVCL(r1, r2) N_RR(0x0E, r1, r2)
451 #define N_MVCLE(r1, r3, d2, b2)  N_RS(0xAB, r1, r3, d2, b2)
452 #define N_MVN(d1, l, b1, d2, b2) N_SS(0xD1, d1, l, b1, d2, b2)
453 #define N_MVPG(r1, r2) N_RRE(0xB254, r1, r2)
454 #define N_MVST(r1, r2) N_RRE(0xB255, r1, r2)
455 #define N_MVO(d1, l1, b1, d2, l2, b2) N_SS2(0xF1, d1, l1, b1, d2, l2, b2)
456 #define N_MVZ(d1, l, b1, d2, b2) N_SS(0xD3, d1, l, b1, d2, b2)
457 #define N_MR(r1, r2) N_RR(0x1C, r1, r2)
458 #define N_M(r1, d2, x2, b2) N_RX(0x5C, r1, d2, x2, b2)
459 #define N_MH(r1, d2, x2, b2) N_RX(0x4C, r1, d2, x2, b2)
460 #define N_MHI(r1, i2) N_RI(0xA7, 0xC, r1, i2)
461 #define N_MSR(r1, r2) N_RRE(0xB252, r1, r2)
462 #define N_MS(r1, d2, x2, b2) N_RX(0x71, r1, d2, x2, b2)
463 #define N_OR(r1, r2) N_RR(0x16, r1, r2)
464 #define N_O(r1, d2, x2, b2) N_RX(0x56, r1, d2, x2, b2)
465 #define N_OI(d1, b1, i2) N_SI(0x96, d1, b1, i2)
466 #define N_OC(d1, l, b1, d2, b2) N_SS(0xD6, d1, l, b1, d2, b2)
467 #define N_PACK(d1, l1, b1, d2, l2, b2) N_SS2(0xF2, d1, l1, b1, d2, l2, b2)
468 #define N_PLO(r1, d2, b2, r3, d4, b4) N_SS2(0xEE, d2, r1, b2, d4, r3, b4)
469 #define N_SRST(r1, r2) N_RRE(0xB25E, r1, r2)
470 #define N_SAR(r1, r2) N_RRE(0xB24E, r1, r2)
471 #define N_SPM(r1) N_RR(0x04, r1, 0x00)
472 #define N_SLDA(r1, d2, b2) N_RS(0x8F, r1, 0x00, d2, b2)
473 #define N_SLDL(r1, d2, b2) N_RS(0x8D, r1, 0x00, d2, b2)
474 #define N_SLA(r1, d2, b2) N_RS(0x8B, r1, 0x00, d2, b2)
475 #define N_SLL(r1, d2, b2) N_RS(0x89, r1, 0x00, d2, b2)
476 #define N_SRDA(r1, d2, b2) N_RS(0x8E, r1, 0x00, d2, b2)
477 #define N_SRDL(r1, d2, b2) N_RS(0x8C, r1, 0x00, d2, b2)
478 #define N_SRA(r1, d2, b2) N_RS(0x8A, r1, 0x00, d2, b2)
479 #define N_SRL(r1, d2, b2) N_RS(0x88, r1, 0x00, d2, b2)
480 #define N_ST(r1, d2, x2, b2) N_RX(0x50, r1, d2, x2, b2)
481 #define N_STAM(r1, r3, d2, b2) N_RS(0x9B, r1, r3, d2, b2)
482 #define N_STC(r1, d2, x2, b2) N_RX(0x42, r1, d2, x2, b2)
483 #define N_STCM(r1, m3, d2, b2) N_RS(0xBE, r1, m3, d2, b2)
484 #define N_STCK(d2, b2) N_S2(0xB205, d2, b2)
485 #define N_STCKE(d2, b2) N_S2(0xB278, d2, b2)
486 #define N_STH(r1, d2, x2, b2) N_RX(0x40, r1, d2, x2, b2)
487 #define N_STM(r1, r3, d2, b2) N_RS(0x90, r1, r3, d2, b2)
488 #define N_SR(r1, r2) N_RR(0x1B, r1, r2)
489 #define N_S(r1, d2, x2, b2) N_RX(0x5B, r1, d2, x2, b2)
490 #define N_SH(r1, d2, x2, b2) N_RX(0x4B, r1, d2, x2, b2)
491 #define N_SLR(r1, r2) N_RR(0x1F, r1, r2)
492 #define N_SL(r1, d2, x2, b2) N_RX(0x5F, r1, d2, x2, b2)
493 #define N_SVC(i) N_RR2(0x0A, i)
494 #define N_TS(d2, b2) N_S2(0x93, d2, b2)
495 #define N_TM(d1, b1, i2) N_SI(0x91, d1, b1, i2)
496 #define N_TMH(r1, i2) N_RI(0xA7, 0x00, r1, i2)
497 #define N_TML(r1, i2) N_RI(0xA7, 0x01, r1, i2)
498 #define N_TR(d1, l, b1, d2, b2) N_SS(0xDC, d1, l, b1, d2, b2)
499 #define N_TRT(d1, l, b1, d2, b2) N_SS(0xDD, d1, l, b1, d2, b2)
500 #define N_TRE(r1, r2) N_RRE(0xB2A5, r1, r2)
501 #define N_UNPK(d1, l1, b1, d2, l2, b2) N_SS2(0xF3, d1, l1, b1, d2, l2, b2)
502 #define N_UPT() N_E(0x0102)
503
504 /* Chapter 9. Floating point instructions */
505
506 #define N_LER(r1, r2) N_RR(0x38, r1, r2)
507 #define N_LDR(r1, r2) N_RR(0x28, r1, r2)
508 #define N_LXR(r1, r2) N_RRE(0xB365, r1, r2)
509 #define N_LE(r1, d2, x2, b2) N_RX(0x78, r1, d2, x2, b2)
510 #define N_LD(r1, d2, x2, b2) N_RX(0x68, r1, d2, x2, b2)
511 #define N_LZER(r1) N_RRE(0xB374, r1, 0x0)
512 #define N_LZDR(r1) N_RRE(0xB375, r1, 0x0)
513 #define N_LZXR(r1) N_RRE(0xB376, r1, 0x0)
514 #define N_STE(r1, d2, x2, b2) N_RX(0x70, r1, d2, x2, b2)
515 #define N_STD(r1, d2, x2, b2) N_RX(0x60, r1, d2, x2, b2)
516
517 /* chapter 19. Binary floating point instructions */
518
519 #define N_AEBR(r1, r2) N_RRE(0xB30A, r1, r2)
520 #define N_ADBR(r1, r2) N_RRE(0xB31A, r1, r2)
521 #define N_AXBR(r1, r2) N_RRE(0xB34A, r1, r2)
522 #define N_AEB(r1, d2, x2, b2) N_RXE(0xED0A, r1, d2, x2, b2)
523 #define N_ADB(r1, d2, x2, b2) N_RXE(0xED1A, r1, d2, x2, b2)
524
525 #define N_CEBR(r1, r2) N_RRE(0xB309, r1, r2)
526 #define N_CDBR(r1, r2) N_RRE(0xB319, r1, r2)
527 #define N_CXBR(r1, r2) N_RRE(0xB349, r1, r2)
528 #define N_CEB(r1, d2, x2, b2) N_RXE(0xED09, r1, d2, x2, b2)
529 #define N_CDB(r1, d2, x2, b2) N_RXE(0xED19, r1, d2, x2, b2)
530
531 #define N_CEFBR(r1, r2) N_RRE(0xB394, r1, r2)
532 #define N_CDFBR(r1, r2) N_RRE(0xB395, r1, r2)
533 #define N_CXFBR(r1, r2) N_RRE(0xB396, r1, r2)
534
535 #define N_CFEBR(r1, m3, r2) N_RRF(0xB398, r1, m3, r2)
536 #define N_CFDBR(r1, m3, r2) N_RRF(0xB399, r1, m3, r2)
537 #define N_CFXBR(r1, m3, r2) N_RRF(0xB39A, r1, m3, r2)
538
539 #define N_DEBR(r1, r2) N_RRE(0xB30D, r1, r2)
540 #define N_DDBR(r1, r2) N_RRE(0xB31D, r1, r2)
541 #define N_DXBR(r1, r2) N_RRE(0xB34D, r1, r2)
542 #define N_DEB(r1, d2, x2, b2) N_RXE(0xED0D, r1, d2, x2, b2)
543 #define N_DDB(r1, d2, x2, b2) N_RXE(0xED1D, r1, d2, x2, b2)
544
545 #define N_LCEBR(r1, r2) N_RRE(0xB303, r1, r2)
546 #define N_LCDBR(r1, r2) N_RRE(0xB313, r1, r2)
547 #define N_LCXBR(r1, r2) N_RRE(0xB343, r1, r2)
548
549 #define N_LDEBR(r1, r2) N_RRE(0xB304, r1, r2)
550 #define N_LXDBR(r1, r2) N_RRE(0xB305, r1, r2)
551 #define N_LXEBR(r1, r2) N_RRE(0xB306, r1, r2)
552
553 #define N_LEDBR(r1, r2) N_RRE(0xB344, r1, r2)
554 #define N_LDXBR(r1, r2) N_RRE(0xB345, r1, r2)
555 #define N_LEXBR(r1, r2) N_RRE(0xB346, r1, r2)
556
557 #define N_MEEBR(r1, r2) N_RRE(0xB317, r1, r2)
558 #define N_MDBR(r1, r2) N_RRE(0xB31C, r1, r2)
559 #define N_MXBR(r1, r2) N_RRE(0xB34C, r1, r2)
560 #define N_MDEBR(r1, r2) N_RRE(0xB30C, r1, r2)
561 #define N_MXDBR(r1, r2) N_RRE(0xB307, r1, r2)
562
563 #define N_SEBR(r1, r2) N_RRE(0xB30B, r1, r2)
564 #define N_SDBR(r1, r2) N_RRE(0xB31B, r1, r2)
565 #define N_SXBR(r1, r2) N_RRE(0xB34B, r1, r2)
566 #define N_SEB(r1, d2, x2, b2) N_RXE(0xED0B, r1, d2, x2, b2)
567 #define N_SDB(r1, d2, x2, b2) N_RXE(0xED1B, r1, d2, x2, b2)
568
569 /* Alpha like instructions */
570
571 #define M_CALL(r2) N_BASR(R14, r2)
572
573 #define M_ILD(r, b, d) \
574         do { \
575                 if (N_VALID_DISP(d)) { \
576                         N_L(r, d, RN, b); \
577                 } else if (r == R0) { \
578                         N_LR(R0, R1); \
579                         N_LHI(R1, d); \
580                         N_L(R1, 0, R1, b); \
581                         N_XR(R1, R0); \
582                         N_XR(R0, R1); \
583                         N_XR(R1, R0); \
584                 } else { \
585                         N_LHI(r, d); N_L(r, 0, r, b); \
586                 } \
587         } while (0)
588
589 #define M_ALD(r, b, d) M_ILD(r, b, d)
590
591 #define M_LDA(r, b, d) _IFNEG( \
592         d, \
593         N_LHI(r, d); N_LA(r, 0, r, b), \
594         N_LA(r, d, RN, b) \
595 )
596
597 #define M_FLD(r, b, d) N_LE(r, d, RN, b)
598
599 #define M_FLDN(r, b, d, t) _IFNEG( \
600         d, \
601         N_LHI(t, d); N_LE(r, 0, t, b), \
602         N_LE(r, d, RN, b) \
603 )
604                 
605 #define M_DLD(r, b, d) N_LD(r, d, RN, b)
606 #define M_DLDN(r, b, d, t) _IFNEG( \
607         d, \
608         N_LHI(t, d); N_LD(r, 0, t, b), \
609         N_LD(r, d, RN, b) \
610 )
611
612 #define M_LLD(r, b, d) _IFNEG( \
613         d, \
614         N_LHI(GET_LOW_REG(r), d); \
615                 N_L(GET_HIGH_REG(r), 0, GET_LOW_REG(r), b); \
616                 N_L(GET_LOW_REG(r), 4, GET_LOW_REG(r), b), \
617         N_L(GET_HIGH_REG(r), (d) + 0, RN, b); N_L(GET_LOW_REG(r), (d) + 4, RN, b) \
618 )
619
620 /* MOV(a, b) -> mov from A to B */
621
622 #define M_MOV(a, b) N_LR(b, a)
623 #define M_FMOV(a, b) N_LDR(b, a)
624 #define M_DST(r, b, d) _IFNEG(d, assert(0), N_STD(r, d, RN, b))
625 #define M_FST(r, b, d) _IFNEG(d, assert(0), N_STE(r, d, RN, b))
626 #define M_IST(r, b, d) _IFNEG( \
627         d, \
628         assert(0), \
629         N_ST(r, d, RN, b) \
630 )
631 #define M_AST(r, b, d) M_IST(r, b, d)
632 #define M_LST(r, b, d) _IFNEG( \
633         d, \
634         assert(0), \
635         N_ST(GET_HIGH_REG(r), (d) + 0, RN, b); N_ST(GET_LOW_REG(r), (d) + 4, RN, b) \
636 )
637 #define M_TEST(r) N_LTR(r, r)
638 #define M_BEQ(off) N_BRC(DD_E, off)
639 #define M_BNE(off) N_BRC(DD_NE, off)
640 #define M_BLE(off) N_BRC(DD_LE, off)
641 #define M_BGT(off) N_BRC(DD_H, off)
642 #define M_BLT(off) N_BRC(DD_L, off)
643 #define M_BGE(off) N_BRC(DD_HE, off)
644 #define M_BO(off) N_BRC(DD_O, off)
645
646 #define M_CMP(r1, r2) N_CR(r1, r2)
647 #define M_CMPU(r1, r2) N_CLR(r1, r2)
648 #define M_CLR(r) N_LHI(r, 0)
649 #define M_AADD_IMM(val, reg) N_AHI(reg, val)
650 #define M_IADD_IMM(val, reg) N_AHI(reg, val)
651 #define M_ISUB_IMM(val, reg) N_AHI(reg, -(val))
652 #define M_ASUB_IMM(val, reg) N_AHI(reg, -(val))
653 #define M_RET N_BCR(DD_ANY, R14)
654 #define M_BSR(ret_reg, disp) N_BRAS(ret_reg, disp)
655 #define M_BR(disp) N_BRC(DD_ANY, disp)
656 #define M_JMP(rs, rd) _IF(rs == RN, N_BCR(DD_ANY, rd), N_BASR(rs, rd))
657 #define M_NOP N_BC(0, 0, RN, RN)
658 #define M_JSR(reg_ret, reg_addr) N_BASR(reg_ret, reg_addr)
659 #define M_ICMP(a, b) N_CR(a, b)
660 #define M_ICMPU(a, b) N_CLR(a, b)
661 #define M_ICMP_IMM(a, b) N_CHI(a, b)
662 #define M_CVTIF(src, dst) N_CEFBR(dst, src)
663 #define M_CVTID(src, dst) N_CDFBR(dst, src)
664 #define M_FMUL(a, dest) N_MEEBR(dest, a)
665 #define M_FSUB(a, dest) N_SEBR(dest, a)
666 #define M_FADD(a, dest) N_AEBR(dest, a)
667 #define M_FDIV(a, dest) N_DEBR(dest, a)
668 #define M_DMUL(a, dest) N_MDBR(dest, a)
669 #define M_DSUB(a, dest) N_SDBR(dest, a)
670 #define M_DADD(a, dest) N_ADBR(dest, a)
671 #define M_DDIV(a, dest) N_DDBR(dest, a)
672 #define M_CVTFI(src, dst) N_CFEBR(dst, 5, src)
673 #define M_CVTDI(src, dst) N_CFDBR(dst, 5, src)
674 #define M_IADD(a, dest) N_AR(dest, a)
675 #define M_ISUB(a, dest) N_SR(dest, a)
676 #define M_IAND(a, dest) N_NR(dest, a)
677 #define M_IOR(a, dest) N_OR(dest, a)
678 #define M_IXOR(a, dest) N_XR(dest, a)
679 #define M_CVTFD(src,dst) N_LDEBR(dst, src)
680 #define M_CVTDF(src,dst) N_LEDBR(dst, src)
681
682 #define M_SLL_IMM(imm, reg) N_SLL(reg, imm, RN) 
683 #define M_SLA_IMM(imm, reg) N_SLA(reg, imm, RN) 
684
685 #define M_SLDL_IMM(imm, reg) N_SLDL(reg, imm, RN) 
686 #define M_SLDA_IMM(imm, reg) N_SLDA(reg, imm, RN) 
687
688 #define M_SRL_IMM(imm, reg) N_SRL(reg, imm, RN)
689 #define M_SRA_IMM(imm, reg) N_SRA(reg, imm, RN)
690
691 #define M_SRDL_IMM(imm, reg) N_SRDL(reg, imm, RN)
692 #define M_SRDA_IMM(imm, reg) N_SRDA(reg, imm, RN)
693
694 #define M_SLL(op, dst) N_SLL(dst, 0, op)
695 #define M_SLA(op, dst) N_SLA(dst, 0, op)
696
697 #define M_SLDL(op, dst) N_SLDL(dst, 0, op)
698 #define M_SLDA(op, dst) N_SLDA(dst, 0, op)
699
700 #define M_SRL(op, dst) N_SRL(dst, 0, op)
701 #define M_SRA(op, dst) N_SRA(dst, 0, op)
702
703 #define M_SRDL(op, dst) N_SRDL(dst, 0, op)
704 #define M_SRDA(op, dst) N_SRDA(dst, 0, op)
705
706 #define M_IMUL_IMM(val, reg) N_MHI(reg, val)
707 #define M_IMUL(a, dest) N_MSR(dest, a)
708
709 #define M_INEG(a, dest) N_LCR(dest, a)
710
711 #define M_FCMP(a, b) N_CEBR(a, b)
712 #define M_DCMP(a, b) N_CDBR(a, b)
713
714 #define M_FMOVN(r, dst) N_LCEBR(dst, r)
715 #define M_DMOVN(r, dst) N_LCDBR(dst, r)
716
717 #define ICONST(reg, i) \
718         do { \
719                 if (N_VALID_IMM(i)) { \
720                         N_LHI(reg, i); \
721                 } else { \
722                         disp = dseg_add_s4(cd, (i)); \
723                         M_ILD(reg, REG_PV, disp); \
724                 } \
725         } while (0) 
726
727 #define LCONST(reg,c) \
728         do { \
729             ICONST(GET_HIGH_REG((reg)), (s4) ((s8) (c) >> 32)); \
730             ICONST(GET_LOW_REG((reg)), (s4) ((s8) (c))); \
731         } while (0)
732
733 /* M_INTMOVE:
734     generates an integer-move from register a to b.
735     if a and b are the same int-register, no code will be generated.
736 */ 
737
738 #define M_INTMOVE(reg,dreg) \
739     do { \
740         if ((reg) != (dreg)) { \
741             M_MOV(reg, dreg); \
742         } \
743     } while (0)
744
745 #define M_LNGMOVE(a, b) \
746     do { \
747         if (GET_HIGH_REG(a) == GET_LOW_REG(b)) { \
748             assert((GET_LOW_REG(a) != GET_HIGH_REG(b))); \
749             M_INTMOVE(GET_HIGH_REG(a), GET_HIGH_REG(b)); \
750             M_INTMOVE(GET_LOW_REG(a), GET_LOW_REG(b)); \
751         } else { \
752             M_INTMOVE(GET_LOW_REG(a), GET_LOW_REG(b)); \
753             M_INTMOVE(GET_HIGH_REG(a), GET_HIGH_REG(b)); \
754         } \
755     } while (0)
756
757 /* M_FLTMOVE:
758     generates a floating-point-move from register a to b.
759     if a and b are the same float-register, no code will be generated
760 */ 
761
762 #define M_FLTMOVE(reg,dreg) \
763     do { \
764         if ((reg) != (dreg)) { \
765             M_FMOV(reg, dreg); \
766         } \
767     } while (0)
768
769 /* ----------------------------------------------- */
770
771 #define _DEPR(x) \
772         do { \
773                 fprintf(stdout, \
774                         "Using old x86_64 instruction %s at %s (%s:%d), fix this.\n", \
775                         #x, __FUNCTION__, __FILE__, __LINE__); \
776         } while (0)
777
778 #define M_MOV_IMM(a,b) _DEPR( M_MOV_IMM(a,b) )
779
780 #define M_IMOV(a,b) _DEPR( M_IMOV(a,b) )
781 #define M_IMOV_IMM(a,b) _DEPR( M_IMOV_IMM(a,b) )
782
783
784 #define M_ILD32(a,b,disp) _DEPR( M_ILD32(a,b,disp) )
785 #define M_LLD32(a,b,disp) _DEPR( M_LLD32(a,b,disp) )
786
787
788 #define M_IST_IMM(a,b,disp) _DEPR( M_IST_IMM(a,b,disp) )
789 #define M_LST_IMM32(a,b,disp) _DEPR( M_LST_IMM32(a,b,disp) )
790
791 #define M_IST32(a,b,disp) _DEPR( M_IST32(a,b,disp) )
792 #define M_LST32(a,b,disp) _DEPR( M_LST32(a,b,disp) )
793
794 #define M_IST32_IMM(a,b,disp) _DEPR( M_IST32_IMM(a,b,disp) )
795 #define M_LST32_IMM32(a,b,disp) _DEPR( M_LST32_IMM32(a,b,disp) )
796
797
798 #define M_LADD(a,b) _DEPR( M_LADD(a,b) )
799 #define M_LSUB(a,b) _DEPR( M_LSUB(a,b) )
800 #define M_LMUL(a,b) _DEPR( M_LMUL(a,b) )
801
802 #define M_LADD_IMM(a,b) _DEPR( M_LADD_IMM(a,b) )
803 #define M_LSUB_IMM(a,b) _DEPR( M_LSUB_IMM(a,b) )
804 #define M_LMUL_IMM(a,b,c) _DEPR( M_LMUL_IMM(a,b,c) )
805
806 #define M_IINC(a) _DEPR( M_IINC(a) )
807 #define M_IDEC(a) _DEPR( M_IDEC(a) )
808
809 #define M_ALD32(a,b,disp) _DEPR( M_ALD32(a,b,disp) )
810
811 #define M_AST_IMM32(a,b,c) _DEPR( M_AST_IMM32(a,b,c) )
812
813 #define M_AADD(a,b) _DEPR( M_AADD(a,b) )
814
815 #define M_LADD_IMM32(a,b) _DEPR( M_LADD_IMM32(a,b) )
816 #define M_AADD_IMM32(a,b) _DEPR( M_AADD_IMM32(a,b) )
817 #define M_LSUB_IMM32(a,b) _DEPR( M_LSUB_IMM32(a,b) )
818
819 #define M_ILEA(a,b,c) _DEPR( M_ILEA(a,b,c) )
820 #define M_LLEA(a,b,c) _DEPR( M_LLEA(a,b,c) )
821 #define M_ALEA(a,b,c) _DEPR( M_ALEA(a,b,c) )
822
823 #define M_LNEG(a) _DEPR( M_LNEG(a) )
824
825 #define M_IAND_IMM(a,b) _DEPR( M_IAND_IMM(a,b) )
826 #define M_IOR_IMM(a,b) _DEPR( M_IOR_IMM(a,b) )
827 #define M_IXOR_IMM(a,b) _DEPR( M_IXOR_IMM(a,b) )
828
829 #define M_LAND(a,b) _DEPR( M_LAND(a,b) )
830 #define M_LOR(a,b) _DEPR( M_LOR(a,b) )
831 #define M_LXOR(a,b) _DEPR( M_LXOR(a,b) )
832
833 #define M_LAND_IMM(a,b) _DEPR( M_LAND_IMM(a,b) )
834 #define M_LOR_IMM(a,b) _DEPR( M_LOR_IMM(a,b) )
835 #define M_LXOR_IMM(a,b) _DEPR( M_LXOR_IMM(a,b) )
836
837 #define M_SSEXT(a,b) _DEPR( M_SSEXT(a,b) )
838 #define M_ISEXT(a,b) _DEPR( M_ISEXT(a,b) )
839
840 #define M_CZEXT(a,b) _DEPR( M_CZEXT(a,b) )
841
842 #define M_ISRA_IMM(a,b) _DEPR( M_ISRA_IMM(a,b) )
843
844 #define M_LSLL_IMM(a,b) _DEPR( M_LSLL_IMM(a,b) )
845 #define M_LSRA_IMM(a,b) _DEPR( M_LSRA_IMM(a,b) )
846 #define M_LSRL_IMM(a,b) _DEPR( M_LSRL_IMM(a,b) )
847
848 #define M_LCMP(a,b) _DEPR( M_LCMP(a,b) )
849 #define M_LCMP_IMM(a,b) _DEPR( M_LCMP_IMM(a,b) )
850 #define M_LCMP_IMM_MEMBASE(a,b,c) _DEPR( M_LCMP_IMM_MEMBASE(a,b,c) )
851 #define M_LCMP_MEMBASE(a,b,c) _DEPR( M_LCMP_MEMBASE(a,b,c) )
852
853 #define M_ICMP_IMM_MEMBASE(a,b,c) _DEPR( M_ICMP_IMM_MEMBASE(a,b,c) )
854 #define M_ICMP_MEMBASE(a,b,c) _DEPR( M_ICMP_MEMBASE(a,b,c) )
855
856 #define M_BAE(disp) _DEPR( M_BAE(disp) )
857 #define M_BA(disp) _DEPR( M_BA(disp) )
858
859 #define M_CMOVEQ(a,b) _DEPR( M_CMOVEQ(a,b) )
860 #define M_CMOVNE(a,b) _DEPR( M_CMOVNE(a,b) )
861 #define M_CMOVLT(a,b) _DEPR( M_CMOVLT(a,b) )
862 #define M_CMOVLE(a,b) _DEPR( M_CMOVLE(a,b) )
863 #define M_CMOVGE(a,b) _DEPR( M_CMOVGE(a,b) )
864 #define M_CMOVGT(a,b) _DEPR( M_CMOVGT(a,b) )
865
866 #define M_CMOVEQ_MEMBASE(a,b,c) _DEPR( M_CMOVEQ_MEMBASE(a,b,c) )
867 #define M_CMOVNE_MEMBASE(a,b,c) _DEPR( M_CMOVNE_MEMBASE(a,b,c) )
868 #define M_CMOVLT_MEMBASE(a,b,c) _DEPR( M_CMOVLT_MEMBASE(a,b,c) )
869 #define M_CMOVLE_MEMBASE(a,b,c) _DEPR( M_CMOVLE_MEMBASE(a,b,c) )
870 #define M_CMOVGE_MEMBASE(a,b,c) _DEPR( M_CMOVGE_MEMBASE(a,b,c) )
871 #define M_CMOVGT_MEMBASE(a,b,c) _DEPR( M_CMOVGT_MEMBASE(a,b,c) )
872
873 #define M_CMOVB(a,b) _DEPR( M_CMOVB(a,b) )
874 #define M_CMOVA(a,b) _DEPR( M_CMOVA(a,b) )
875 #define M_CMOVP(a,b) _DEPR( M_CMOVP(a,b) )
876
877 #define M_PUSH(a) _DEPR( M_PUSH(a) )
878 #define M_PUSH_IMM(a) _DEPR( M_PUSH_IMM(a) )
879 #define M_POP(a) _DEPR( M_POP(a) )
880
881 #define M_JMP_IMM(a) _DEPR( M_JMP_IMM(a) )
882 #define M_CALL_IMM(a) _DEPR( M_CALL_IMM(a) )
883
884
885
886
887 #define M_FLD32(a,b,disp) _DEPR( M_FLD32(a,b,disp) )
888 #define M_DLD32(a,b,disp) _DEPR( M_DLD32(a,b,disp) )
889
890
891 #define M_FST32(a,b,disp) _DEPR( M_FST32(a,b,disp) )
892 #define M_DST32(a,b,disp) _DEPR( M_DST32(a,b,disp) )
893
894
895 /* system instructions ********************************************************/
896
897 #define M_RDTSC _DEPR( M_RDTSC )
898
899 #define M_IINC_MEMBASE(a,b) _DEPR( M_IINC_MEMBASE(a,b) )
900
901 #define M_IADD_MEMBASE(a,b,c) _DEPR( M_IADD_MEMBASE(a,b,c) )
902 #define M_IADC_MEMBASE(a,b,c) _DEPR( M_IADC_MEMBASE(a,b,c) )
903 #define M_ISUB_MEMBASE(a,b,c) _DEPR( M_ISUB_MEMBASE(a,b,c) )
904 #define M_ISBB_MEMBASE(a,b,c) _DEPR( M_ISBB_MEMBASE(a,b,c) )
905
906 #define PROFILE_CYCLE_START 
907 #define __PROFILE_CYCLE_START _DEPR( __PROFILE_CYCLE_START )
908
909 #define PROFILE_CYCLE_STOP 
910 #define __PROFILE_CYCLE_STOP _DEPR( __PROFILE_CYCLE_STOP )
911
912
913 /* function gen_resolvebranch **************************************************
914
915     backpatches a branch instruction
916
917     parameters: ip ... pointer to instruction after branch (void*)
918                 so ... offset of instruction after branch  (s8)
919                 to ... offset of branch target             (s8)
920
921 *******************************************************************************/
922
923 #define gen_resolvebranch(ip,so,to) \
924     *((s4*) ((ip) - 4)) = (s4) ((to) - (so));
925
926 #endif /* _CODEGEN_H */
927
928
929 s4 codegen_reg_of_dst_notzero(jitdata *jd, instruction *iptr, s4 tempregnum);
930
931 /*
932  * These are local overrides for various environment variables in Emacs.
933  * Please do not remove this and leave it at the end of the file, where
934  * Emacs will automagically detect them.
935  * ---------------------------------------------------------------------
936  * Local variables:
937  * mode: c
938  * indent-tabs-mode: t
939  * c-basic-offset: 4
940  * tab-width: 4
941  * End:
942  */