* src/vm/jit/sparc64/codegen.h: Fixed float register mapping and compare macros.
[cacao.git] / src / vm / jit / sparc64 / emit.c
1 /* src/vm/jit/sparc64/emit.c - Sparc code emitter functions
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: Christian Thalinger
28             Alexander Jordan
29
30    Changes: 
31
32    $Id: emitfuncs.c 4398 2006-01-31 23:43:08Z twisti $
33
34 */
35
36 #include "vm/types.h"
37
38 #include "md-abi.h"
39
40 #include "vm/jit/sparc64/codegen.h"
41
42 #include "vm/exceptions.h"
43 #include "vm/stringlocal.h" /* XXX for gen_resolvebranch */
44 #include "vm/jit/abi-asm.h"
45 #include "vm/jit/asmpart.h"
46 #include "vm/jit/dseg.h"
47 #include "vm/jit/emit-common.h"
48 #include "vm/jit/jit.h"
49 #include "vm/jit/replace.h"
50
51 /* how to leaf optimization in the emitted stubs?? */
52 #define REG_PV REG_PV_CALLEE
53
54
55 /* emit_load *******************************************************************
56
57    Emits a possible load of an operand.
58
59 *******************************************************************************/
60
61 s4 emit_load(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg)
62 {
63         codegendata  *cd;
64         s4            disp;
65         s4            reg;
66
67         /* get required compiler data */
68
69         cd = jd->cd;
70
71         if (src->flags & INMEMORY) {
72                 COUNT_SPILLS;
73
74                 disp = USESTACK + src->vv.regoff * 8;
75
76                 if (IS_FLT_DBL_TYPE(src->type))
77                         M_DLD(tempreg, REG_SP, disp);
78                 else
79                         M_LDX(tempreg, REG_SP, disp);
80
81                 reg = tempreg;
82         }
83         else
84                 reg = src->vv.regoff;
85
86         return reg;
87 }
88
89
90 /* emit_store ******************************************************************
91
92    Emits a possible store to variable.
93
94 *******************************************************************************/
95
96 void emit_store(jitdata *jd, instruction *iptr, varinfo *dst, s4 d)
97 {
98         codegendata  *cd;
99         s4            disp;
100
101         /* get required compiler data */
102
103         cd = jd->cd;
104
105         if (dst->flags & INMEMORY) {
106                 COUNT_SPILLS;
107
108                 disp = USESTACK + dst->vv.regoff * 8;
109
110                 if (IS_FLT_DBL_TYPE(dst->type))
111                         M_DST(d, REG_SP, disp);
112                 else
113                         M_STX(d, REG_SP, disp);
114         }
115 }
116
117
118 /* emit_copy *******************************************************************
119
120    Generates a register/memory to register/memory copy.
121
122 *******************************************************************************/
123
124 void emit_copy(jitdata *jd, instruction *iptr, varinfo *src, varinfo *dst)
125 {
126         codegendata  *cd;
127         registerdata *rd;
128         s4            s1, d;
129
130         /* get required compiler data */
131
132         cd = jd->cd;
133         rd = jd->rd;
134
135         if ((src->vv.regoff != dst->vv.regoff) ||
136                 ((src->flags ^ dst->flags) & INMEMORY)) {
137
138                 /* If one of the variables resides in memory, we can eliminate
139                    the register move from/to the temporary register with the
140                    order of getting the destination register and the load. */
141
142                 if (IS_INMEMORY(src->flags)) {
143                         d = codegen_reg_of_var(iptr->opc, dst, REG_IFTMP);
144                         s1 = emit_load(jd, iptr, src, d);
145                 }
146                 else {
147                         s1 = emit_load(jd, iptr, src, REG_IFTMP);
148                         d = codegen_reg_of_var(iptr->opc, dst, s1);
149                 }
150
151                 if (s1 != d) {
152                         if (IS_FLT_DBL_TYPE(src->type))
153                                 M_DMOV(s1, d);
154                 else
155                                 M_MOV(s1, d);
156                 }
157
158                 emit_store(jd, iptr, dst, d);
159         }
160 }
161
162
163 /* emit_iconst *****************************************************************
164
165    XXX
166
167 *******************************************************************************/
168
169 void emit_iconst(codegendata *cd, s4 d, s4 value)
170 {
171         s4 disp;
172
173         if ((value >= -4096) && (value <= 4095)) {
174                 M_XOR_IMM(REG_ZERO, value, d);
175         } else {
176                 disp = dseg_add_s4(cd, value);
177                 M_ILD(d, REG_PV_CALLEE, disp);
178         }
179 }
180
181
182 /* emit_lconst *****************************************************************
183
184    XXX
185
186 *******************************************************************************/
187
188 void emit_lconst(codegendata *cd, s4 d, s8 value)
189 {
190         s4 disp;
191
192         if ((value >= -4096) && (value <= 4095)) {
193                 M_XOR_IMM(REG_ZERO, value, d);  
194         } else {
195                 disp = dseg_add_s8(cd, value);
196                 M_LDX(d, REG_PV_CALLEE, disp);
197         }
198 }
199
200 /* emit_arrayindexoutofbounds_check ********************************************
201
202    Emit an ArrayIndexOutOfBoundsException check.
203
204 *******************************************************************************/
205
206 void emit_arrayindexoutofbounds_check(codegendata *cd, s4 s1, s4 s2)
207 {
208 }
209
210 /* emit_nullpointer_check ******************************************************
211
212    Emit a NullPointerException check.
213
214 *******************************************************************************/
215
216 void emit_nullpointer_check(codegendata *cd, s4 reg)
217 {
218 }
219
220 /* emit_exception_stubs ********************************************************
221
222    Generates the code for the exception stubs.
223
224 *******************************************************************************/
225
226 void emit_exception_stubs(jitdata *jd)
227 {
228 }
229
230 /* emit_patcher_stubs **********************************************************
231
232    Generates the code for the patcher stubs.
233
234 *******************************************************************************/
235
236 void emit_patcher_stubs(jitdata *jd)
237 {
238         codegendata *cd;
239         patchref    *pref;
240         u4           mcode[2];
241         u1          *savedmcodeptr;
242         u1          *tmpmcodeptr;
243         s4           targetdisp;
244         s4           disp;
245
246         /* get required compiler data */
247
248         cd = jd->cd;
249
250         /* generate code patching stub call code */
251
252         targetdisp = 0;
253
254         for (pref = cd->patchrefs; pref != NULL; pref = pref->next) {
255                 /* check code segment size */
256
257                 MCODECHECK(100);
258
259                 /* Get machine code which is patched back in later. The
260                    call is 2 instruction words long. */
261
262                 tmpmcodeptr = (u1 *) (cd->mcodebase + pref->branchpos);
263
264                 /* We use 2 loads here as an unaligned 8-byte read on 64-bit
265                    SPARC causes a SIGSEGV */
266
267                 mcode[0] = ((u4 *) tmpmcodeptr)[0];
268                 mcode[1] = ((u4 *) tmpmcodeptr)[1];
269
270                 /* Patch in the call to call the following code (done at
271                    compile time). */
272
273                 savedmcodeptr = cd->mcodeptr;   /* save current mcodeptr          */
274                 cd->mcodeptr  = tmpmcodeptr;    /* set mcodeptr to patch position */
275
276                 disp = ((u4 *) savedmcodeptr) - (((u4 *) tmpmcodeptr) );
277
278                 if ((disp < (s4) 0xfffc0000) || (disp > (s4) 0x003ffff)) {
279                         *exceptionptr =
280                                 new_internalerror("Jump offset is out of range: %d > +/-%d",
281                                                                   disp, 0x003ffff);
282                         return;
283                 }
284
285                 M_BR(disp);
286                 M_NOP;
287
288         cd->mcodeptr = savedmcodeptr;   /* restore the current mcodeptr   */
289
290                 /* extend stack frame for wrapper data */
291
292                 M_ASUB_IMM(REG_SP, 6 * 8, REG_SP);
293
294                 /* calculate return address and move it onto the stack */
295
296                 M_LDA(REG_ITMP3, REG_PV, pref->branchpos);
297                 M_AST(REG_ITMP3, REG_SP, USESTACK + 5 * 8);
298
299                 /* move pointer to java_objectheader onto stack */
300
301 #if defined(ENABLE_THREADS)
302                 /* create a virtual java_objectheader */
303
304                 (void) dseg_add_unique_address(cd, NULL);                  /* flcword */
305                 (void) dseg_add_unique_address(cd, lock_get_initial_lock_word());
306                 disp = dseg_add_unique_address(cd, NULL);                  /* vftbl   */
307
308                 M_LDA(REG_ITMP3, REG_PV, disp);
309                 M_AST(REG_ITMP3, REG_SP, USESTACK + 4 * 8);
310 #else
311                 /* do nothing */
312 #endif
313
314                 /* move machine code onto stack */
315
316                 disp = dseg_add_s4(cd, mcode[0]);
317                 M_ILD(REG_ITMP3, REG_PV, disp);
318                 M_IST(REG_ITMP3, REG_SP, USESTACK + 3 * 8);
319
320                 disp = dseg_add_s4(cd, mcode[1]);
321                 M_ILD(REG_ITMP3, REG_PV, disp);
322                 M_IST(REG_ITMP3, REG_SP, USESTACK + 3 * 8 + 4);
323
324                 /* move class/method/field reference onto stack */
325
326                 disp = dseg_add_address(cd, pref->ref);
327                 M_ALD(REG_ITMP3, REG_PV, disp);
328                 M_AST(REG_ITMP3, REG_SP, USESTACK + 2 * 8);
329
330         /* move data segment displacement onto stack */
331
332                 disp = dseg_add_s4(cd, pref->disp);
333                 M_ILD(REG_ITMP3, REG_PV, disp);
334                 M_IST(REG_ITMP3, REG_SP, USESTACK + 1 * 8);
335
336                 /* move patcher function pointer onto stack */
337
338                 disp = dseg_add_address(cd, pref->patcher);
339                 M_ALD(REG_ITMP3, REG_PV, disp);
340                 M_AST(REG_ITMP3, REG_SP, USESTACK + 0 * 8);
341
342                 if (targetdisp == 0) {
343                         targetdisp = ((u4 *) cd->mcodeptr) - ((u4 *) cd->mcodebase);
344
345                         disp = dseg_add_functionptr(cd, asm_patcher_wrapper);
346                         M_ALD(REG_ITMP3, REG_PV, disp);
347                         M_JMP(REG_ZERO, REG_ITMP3, REG_ZERO);
348                         M_NOP;
349                 }
350                 else {
351                         disp = (((u4 *) cd->mcodebase) + targetdisp) -
352                                 (((u4 *) cd->mcodeptr));
353
354                         M_BR(disp);
355                         M_NOP;
356                 }
357         }
358 }
359
360
361 /* emit_replacement_stubs ******************************************************
362
363    Generates the code for the replacement stubs.
364
365 *******************************************************************************/
366
367 void emit_replacement_stubs(jitdata *jd)
368 {
369 }
370
371 /* emit_verbosecall_enter ******************************************************
372
373    Generates the code for the call trace.
374
375 *******************************************************************************/
376
377 #if !defined(NDEBUG)
378 void emit_verbosecall_enter(jitdata *jd)
379 {
380         methodinfo   *m;
381         codegendata  *cd;
382         registerdata *rd;
383         methoddesc   *md;
384         s4            disp;
385         s4            i, t;
386
387         /* get required compiler data */
388
389         m  = jd->m;
390         cd = jd->cd;
391         rd = jd->rd;
392
393         md = m->parseddesc;
394
395         /* mark trace code */
396
397         M_NOP;
398
399         /* we're calling a c function allocate paramter array */
400         M_LDA(REG_SP, REG_SP, -(1 + FLT_ARG_CNT + ABI_PARAMARRAY_SLOTS) * 8);
401
402         /* save float argument registers */
403
404         for (i = 0; i < FLT_ARG_CNT; i++)
405                 M_DST(rd->argfltregs[i], REG_SP, USESTACK_PARAMS + (1 + i) * 8);
406
407         /* save temporary registers for leaf methods */
408 /* XXX no leaf optimization yet
409         if (jd->isleafmethod) {
410                 for (i = 0; i < INT_TMP_CNT; i++)
411                         M_LST(rd->tmpintregs[i], REG_SP, (2 + ARG_CNT + i) * 8);
412
413                 for (i = 0; i < FLT_TMP_CNT; i++)
414                         M_DST(rd->tmpfltregs[i], REG_SP, (2 + ARG_CNT + INT_TMP_CNT + i) * 8);
415         }
416 */
417         /* load int/float arguments into integer argument registers */
418
419         for (i = 0; i < md->paramcount && i < INT_ARG_CNT; i++) {
420                 t = md->paramtypes[i].type;
421
422                 if (IS_INT_LNG_TYPE(t)) {
423                         M_INTMOVE(REG_WINDOW_TRANSPOSE(rd->argintregs[i]), rd->argintregs[i]);
424                 }
425                 else {
426                         if (IS_2_WORD_TYPE(t)) {
427                                 M_DST(rd->argfltregs[i], REG_SP, USESTACK_PARAMS);
428                                 M_LDX(rd->argintregs[i], REG_SP, USESTACK_PARAMS);
429                         }
430                         else {
431                                 M_FST(rd->argfltregs[i], REG_SP, USESTACK_PARAMS);
432                                 M_ILD(rd->argintregs[i], REG_SP, USESTACK_PARAMS);
433                         }
434                 }
435         }
436         
437         
438         /* method info pointer is passed in argument register 5 */
439         disp = dseg_add_address(cd, m);
440         M_ALD(REG_OUT5, REG_PV_CALLEE, disp);
441         disp = dseg_add_functionptr(cd, builtin_trace_args);
442         M_ALD(REG_ITMP1, REG_PV_CALLEE, disp);
443         M_JMP(REG_RA_CALLER, REG_ITMP1, REG_ZERO);
444         M_NOP;
445
446         /* restore float argument registers */
447
448         for (i = 0; i < FLT_ARG_CNT; i++)
449                 M_DLD(rd->argfltregs[i], REG_SP, USESTACK_PARAMS + (1 + i) * 8);
450
451         /* restore temporary registers for leaf methods */
452 /* XXX no leaf optimization yet
453         if (jd->isleafmethod) {
454                 for (i = 0; i < INT_TMP_CNT; i++)
455                         M_LLD(rd->tmpintregs[i], REG_SP, (2 + ARG_CNT + i) * 8);
456
457                 for (i = 0; i < FLT_TMP_CNT; i++)
458                         M_DLD(rd->tmpfltregs[i], REG_SP, (2 + ARG_CNT + INT_TMP_CNT + i) * 8);
459         }
460 */
461         M_LDA(REG_SP, REG_SP, (1 + FLT_ARG_CNT + ABI_PARAMARRAY_SLOTS) * 8);
462
463         /* mark trace code */
464
465         M_NOP;
466 }
467 #endif /* !defined(NDEBUG) */
468
469
470 /* emit_verbosecall_exit *******************************************************
471
472    Generates the code for the call trace.
473
474 *******************************************************************************/
475
476 #if !defined(NDEBUG)
477 void emit_verbosecall_exit(jitdata *jd)
478 {
479         methodinfo   *m;
480         codegendata  *cd;
481         registerdata *rd;
482         s4            disp;
483
484         /* get required compiler data */
485
486         m  = jd->m;
487         cd = jd->cd;
488         rd = jd->rd;
489
490         /* mark trace code */
491
492         M_NOP;
493         
494         /* we're calling a c function allocate paramter array */
495         M_LDA(REG_SP, REG_SP, -(1 + ABI_PARAMARRAY_SLOTS) * 8);
496
497         M_DST(REG_FRESULT, REG_SP, USESTACK_PARAMS);
498
499         disp = dseg_add_address(cd, m);
500         M_ALD(rd->argintregs[0], REG_PV_CALLEE, disp);
501
502         M_MOV(REG_RESULT_CALLEE, rd->argintregs[1]);
503         M_DMOV(REG_FRESULT, 2); /* applies for flt and dbl values */
504
505         disp = dseg_add_functionptr(cd, builtin_displaymethodstop);
506         M_ALD(REG_ITMP3, REG_PV_CALLEE, disp);
507         M_JMP(REG_RA_CALLER, REG_ITMP3, REG_ZERO);
508         M_NOP;
509
510         M_DLD(REG_FRESULT, REG_SP, USESTACK_PARAMS);
511
512         M_LDA(REG_SP, REG_SP, (1 + ABI_PARAMARRAY_SLOTS) * 8);
513
514         /* mark trace code */
515
516         M_NOP;
517 }
518 #endif /* !defined(NDEBUG) */
519
520
521 /*
522  * These are local overrides for various environment variables in Emacs.
523  * Please do not remove this and leave it at the end of the file, where
524  * Emacs will automagically detect them.
525  * ---------------------------------------------------------------------
526  * Local variables:
527  * mode: c
528  * indent-tabs-mode: t
529  * c-basic-offset: 4
530  * tab-width: 4
531  * End:
532  * vim:noexpandtab:sw=4:ts=4:
533  */