* src/vm/jit/jit.c (jit_compile_intern): Perform inlining if
[cacao.git] / src / vm / jit / i386 / codegen.h
1 /* src/vm/jit/i386/codegen.h - code generation macros and definitions for i386
2
3    Copyright (C) 1996-2005, 2006 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    Contact: cacao@cacaojvm.org
26
27    Authors: Andreas Krall
28             Christian Thalinger
29
30    $Id: codegen.h 6211 2006-12-16 22:53:24Z edwin $
31
32 */
33
34
35 #ifndef _CODEGEN_H
36 #define _CODEGEN_H
37
38 #include "config.h"
39 #include "vm/types.h"
40
41 #include "vm/jit/i386/emit.h"
42
43 #include "vm/jit/jit.h"
44
45
46 #if defined(ENABLE_LSRA)
47 /* let LSRA allocate reserved registers (REG_ITMP[1|2|3]) */
48 # define LSRA_USES_REG_RES
49 #endif
50
51
52 /* additional functions and macros to generate code ***************************/
53
54 #define CALCOFFSETBYTES(var, reg, val) \
55     if ((s4) (val) < -128 || (s4) (val) > 127) (var) += 4; \
56     else if ((s4) (val) != 0) (var) += 1; \
57     else if ((reg) == EBP) (var) += 1;
58
59
60 #define CALCIMMEDIATEBYTES(var, val) \
61     if ((s4) (val) < -128 || (s4) (val) > 127) (var) += 4; \
62     else (var) += 1;
63
64
65 #define ALIGNCODENOP \
66     do { \
67         for (s1 = 0; s1 < (s4) (((ptrint) cd->mcodeptr) & 7); s1++) \
68             M_NOP; \
69     } while (0)
70
71
72 /* MCODECHECK(icnt) */
73
74 #define MCODECHECK(icnt) \
75     do { \
76         if ((cd->mcodeptr + (icnt)) > (u1 *) cd->mcodeend) \
77             codegen_increase(cd); \
78     } while (0)
79
80
81 /* M_INTMOVE:
82      generates an integer-move from register a to b.
83      if a and b are the same int-register, no code will be generated.
84 */ 
85
86 #define M_INTMOVE(a,b) \
87     do { \
88         if ((a) != (b)) \
89             M_MOV(a, b); \
90     } while (0)
91
92 #define M_LNGMOVE(a,b) \
93     do { \
94         if (GET_HIGH_REG(a) == GET_LOW_REG(b)) { \
95             assert((GET_LOW_REG(a) != GET_HIGH_REG(b))); \
96             M_INTMOVE(GET_HIGH_REG(a), GET_HIGH_REG(b)); \
97             M_INTMOVE(GET_LOW_REG(a), GET_LOW_REG(b)); \
98         } else { \
99             M_INTMOVE(GET_LOW_REG(a), GET_LOW_REG(b)); \
100             M_INTMOVE(GET_HIGH_REG(a), GET_HIGH_REG(b)); \
101         } \
102     } while (0)
103
104
105 /* M_FLTMOVE:
106     generates a floating-point-move from register a to b.
107     if a and b are the same float-register, no code will be generated
108 */
109
110 #define M_FLTMOVE(reg,dreg)                                          \
111     do {                                                             \
112         if ((reg) != (dreg)) {                                       \
113             log_text("M_FLTMOVE");                                   \
114             assert(0);                                               \
115         }                                                            \
116     } while (0)
117
118
119 #define ICONST(d,c) \
120     do { \
121         if ((c) == 0) \
122             M_CLR(d); \
123         else \
124             M_MOV_IMM((c), d); \
125     } while (0)
126
127
128 #define LCONST(d,c) \
129     do { \
130         if ((c) == 0) { \
131             M_CLR(GET_LOW_REG(d)); \
132             M_CLR(GET_HIGH_REG(d)); \
133         } else { \
134             M_MOV_IMM((c), GET_LOW_REG(d)); \
135             M_MOV_IMM((c) >> 32, GET_HIGH_REG(d)); \
136         } \
137     } while (0)
138
139
140 /* branch defines *************************************************************/
141
142 #define BRANCH_NOPS \
143     do { \
144         M_NOP; \
145         M_NOP; \
146         M_NOP; \
147         M_NOP; \
148         M_NOP; \
149     } while (0)
150
151
152 /* patcher defines ************************************************************/
153
154 #define PATCHER_CALL_SIZE    5          /* size in bytes of a patcher call    */
155
156 #define PATCHER_NOPS \
157     do { \
158         M_NOP; \
159         M_NOP; \
160         M_NOP; \
161         M_NOP; \
162         M_NOP; \
163     } while (0)
164
165
166 /* macros to create code ******************************************************/
167
168 #define M_ILD(a,b,disp)         emit_mov_membase_reg(cd, (b), (disp), (a))
169 #define M_ILD32(a,b,disp)       emit_mov_membase32_reg(cd, (b), (disp), (a))
170
171 #define M_ALD(a,b,disp)         M_ILD(a,b,disp)
172 #define M_ALD32(a,b,disp)       M_ILD32(a,b,disp)
173
174 #define M_LLD(a,b,disp) \
175     do { \
176         M_ILD(GET_LOW_REG(a),b,disp); \
177         M_ILD(GET_HIGH_REG(a),b,disp + 4); \
178     } while (0)
179
180 #define M_LLD32(a,b,disp) \
181     do { \
182         M_ILD32(GET_LOW_REG(a),b,disp); \
183         M_ILD32(GET_HIGH_REG(a),b,disp + 4); \
184     } while (0)
185
186 #define M_IST(a,b,disp)         emit_mov_reg_membase(cd, (a), (b), (disp))
187 #define M_IST_IMM(a,b,disp)     emit_mov_imm_membase(cd, (u4) (a), (b), (disp))
188 #define M_AST(a,b,disp)         M_IST(a,b,disp)
189 #define M_AST_IMM(a,b,disp)     M_IST_IMM(a,b,disp)
190
191 #define M_IST32(a,b,disp)       emit_mov_reg_membase32(cd, (a), (b), (disp))
192 #define M_IST32_IMM(a,b,disp)   emit_mov_imm_membase32(cd, (u4) (a), (b), (disp))
193
194 #define M_LST(a,b,disp) \
195     do { \
196         M_IST(GET_LOW_REG(a),b,disp); \
197         M_IST(GET_HIGH_REG(a),b,disp + 4); \
198     } while (0)
199
200 #define M_LST32(a,b,disp) \
201     do { \
202         M_IST32(GET_LOW_REG(a),b,disp); \
203         M_IST32(GET_HIGH_REG(a),b,disp + 4); \
204     } while (0)
205
206 #define M_LST_IMM(a,b,disp) \
207     do { \
208         M_IST_IMM(a,b,disp); \
209         M_IST_IMM(a >> 32,b,disp + 4); \
210     } while (0)
211
212 #define M_LST32_IMM(a,b,disp) \
213     do { \
214         M_IST32_IMM(a,b,disp); \
215         M_IST32_IMM(a >> 32,b,disp + 4); \
216     } while (0)
217
218 #define M_IADD(a,b)             emit_alu_reg_reg(cd, ALU_ADD, (a), (b))
219 #define M_ISUB(a,b)             emit_alu_reg_reg(cd, ALU_SUB, (a), (b))
220 #define M_IMUL(a,b)             emit_imul_reg_reg(cd, (a), (b))
221 #define M_IDIV(a)               emit_idiv_reg(cd, (a))
222
223 #define M_MUL(a)                emit_mul_reg(cd, (a))
224
225 #define M_IADD_IMM(a,b)         emit_alu_imm_reg(cd, ALU_ADD, (a), (b))
226 #define M_ISUB_IMM(a,b)         emit_alu_imm_reg(cd, ALU_SUB, (a), (b))
227 #define M_IMUL_IMM(a,b,c)       emit_imul_imm_reg_reg(cd, (b), (a), (c))
228
229 #define M_IADD_IMM32(a,b)       emit_alu_imm32_reg(cd, ALU_ADD, (a), (b))
230 #define M_ISUB_IMM32(a,b)       emit_alu_imm32_reg(cd, ALU_SUB, (a), (b))
231
232 #define M_IADD_IMM_MEMBASE(a,b,c) emit_alu_imm_membase(cd, ALU_ADD, (a), (b), (c))
233
234 #define M_ISUB_IMM_MEMABS(a,b)  emit_alu_imm_memabs(cd, ALU_SUB, (a), (b))
235
236 #define M_IADDC(a,b)            emit_alu_reg_reg(cd, ALU_ADC, (a), (b))
237 #define M_ISUBB(a,b)            emit_alu_reg_reg(cd, ALU_SBB, (a), (b))
238
239 #define M_IADDC_IMM(a,b)        emit_alu_imm_reg(cd, ALU_ADC, (a), (b))
240 #define M_ISUBB_IMM(a,b)        emit_alu_imm_reg(cd, ALU_SBB, (a), (b))
241
242 #define M_AADD_IMM(a,b)         M_IADD_IMM(a,b)
243 #define M_AADD_IMM32(a,b)       M_IADD_IMM32(a,b)
244 #define M_ASUB_IMM(a,b)         M_ISUB_IMM(a,b)
245
246 #define M_NEG(a)                emit_neg_reg(cd, (a))
247
248 #define M_AND(a,b)              emit_alu_reg_reg(cd, ALU_AND, (a), (b))
249 #define M_OR(a,b)               emit_alu_reg_reg(cd, ALU_OR, (a), (b))
250 #define M_XOR(a,b)              emit_alu_reg_reg(cd, ALU_XOR, (a), (b))
251
252 #define M_AND_IMM(a,b)          emit_alu_imm_reg(cd, ALU_AND, (a), (b))
253 #define M_OR_IMM(a,b)           emit_alu_imm_reg(cd, ALU_OR, (a), (b))
254 #define M_XOR_IMM(a,b)          emit_alu_imm_reg(cd, ALU_XOR, (a), (b))
255
256 #define M_AND_IMM32(a,b)        emit_alu_imm32_reg(cd, ALU_AND, (a), (b))
257
258 #define M_CLR(a)                M_XOR(a,a)
259
260 #define M_PUSH(a)               emit_push_reg(cd, (a))
261 #define M_PUSH_IMM(a)           emit_push_imm(cd, (s4) (a))
262 #define M_POP(a)                emit_pop_reg(cd, (a))
263
264 #define M_MOV(a,b)              emit_mov_reg_reg(cd, (a), (b))
265 #define M_MOV_IMM(a,b)          emit_mov_imm_reg(cd, (u4) (a), (b))
266
267 #define M_TEST(a)               emit_test_reg_reg(cd, (a), (a))
268 #define M_TEST_IMM(a,b)         emit_test_imm_reg(cd, (a), (b))
269
270 #define M_CMP(a,b)              emit_alu_reg_reg(cd, ALU_CMP, (a), (b))
271 #define M_CMP_MEMBASE(a,b,c)    emit_alu_membase_reg(cd, ALU_CMP, (a), (b), (c))
272
273 #define M_CMP_IMM(a,b)          emit_alu_imm_reg(cd, ALU_CMP, (a), (b))
274 #define M_CMP_IMM_MEMBASE(a,b,c) emit_alu_imm_membase(cd, ALU_CMP, (a), (b), (c))
275
276 #define M_CMP_IMM32(a,b)        emit_alu_imm32_reg(cd, ALU_CMP, (a), (b))
277
278 #define M_BSEXT(a,b)            /* XXX does not work, because of nibbles */
279 #define M_SSEXT(a,b)            emit_movswl_reg_reg(cd, (a), (b))
280
281 #define M_CZEXT(a,b)            emit_movzwl_reg_reg(cd, (a), (b))
282
283 #define M_CLTD                  emit_cltd(cd)
284
285 #define M_SLL(a)                emit_shift_reg(cd, SHIFT_SHL, (a))
286 #define M_SRA(a)                emit_shift_reg(cd, SHIFT_SAR, (a))
287 #define M_SRL(a)                emit_shift_reg(cd, SHIFT_SHR, (a))
288
289 #define M_SLL_IMM(a,b)          emit_shift_imm_reg(cd, SHIFT_SHL, (a), (b))
290 #define M_SRA_IMM(a,b)          emit_shift_imm_reg(cd, SHIFT_SAR, (a), (b))
291 #define M_SRL_IMM(a,b)          emit_shift_imm_reg(cd, SHIFT_SHR, (a), (b))
292
293 #define M_SLLD(a,b)             emit_shld_reg_reg(cd, (a), (b))
294 #define M_SRLD(a,b)             emit_shrd_reg_reg(cd, (a), (b))
295
296 #define M_SLLD_IMM(a,b,c)       emit_shld_imm_reg_reg(cd, (a), (b), (c))
297 #define M_SRLD_IMM(a,b,c)       emit_shrd_imm_reg_reg(cd, (a), (b), (c))
298
299 #define M_CALL(a)               emit_call_reg(cd, (a))
300 #define M_CALL_IMM(a)           emit_call_imm(cd, (a))
301 #define M_RET                   emit_ret(cd)
302
303 #define M_BEQ(a)                emit_jcc(cd, CC_E, (a))
304 #define M_BNE(a)                emit_jcc(cd, CC_NE, (a))
305 #define M_BLT(a)                emit_jcc(cd, CC_L, (a))
306 #define M_BLE(a)                emit_jcc(cd, CC_LE, (a))
307 #define M_BGE(a)                emit_jcc(cd, CC_GE, (a))
308 #define M_BGT(a)                emit_jcc(cd, CC_G, (a))
309
310 #define M_BB(a)                 emit_jcc(cd, CC_B, (a))
311 #define M_BBE(a)                emit_jcc(cd, CC_BE, (a))
312 #define M_BAE(a)                emit_jcc(cd, CC_AE, (a))
313 #define M_BA(a)                 emit_jcc(cd, CC_A, (a))
314 #define M_BNS(a)                emit_jcc(cd, CC_NS, (a))
315 #define M_BS(a)                 emit_jcc(cd, CC_S, (a))
316
317 #define M_JMP(a)                emit_jmp_reg(cd, (a))
318 #define M_JMP_IMM(a)            emit_jmp_imm(cd, (a))
319
320 #define M_NOP                   emit_nop(cd)
321
322
323 #define M_FLD(a,b,disp)         emit_flds_membase(cd, (b), (disp))
324 #define M_DLD(a,b,disp)         emit_fldl_membase(cd, (b), (disp))
325
326 #define M_FLD32(a,b,disp)       emit_flds_membase32(cd, (b), (disp))
327 #define M_DLD32(a,b,disp)       emit_fldl_membase32(cd, (b), (disp))
328
329 #define M_FST(a,b,disp)         emit_fstps_membase(cd, (b), (disp))
330 #define M_DST(a,b,disp)         emit_fstpl_membase(cd, (b), (disp))
331
332 #define M_FSTNP(a,b,disp)       emit_fsts_membase(cd, (b), (disp))
333 #define M_DSTNP(a,b,disp)       emit_fstl_membase(cd, (b), (disp))
334
335 #endif /* _CODEGEN_H */
336
337
338 /*
339  * These are local overrides for various environment variables in Emacs.
340  * Please do not remove this and leave it at the end of the file, where
341  * Emacs will automagically detect them.
342  * ---------------------------------------------------------------------
343  * Local variables:
344  * mode: c
345  * indent-tabs-mode: t
346  * c-basic-offset: 4
347  * tab-width: 4
348  * End:
349  */