PR85 for x86_64.
[cacao.git] / src / vm / jit / emit-common.hpp
1 /* src/vm/jit/emit-common.hpp - common code emitter functions
2
3    Copyright (C) 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _EMIT_COMMON_H
27 #define _EMIT_COMMON_H
28
29 #include "config.h"
30 #include "vm/types.h"
31
32 #include "arch.h"
33
34 #include "vm/jit/codegen-common.hpp"
35 #include "vm/jit/jit.hpp"
36
37
38 /* branch labels **************************************************************/
39
40 #define BRANCH_LABEL_1    1
41 #define BRANCH_LABEL_2    2
42 #define BRANCH_LABEL_3    3
43 #define BRANCH_LABEL_4    4
44 #define BRANCH_LABEL_5    5
45 #define BRANCH_LABEL_6    6
46
47
48 /* constant range macros ******************************************************/
49
50 #if SIZEOF_VOID_P == 8
51
52 # define IS_IMM8(c) \
53     (((s8) (c) >= -128) && ((s8) (c) <= 127))
54
55 # define IS_IMM32(c) \
56     (((s8) (c) >= (-2147483647-1)) && ((s8) (c) <= 2147483647))
57
58 #else
59
60 # define IS_IMM8(c) \
61     (((s4) (c) >= -128) && ((s4) (c) <= 127))
62
63 # define IS_IMM16(c) \
64     (((s4) (c) >= -32768) && ((s4) (c) <= 32767))
65
66 #endif
67
68
69 /* code generation functions **************************************************/
70
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74
75 s4 emit_load(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg);
76 s4 emit_load_s1(jitdata *jd, instruction *iptr, s4 tempreg);
77 s4 emit_load_s2(jitdata *jd, instruction *iptr, s4 tempreg);
78 s4 emit_load_s3(jitdata *jd, instruction *iptr, s4 tempreg);
79
80 #if SIZEOF_VOID_P == 4
81 s4 emit_load_low(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg);
82 s4 emit_load_s1_low(jitdata *jd, instruction *iptr, s4 tempreg);
83 s4 emit_load_s2_low(jitdata *jd, instruction *iptr, s4 tempreg);
84 s4 emit_load_s3_low(jitdata *jd, instruction *iptr, s4 tempreg);
85
86 s4 emit_load_high(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg);
87 s4 emit_load_s1_high(jitdata *jd, instruction *iptr, s4 tempreg);
88 s4 emit_load_s2_high(jitdata *jd, instruction *iptr, s4 tempreg);
89 s4 emit_load_s3_high(jitdata *jd, instruction *iptr, s4 tempreg);
90 #endif
91
92 void emit_store(jitdata *jd, instruction *iptr, varinfo *dst, s4 d);
93 void emit_store_dst(jitdata *jd, instruction *iptr, s4 d);
94
95 #if SIZEOF_VOID_P == 4
96 void emit_store_low(jitdata *jd, instruction *iptr, varinfo *dst, s4 d);
97 void emit_store_high(jitdata *jd, instruction *iptr, varinfo *dst, s4 d);
98 #endif
99
100 void emit_copy(jitdata *jd, instruction *iptr);
101
102 void emit_iconst(codegendata *cd, s4 d, s4 value);
103 void emit_lconst(codegendata *cd, s4 d, s8 value);
104
105 /* branch-emitting functions */
106 void emit_bccz(codegendata *cd, basicblock *target, s4 condition, s4 reg, u4 options);
107 void emit_bcc(codegendata *cd, basicblock *target, s4 condition, u4 options);
108
109 /* wrapper for unconditional branches */
110 void emit_br(codegendata *cd, basicblock *target);
111
112 /* wrappers for branches on one integer register */
113
114 #if SUPPORT_BRANCH_CONDITIONAL_ONE_INTEGER_REGISTER
115 void emit_beqz(codegendata *cd, basicblock *target, s4 reg);
116 void emit_bnez(codegendata *cd, basicblock *target, s4 reg);
117 void emit_bltz(codegendata *cd, basicblock *target, s4 reg);
118 void emit_bgez(codegendata *cd, basicblock *target, s4 reg);
119 void emit_bgtz(codegendata *cd, basicblock *target, s4 reg);
120 void emit_blez(codegendata *cd, basicblock *target, s4 reg);
121 #endif
122
123 /* wrappers for branches on two integer registers */
124
125 #if SUPPORT_BRANCH_CONDITIONAL_TWO_INTEGER_REGISTERS
126 void emit_beq(codegendata *cd, basicblock *target, s4 s1, s4 s2);
127 void emit_bne(codegendata *cd, basicblock *target, s4 s1, s4 s2);
128 #endif
129
130 /* wrappers for branches on condition codes */
131
132 #if SUPPORT_BRANCH_CONDITIONAL_CONDITION_REGISTER
133 void emit_beq(codegendata *cd, basicblock *target);
134 void emit_bne(codegendata *cd, basicblock *target);
135 void emit_blt(codegendata *cd, basicblock *target);
136 void emit_bge(codegendata *cd, basicblock *target);
137 void emit_bgt(codegendata *cd, basicblock *target);
138 void emit_ble(codegendata *cd, basicblock *target);
139 #endif
140
141 #if SUPPORT_BRANCH_CONDITIONAL_UNSIGNED_CONDITIONS
142 void emit_bult(codegendata *cd, basicblock *target);
143 void emit_bule(codegendata *cd, basicblock *target);
144 void emit_buge(codegendata *cd, basicblock *target);
145 void emit_bugt(codegendata *cd, basicblock *target);
146 #endif
147
148 #if defined(__POWERPC__) || defined(__POWERPC64__)
149 void emit_bnan(codegendata *cd, basicblock *target);
150 #endif
151
152 /* label-branches */
153 void emit_label_bccz(codegendata *cd, s4 label, s4 condition, s4 reg, u4 options);
154 void emit_label(codegendata *cd, s4 label);
155 void emit_label_bcc(codegendata *cd, s4 label, s4 condition, u4 options);
156
157 void emit_label_br(codegendata *cd, s4 label);
158
159 #if SUPPORT_BRANCH_CONDITIONAL_ONE_INTEGER_REGISTER
160 void emit_label_beqz(codegendata* cd, int label, int reg);
161 void emit_label_bnez(codegendata* cd, int label, int reg);
162 void emit_label_bltz(codegendata* cd, int label, int reg);
163 void emit_label_bgtz(codegendata* cd, int label, int reg);
164 #endif
165
166 #if SUPPORT_BRANCH_CONDITIONAL_TWO_INTEGER_REGISTERS
167 void emit_label_bne(codegendata* cd, int label, int s1, int s2);
168 #endif
169
170 #if SUPPORT_BRANCH_CONDITIONAL_CONDITION_REGISTER
171 void emit_label_beq(codegendata *cd, s4 label);
172 void emit_label_bne(codegendata *cd, s4 label);
173 void emit_label_blt(codegendata *cd, s4 label);
174 void emit_label_bge(codegendata *cd, s4 label);
175 void emit_label_bgt(codegendata *cd, s4 label);
176 void emit_label_ble(codegendata *cd, s4 label);
177 #endif
178
179 /* machine dependent branch-emitting function */
180 void emit_branch(codegendata *cd, s4 disp, s4 condition, s4 reg, u4 options);
181
182 void emit_arithmetic_check(codegendata *cd, instruction *iptr, s4 reg);
183 void emit_arrayindexoutofbounds_check(codegendata *cd, instruction *iptr, s4 s1, s4 s2);
184 void emit_arraystore_check(codegendata *cd, instruction *iptr);
185 void emit_classcast_check(codegendata *cd, instruction *iptr, s4 condition, s4 reg, s4 s1);
186 void emit_nullpointer_check(codegendata *cd, instruction *iptr, s4 reg);
187 void emit_exception_check(codegendata *cd, instruction *iptr);
188
189 void emit_trap_compiler(codegendata *cd);
190 void emit_trap_countdown(codegendata *cd, s4 *counter);
191 uint32_t emit_trap(codegendata *cd);
192
193 void emit_patcher_traps(jitdata *jd);
194
195 void emit_verbosecall_enter(jitdata *jd);
196 void emit_verbosecall_exit(jitdata *jd);
197
198 #ifdef __cplusplus
199 }
200 #endif
201
202 #endif /* _EMIT_COMMON_H */
203
204
205 /*
206  * These are local overrides for various environment variables in Emacs.
207  * Please do not remove this and leave it at the end of the file, where
208  * Emacs will automagically detect them.
209  * ---------------------------------------------------------------------
210  * Local variables:
211  * mode: c
212  * indent-tabs-mode: t
213  * c-basic-offset: 4
214  * tab-width: 4
215  * End:
216  * vim:noexpandtab:sw=4:ts=4:
217  */