* src/vm/jit/codegen-common.c (toolbox/list.h): Added.
[cacao.git] / src / vm / jit / mips / emit.c
1 /* src/vm/jit/mips/emit.c - MIPS 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
29    Changes:
30
31    $Id: emitfuncs.c 4398 2006-01-31 23:43:08Z twisti $
32
33 */
34
35
36 #include "config.h"
37
38 #include "vm/types.h"
39
40 #include "md-abi.h"
41
42 #include "vm/jit/mips/codegen.h"
43
44 #if defined(ENABLE_THREADS)
45 # include "threads/native/lock.h"
46 #endif
47
48 #include "vm/exceptions.h"
49 #include "vm/options.h"
50 #include "vm/stringlocal.h" /* XXX for gen_resolvebranch */
51 #include "vm/jit/abi-asm.h"
52 #include "vm/jit/asmpart.h"
53 #include "vm/jit/dseg.h"
54 #include "vm/jit/emit-common.h"
55 #include "vm/jit/jit.h"
56 #include "vm/jit/replace.h"
57
58
59 /* emit_load *******************************************************************
60
61    Emits a possible load of an operand.
62
63 *******************************************************************************/
64
65 s4 emit_load(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg)
66 {
67         codegendata  *cd;
68         s4            disp;
69         s4            reg;
70
71         /* get required compiler data */
72
73         cd = jd->cd;
74
75         if (src->flags & INMEMORY) {
76                 COUNT_SPILLS;
77
78                 disp = src->vv.regoff * 8;
79
80                 if (IS_FLT_DBL_TYPE(src->type)) {
81                         if (IS_2_WORD_TYPE(src->type))
82                                 M_DLD(tempreg, REG_SP, disp);
83                         else
84                                 M_FLD(tempreg, REG_SP, disp);
85                 }
86                 else
87                         M_LLD(tempreg, REG_SP, disp);
88
89                 reg = tempreg;
90         }
91         else
92                 reg = src->vv.regoff;
93
94         return reg;
95 }
96
97
98 /* emit_store ******************************************************************
99
100    Emits a possible store to variable.
101
102 *******************************************************************************/
103
104 void emit_store(jitdata *jd, instruction *iptr, varinfo *dst, s4 d)
105 {
106         codegendata  *cd;
107         s4            disp;
108
109         /* get required compiler data */
110
111         cd = jd->cd;
112
113         if (dst->flags & INMEMORY) {
114                 COUNT_SPILLS;
115
116                 disp = dst->vv.regoff * 8;
117
118                 if (IS_FLT_DBL_TYPE(dst->type)) {
119                         if (IS_2_WORD_TYPE(dst->type))
120                                 M_DST(d, REG_SP, disp);
121                         else
122                                 M_FST(d, REG_SP, disp);
123                 }
124                 else
125                         M_LST(d, REG_SP, disp);
126         }
127 }
128
129
130 /* emit_copy *******************************************************************
131
132    Generates a register/memory to register/memory copy.
133
134 *******************************************************************************/
135
136 void emit_copy(jitdata *jd, instruction *iptr, varinfo *src, varinfo *dst)
137 {
138         codegendata  *cd;
139         s4            s1, d;
140
141         /* get required compiler data */
142
143         cd = jd->cd;
144
145         if ((src->vv.regoff != dst->vv.regoff) ||
146                 ((src->flags ^ dst->flags) & INMEMORY)) {
147
148                 /* If one of the variables resides in memory, we can eliminate
149                    the register move from/to the temporary register with the
150                    order of getting the destination register and the load. */
151
152                 if (IS_INMEMORY(src->flags)) {
153                         d = codegen_reg_of_var(iptr->opc, dst, REG_IFTMP);
154                         s1 = emit_load(jd, iptr, src, d);
155                 }
156                 else {
157                         s1 = emit_load(jd, iptr, src, REG_IFTMP);
158                         d = codegen_reg_of_var(iptr->opc, dst, s1);
159                 }
160
161                 if (s1 != d) {
162                         if (IS_FLT_DBL_TYPE(src->type)) {
163                                 if (IS_2_WORD_TYPE(src->type))
164                                         M_DMOV(s1, d);
165                                 else
166                                         M_FMOV(s1, d);
167                         }
168                         else
169                                 M_MOV(s1, d);
170                 }
171
172                 emit_store(jd, iptr, dst, d);
173         }
174 }
175
176
177 /* emit_iconst *****************************************************************
178
179    XXX
180
181 *******************************************************************************/
182
183 void emit_iconst(codegendata *cd, s4 d, s4 value)
184 {
185         s4 disp;
186
187     if ((value >= -32768) && (value <= 32767))
188         M_IADD_IMM(REG_ZERO, value, d);
189         else if ((value >= 0) && (value <= 0xffff))
190         M_OR_IMM(REG_ZERO, value, d);
191         else {
192         disp = dseg_add_s4(cd, value);
193         M_ILD(d, REG_PV, disp);
194     }
195 }
196
197
198 /* emit_lconst *****************************************************************
199
200    XXX
201
202 *******************************************************************************/
203
204 void emit_lconst(codegendata *cd, s4 d, s8 value)
205 {
206         s4 disp;
207
208         if ((value >= -32768) && (value <= 32767))
209                 M_LADD_IMM(REG_ZERO, value, d);
210         else if ((value >= 0) && (value <= 0xffff))
211                 M_OR_IMM(REG_ZERO, value, d);
212         else {
213                 disp = dseg_add_s8(cd, value);
214                 M_LLD(d, REG_PV, disp);
215         }
216 }
217
218
219 /* emit_arithmetic_check *******************************************************
220
221    Emit an ArithmeticException check.
222
223 *******************************************************************************/
224
225 void emit_arithmetic_check(codegendata *cd, s4 reg)
226 {
227 #if 0
228         M_BEQZ(reg, 0);
229         codegen_add_arithmeticexception_ref(cd);
230         M_NOP;
231 #else
232         M_BNEZ(reg, 6);
233         M_NOP;
234
235         M_LUI(REG_ITMP3, 0);
236         M_OR_IMM(REG_ITMP3, 0, REG_ITMP3);
237         codegen_add_arithmeticexception_ref(cd);
238         M_AADD(REG_PV, REG_ITMP3, REG_ITMP3);
239         M_JMP(REG_ITMP3);
240         M_NOP;
241 #endif
242 }
243
244
245 /* emit_arrayindexoutofbounds_check ********************************************
246
247    Emit an ArrayIndexOutOfBoundsException check.
248
249 *******************************************************************************/
250
251 void emit_arrayindexoutofbounds_check(codegendata *cd, s4 s1, s4 s2)
252 {
253         if (checkbounds) {
254                 M_ILD(REG_ITMP3, s1, OFFSET(java_arrayheader, size));
255                 M_CMPULT(s2, REG_ITMP3, REG_ITMP3);
256
257 #if 0
258                 M_BEQZ(REG_ITMP3, 0);
259                 codegen_add_arrayindexoutofboundsexception_ref(cd, s2);
260                 M_NOP;
261 #else
262                 M_BNEZ(REG_ITMP3, 6);
263                 M_NOP;
264
265                 M_LUI(REG_ITMP3, 0);
266                 M_OR_IMM(REG_ITMP3, 0, REG_ITMP3);
267                 codegen_add_arrayindexoutofboundsexception_ref(cd, s2);
268                 M_AADD(REG_PV, REG_ITMP3, REG_ITMP3);
269                 M_JMP(REG_ITMP3);
270                 M_NOP;
271 #endif
272         }
273 }
274
275
276 /* emit_arraystore_check *******************************************************
277
278    Emit an ArrayStoreException check.
279
280 *******************************************************************************/
281
282 void emit_arraystore_check(codegendata *cd, s4 reg)
283 {
284 #if 0
285         M_BEQZ(reg, 0);
286         codegen_add_arraystoreexception_ref(cd);
287         M_NOP;
288 #else
289         M_BNEZ(reg, 6);
290         M_NOP;
291
292         M_LUI(REG_ITMP3, 0);
293         M_OR_IMM(REG_ITMP3, 0, REG_ITMP3);
294         codegen_add_arraystoreexception_ref(cd);
295         M_AADD(REG_PV, REG_ITMP3, REG_ITMP3);
296         M_JMP(REG_ITMP3);
297         M_NOP;
298 #endif
299 }
300
301
302 /* emit_classcast_check ********************************************************
303
304    Emit a ClassCastException check.
305
306 *******************************************************************************/
307
308 void emit_classcast_check(codegendata *cd, s4 condition, s4 reg, s4 s1)
309 {
310 #if 0
311         M_BNEZ(reg, 0);
312         codegen_add_classcastexception_ref(cd, s1);
313         M_NOP;
314 #else
315         switch (condition) {
316         case ICMD_IFEQ:
317                 M_BNEZ(reg, 6);
318                 break;
319
320         case ICMD_IFNE:
321                 M_BEQZ(reg, 6);
322                 break;
323
324         case ICMD_IFLE:
325                 M_BGTZ(reg, 6);
326                 break;
327
328         default:
329                 vm_abort("emit_classcast_check: condition %d not found", condition);
330         }
331
332         M_NOP;
333
334         M_LUI(REG_ITMP3, 0);
335         M_OR_IMM(REG_ITMP3, 0, REG_ITMP3);
336         codegen_add_classcastexception_ref(cd, s1);
337         M_AADD(REG_PV, REG_ITMP3, REG_ITMP3);
338         M_JMP(REG_ITMP3);
339         M_NOP;
340 #endif
341 }
342
343
344 /* emit_nullpointer_check ******************************************************
345
346    Emit a NullPointerException check.
347
348 *******************************************************************************/
349
350 void emit_nullpointer_check(codegendata *cd, s4 reg)
351 {
352         if (checknull) {
353 #if 0
354                 M_BEQZ(reg, 0);
355                 codegen_add_nullpointerexception_ref(cd);
356                 M_NOP;
357 #else
358                 M_BNEZ(reg, 6);
359                 M_NOP;
360
361                 M_LUI(REG_ITMP3, 0);
362                 M_OR_IMM(REG_ITMP3, 0, REG_ITMP3);
363                 codegen_add_nullpointerexception_ref(cd);
364                 M_AADD(REG_PV, REG_ITMP3, REG_ITMP3);
365                 M_JMP(REG_ITMP3);
366                 M_NOP;
367 #endif
368         }
369 }
370
371
372 /* emit_exception_check ********************************************************
373
374    Emit an Exception check.
375
376 *******************************************************************************/
377
378 void emit_exception_check(codegendata *cd)
379 {
380 #if 0
381         M_BEQZ(REG_RESULT, 0);
382         codegen_add_fillinstacktrace_ref(cd);
383         M_NOP;
384 #else
385         M_BNEZ(REG_RESULT, 6);
386         M_NOP;
387
388         M_LUI(REG_ITMP3, 0);
389         M_OR_IMM(REG_ITMP3, 0, REG_ITMP3);
390         codegen_add_fillinstacktrace_ref(cd);
391         M_AADD(REG_PV, REG_ITMP3, REG_ITMP3);
392         M_JMP(REG_ITMP3);
393         M_NOP;
394 #endif
395 }
396
397
398 /* emit_exception_stubs ********************************************************
399
400    Generates the code for the exception stubs.
401
402 *******************************************************************************/
403
404 void emit_exception_stubs(jitdata *jd)
405 {
406         codegendata  *cd;
407         registerdata *rd;
408         exceptionref *er;
409         s4            branchmpc;
410         s4            targetmpc;
411         s4            targetdisp;
412         s4            disp;
413
414         /* get required compiler data */
415
416         cd = jd->cd;
417         rd = jd->rd;
418
419         /* generate exception stubs */
420
421         targetdisp = 0;
422
423         for (er = cd->exceptionrefs; er != NULL; er = er->next) {
424                 /* back-patch the branch to this exception code */
425
426                 branchmpc = er->branchpos;
427                 targetmpc = cd->mcodeptr - cd->mcodebase;
428
429                 md_codegen_patch_branch(cd, branchmpc, targetmpc);
430
431                 MCODECHECK(100);
432
433                 /* Check if the exception is an
434                    ArrayIndexOutOfBoundsException.  If so, move index register
435                    into REG_ITMP1. */
436
437                 if (er->reg != -1)
438                         M_MOV(er->reg, REG_ITMP1);
439
440                 /* calcuate exception address */
441
442                 M_LDA(REG_ITMP2_XPC, REG_PV, er->branchpos - 4);
443
444                 /* move function to call into REG_ITMP3 */
445
446                 disp = dseg_add_functionptr(cd, er->function);
447                 M_ALD(REG_ITMP3, REG_PV, disp);
448
449                 if (targetdisp == 0) {
450                         targetdisp = ((u4 *) cd->mcodeptr) - ((u4 *) cd->mcodebase);
451
452                         M_MOV(REG_PV, REG_A0);
453                         M_MOV(REG_SP, REG_A1);
454
455                         if (jd->isleafmethod)
456                                 M_MOV(REG_RA, REG_A2);
457                         else
458                                 M_ALD(REG_A2, REG_SP, (cd->stackframesize - 1) * 8);
459
460                         M_MOV(REG_ITMP2_XPC, REG_A3);
461                         M_MOV(REG_ITMP1, REG_A4);
462
463                         M_ASUB_IMM(REG_SP, 2 * 8, REG_SP);
464                         M_AST(REG_ITMP2_XPC, REG_SP, 0 * 8);
465
466                         if (jd->isleafmethod)
467                                 M_AST(REG_RA, REG_SP, 1 * 8);
468
469                         M_JSR(REG_RA, REG_ITMP3);
470                         M_NOP;
471                         M_MOV(REG_RESULT, REG_ITMP1_XPTR);
472
473                         if (jd->isleafmethod)
474                                 M_ALD(REG_RA, REG_SP, 1 * 8);
475
476                         M_ALD(REG_ITMP2_XPC, REG_SP, 0 * 8);
477                         M_AADD_IMM(REG_SP, 2 * 8, REG_SP);
478
479                         disp = dseg_add_functionptr(cd, asm_handle_exception);
480                         M_ALD(REG_ITMP3, REG_PV, disp);
481                         M_JMP(REG_ITMP3);
482                         M_NOP;
483                 }
484                 else {
485                         disp = (((u4 *) cd->mcodebase) + targetdisp) -
486                                 (((u4 *) cd->mcodeptr) + 1);
487
488                         M_BR(disp);
489                         M_NOP;
490                 }
491         }
492 }
493
494
495 /* emit_patcher_stubs **********************************************************
496
497    Generates the code for the patcher stubs.
498
499 *******************************************************************************/
500
501 void emit_patcher_stubs(jitdata *jd)
502 {
503         codegendata *cd;
504         patchref    *pr;
505         u4           mcode[2];
506         u1          *savedmcodeptr;
507         u1          *tmpmcodeptr;
508         s4           targetdisp;
509         s4           disp;
510
511         /* get required compiler data */
512
513         cd = jd->cd;
514
515         /* generate code patching stub call code */
516
517         targetdisp = 0;
518
519 /*      for (pr = list_first_unsynced(cd->patchrefs); pr != NULL; */
520 /*               pr = list_next_unsynced(cd->patchrefs, pr)) { */
521         for (pr = cd->patchrefs; pr != NULL; pr = pr->next) {
522                 /* check code segment size */
523
524                 MCODECHECK(100);
525
526                 /* Get machine code which is patched back in later. The
527                    call is 2 instruction words long. */
528
529                 tmpmcodeptr = (u1 *) (cd->mcodebase + pr->branchpos);
530
531                 /* We use 2 loads here as an unaligned 8-byte read on 64-bit
532                    MIPS causes a SIGSEGV and using the same code for both
533                    architectures is much better. */
534
535                 mcode[0] = ((u4 *) tmpmcodeptr)[0];
536                 mcode[1] = ((u4 *) tmpmcodeptr)[1];
537
538                 /* Patch in the call to call the following code (done at
539                    compile time). */
540
541                 savedmcodeptr = cd->mcodeptr;   /* save current mcodeptr          */
542                 cd->mcodeptr  = tmpmcodeptr;    /* set mcodeptr to patch position */
543
544                 disp = ((u4 *) savedmcodeptr) - (((u4 *) tmpmcodeptr) + 1);
545
546                 if ((disp < (s4) 0xffff8000) || (disp > (s4) 0x00007fff)) {
547                         *exceptionptr =
548                                 new_internalerror("Jump offset is out of range: %d > +/-%d",
549                                                                   disp, 0x00007fff);
550                         return;
551                 }
552
553                 M_BR(disp);
554                 M_NOP;
555
556                 cd->mcodeptr = savedmcodeptr;   /* restore the current mcodeptr   */
557
558                 /* create stack frame */
559
560                 M_ASUB_IMM(REG_SP, 6 * 8, REG_SP);
561
562                 /* calculate return address and move it onto the stack */
563
564                 M_LDA(REG_ITMP3, REG_PV, pr->branchpos);
565                 M_AST(REG_ITMP3, REG_SP, 5 * 8);
566
567                 /* move pointer to java_objectheader onto stack */
568
569 #if defined(ENABLE_THREADS)
570                 /* create a virtual java_objectheader */
571
572                 (void) dseg_add_unique_address(cd, NULL);                  /* flcword */
573                 (void) dseg_add_unique_address(cd, lock_get_initial_lock_word());
574                 disp = dseg_add_unique_address(cd, NULL);                  /* vftbl   */
575
576                 M_LDA(REG_ITMP3, REG_PV, disp);
577                 M_AST(REG_ITMP3, REG_SP, 4 * 8);
578 #else
579                 /* do nothing */
580 #endif
581
582                 /* move machine code onto stack */
583
584                 disp = dseg_add_s4(cd, mcode[0]);
585                 M_ILD(REG_ITMP3, REG_PV, disp);
586                 M_IST(REG_ITMP3, REG_SP, 3 * 8);
587
588                 disp = dseg_add_s4(cd, mcode[1]);
589                 M_ILD(REG_ITMP3, REG_PV, disp);
590                 M_IST(REG_ITMP3, REG_SP, 3 * 8 + 4);
591
592                 /* move class/method/field reference onto stack */
593
594                 disp = dseg_add_address(cd, pr->ref);
595                 M_ALD(REG_ITMP3, REG_PV, disp);
596                 M_AST(REG_ITMP3, REG_SP, 2 * 8);
597
598                 /* move data segment displacement onto stack */
599
600                 disp = dseg_add_s4(cd, pr->disp);
601                 M_ILD(REG_ITMP3, REG_PV, disp);
602                 M_IST(REG_ITMP3, REG_SP, 1 * 8);
603
604                 /* move patcher function pointer onto stack */
605
606                 disp = dseg_add_address(cd, pr->patcher);
607                 M_ALD(REG_ITMP3, REG_PV, disp);
608                 M_AST(REG_ITMP3, REG_SP, 0 * 8);
609
610                 if (targetdisp == 0) {
611                         targetdisp = ((u4 *) cd->mcodeptr) - ((u4 *) cd->mcodebase);
612
613                         disp = dseg_add_functionptr(cd, asm_patcher_wrapper);
614                         M_ALD(REG_ITMP3, REG_PV, disp);
615                         M_JMP(REG_ITMP3);
616                         M_NOP;
617                 }
618                 else {
619                         disp = (((u4 *) cd->mcodebase) + targetdisp) -
620                                 (((u4 *) cd->mcodeptr) + 1);
621
622                         M_BR(disp);
623                         M_NOP;
624                 }
625         }
626 }
627
628
629 /* emit_replacement_stubs ******************************************************
630
631    Generates the code for the replacement stubs.
632
633 *******************************************************************************/
634
635 void emit_replacement_stubs(jitdata *jd)
636 {
637         codegendata *cd;
638         codeinfo    *code;
639         rplpoint    *rplp;
640         u1          *savedmcodeptr;
641         s4           disp;
642         s4           i;
643
644         /* get required compiler data */
645
646         cd   = jd->cd;
647         code = jd->code;
648
649         rplp = code->rplpoints;
650
651         for (i = 0; i < code->rplpointcount; ++i, ++rplp) {
652                 /* check code segment size */
653
654                 MCODECHECK(100);
655
656                 /* note start of stub code */
657
658                 rplp->outcode = (u1 *) (ptrint) (cd->mcodeptr - cd->mcodebase);
659
660                 /* make machine code for patching */
661
662                 savedmcodeptr = cd->mcodeptr;
663                 cd->mcodeptr  = (u1 *) &(rplp->mcode);
664
665                 disp = (ptrint) ((s4 *) rplp->outcode - (s4 *) rplp->pc) - 1;
666
667                 if ((disp < (s4) 0xffff8000) || (disp > (s4) 0x00007fff)) {
668                         *exceptionptr =
669                                 new_internalerror("Jump offset is out of range: %d > +/-%d",
670                                                                   disp, 0x00007fff);
671                         return;
672                 }
673
674                 M_BR(disp);
675                 M_NOP; /* delay slot */
676
677                 cd->mcodeptr = savedmcodeptr;
678
679                 /* create stack frame - 16-byte aligned */
680
681                 M_ASUB_IMM(REG_SP, 2 * 8, REG_SP);
682
683                 /* push address of `rplpoint` struct */
684
685                 disp = dseg_add_address(cd, rplp);
686                 M_ALD(REG_ITMP3, REG_PV, disp);
687                 M_AST(REG_ITMP3, REG_SP, 0 * 8);
688
689                 /* jump to replacement function */
690
691                 disp = dseg_add_functionptr(cd, asm_replacement_out);
692                 M_ALD(REG_ITMP3, REG_PV, disp);
693                 M_JMP(REG_ITMP3);
694                 M_NOP; /* delay slot */
695         }
696 }
697
698
699 /* emit_verbosecall_enter ******************************************************
700
701    Generates the code for the call trace.
702
703 *******************************************************************************/
704
705 #if !defined(NDEBUG)
706 void emit_verbosecall_enter(jitdata *jd)
707 {
708         methodinfo   *m;
709         codegendata  *cd;
710         registerdata *rd;
711         methoddesc   *md;
712         s4            disp;
713         s4            i, t;
714
715         /* get required compiler data */
716
717         m  = jd->m;
718         cd = jd->cd;
719         rd = jd->rd;
720
721         md = m->parseddesc;
722
723         /* mark trace code */
724
725         M_NOP;
726
727         M_LDA(REG_SP, REG_SP, -(2 + ARG_CNT + TMP_CNT) * 8);
728         M_AST(REG_RA, REG_SP, 1 * 8);
729
730         /* save argument registers */
731
732         for (i = 0; i < INT_ARG_CNT; i++)
733                 M_LST(rd->argintregs[i], REG_SP, (2 + i) * 8);
734
735         for (i = 0; i < FLT_ARG_CNT; i++)
736                 M_DST(rd->argfltregs[i], REG_SP, (2 + INT_ARG_CNT + i) * 8);
737
738         /* save temporary registers for leaf methods */
739
740         if (jd->isleafmethod) {
741                 for (i = 0; i < INT_TMP_CNT; i++)
742                         M_LST(rd->tmpintregs[i], REG_SP, (2 + ARG_CNT + i) * 8);
743
744                 for (i = 0; i < FLT_TMP_CNT; i++)
745                         M_DST(rd->tmpfltregs[i], REG_SP, (2 + ARG_CNT + INT_TMP_CNT + i) * 8);
746         }
747
748         /* load float arguments into integer registers */
749
750         for (i = 0; i < md->paramcount && i < INT_ARG_CNT; i++) {
751                 t = md->paramtypes[i].type;
752
753                 if (IS_FLT_DBL_TYPE(t)) {
754                         if (IS_2_WORD_TYPE(t)) {
755                                 M_DST(rd->argfltregs[i], REG_SP, 0 * 8);
756                                 M_LLD(rd->argintregs[i], REG_SP, 0 * 8);
757                         }
758                         else {
759                                 M_FST(rd->argfltregs[i], REG_SP, 0 * 8);
760                                 M_ILD(rd->argintregs[i], REG_SP, 0 * 8);
761                         }
762                 }
763         }
764
765         disp = dseg_add_address(cd, m);
766         M_ALD(REG_ITMP1, REG_PV, disp);
767         M_AST(REG_ITMP1, REG_SP, 0 * 8);
768         disp = dseg_add_functionptr(cd, builtin_trace_args);
769         M_ALD(REG_ITMP3, REG_PV, disp);
770         M_JSR(REG_RA, REG_ITMP3);
771         M_NOP;
772
773         /* restore argument registers */
774
775         for (i = 0; i < INT_ARG_CNT; i++)
776                 M_LLD(rd->argintregs[i], REG_SP, (2 + i) * 8);
777
778         for (i = 0; i < FLT_ARG_CNT; i++)
779                 M_DLD(rd->argfltregs[i], REG_SP, (2 + INT_ARG_CNT + i) * 8);
780
781         /* restore temporary registers for leaf methods */
782
783         if (jd->isleafmethod) {
784                 for (i = 0; i < INT_TMP_CNT; i++)
785                         M_LLD(rd->tmpintregs[i], REG_SP, (2 + ARG_CNT + i) * 8);
786
787                 for (i = 0; i < FLT_TMP_CNT; i++)
788                         M_DLD(rd->tmpfltregs[i], REG_SP, (2 + ARG_CNT + INT_TMP_CNT + i) * 8);
789         }
790
791         M_ALD(REG_RA, REG_SP, 1 * 8);
792         M_LDA(REG_SP, REG_SP, (2 + ARG_CNT + TMP_CNT) * 8);
793
794         /* mark trace code */
795
796         M_NOP;
797 }
798 #endif /* !defined(NDEBUG) */
799
800
801 /* emit_verbosecall_exit *******************************************************
802
803    Generates the code for the call trace.
804
805 *******************************************************************************/
806
807 #if !defined(NDEBUG)
808 void emit_verbosecall_exit(jitdata *jd)
809 {
810         methodinfo   *m;
811         codegendata  *cd;
812         registerdata *rd;
813         s4            disp;
814
815         /* get required compiler data */
816
817         m  = jd->m;
818         cd = jd->cd;
819         rd = jd->rd;
820
821         /* mark trace code */
822
823         M_NOP;
824
825         M_LDA(REG_SP, REG_SP, -4 * 8);              /* keep stack 16-byte aligned */
826         M_LST(REG_RA, REG_SP, 0 * 8);
827
828         M_LST(REG_RESULT, REG_SP, 1 * 8);
829         M_DST(REG_FRESULT, REG_SP, 2 * 8);
830
831         disp = dseg_add_address(cd, m);
832         M_ALD(rd->argintregs[0], REG_PV, disp);
833
834         M_MOV(REG_RESULT, rd->argintregs[1]);
835         M_DMOV(REG_FRESULT, rd->argfltregs[2]);
836         M_FMOV(REG_FRESULT, rd->argfltregs[3]);
837
838         disp = dseg_add_functionptr(cd, builtin_displaymethodstop);
839         M_ALD(REG_ITMP3, REG_PV, disp);
840         M_JSR(REG_RA, REG_ITMP3);
841         M_NOP;
842
843         M_DLD(REG_FRESULT, REG_SP, 2 * 8);
844         M_LLD(REG_RESULT, REG_SP, 1 * 8);
845
846         M_LLD(REG_RA, REG_SP, 0 * 8);
847         M_LDA(REG_SP, REG_SP, 4 * 8);
848
849         /* mark trace code */
850
851         M_NOP;
852 }
853 #endif /* !defined(NDEBUG) */
854
855
856 /*
857  * These are local overrides for various environment variables in Emacs.
858  * Please do not remove this and leave it at the end of the file, where
859  * Emacs will automagically detect them.
860  * ---------------------------------------------------------------------
861  * Local variables:
862  * mode: c
863  * indent-tabs-mode: t
864  * c-basic-offset: 4
865  * tab-width: 4
866  * End:
867  * vim:noexpandtab:sw=4:ts=4:
868  */