Merged r5476 from trunk:
[cacao.git] / src / vm / jit / sparc64 / md-abi.c
1 /* src/vm/jit/sparc64/md-abi.c - functions for Sparc ABI
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: Alexander Jordan
28
29    Changes:
30
31    $Id: md-abi.h 4357 2006-01-22 23:33:38Z twisti $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "vm/jit/sparc64/md-abi.h"
40
41 #include "vm/descriptor.h"
42 #include "vm/global.h"
43 #include "vm/jit/abi.h"
44
45
46 /* register descripton array **************************************************/
47
48 /* callee point-of-view, after SAVE has been called */
49 s4 nregdescint[] = {
50         /* zero  itmp1/g1 itmp2/g2 itmp3/g3 temp/g4  temp/g5  sys/g6   sys/g7 */  
51         REG_RES, REG_RES, REG_RES, REG_RES, REG_TMP, REG_TMP, REG_RES, REG_RES,
52         
53         /* o0    o1       o2       o3       o4       pv/o5    sp/o6    o7/ra  */
54         REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_RES, REG_RES, REG_RES,
55         
56         /* l0    l1       l2       l3       l4       l5       l6       l7     */
57         REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV,
58         
59         /* i0    i1       i2       i3       i4       pv/i5    fp/i6    ra/i7  */
60         REG_RET, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_RES, REG_RES, REG_RES,
61         REG_END
62         
63         /* XXX i1 - i4: SAV OR ARG ??? */
64 };
65
66 s4 nregdescfloat[] = {
67         REG_RET, REG_RES, REG_RES, REG_RES, REG_TMP, REG_TMP, REG_TMP, REG_TMP,
68         REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_SAV, REG_SAV, REG_SAV, REG_SAV,
69         REG_END
70 };
71
72
73 /* md_param_alloc **************************************************************
74
75    XXX
76
77 *******************************************************************************/
78
79 void md_param_alloc(methoddesc *md)
80 {
81         paramdesc *pd;
82         s4         i;
83         s4         reguse;
84         s4         stacksize;
85
86         /* set default values */
87
88         reguse = 0;
89         stacksize = 0;
90
91         /* get params field of methoddesc */
92
93         pd = md->params;
94
95         for (i = 0; i < md->paramcount; i++, pd++) {
96                 switch (md->paramtypes[i].type) {
97                 case TYPE_INT:
98                 case TYPE_ADR:
99                 case TYPE_LNG:
100                         if (i < INT_ARG_CNT) {
101                                 pd->inmemory = false;
102                                 pd->regoff = reguse;
103                                 reguse++;
104                                 md->argintreguse = reguse;
105
106                         } else {
107                                 pd->inmemory = true;
108                                 pd->regoff = stacksize;
109                                 stacksize++;
110                         }
111                         break;
112                 case TYPE_FLT:
113                 case TYPE_DBL:
114                         if (i < FLT_ARG_CNT) {
115                                 pd->inmemory = false;
116                                 pd->regoff = reguse;
117                                 reguse++;
118                                 md->argfltreguse = reguse;
119                         } else {
120                                 pd->inmemory = true;
121                                 pd->regoff = stacksize;
122                                 stacksize++;
123                         }
124                         break;
125                 }
126         }
127
128         /* fill register and stack usage */
129
130         md->memuse = stacksize;
131 }
132
133
134 /* md_return_alloc *************************************************************
135
136    Precolor the Java Stackelement containing the Return Value. Since
137    alpha has a dedicated return register (not an reused arg or
138    reserved reg), this is striaghtforward possible, as long, as this
139    stackelement does not have to survive a method invokation
140    (SAVEDVAR)
141
142    --- in
143    m:                       Methodinfo of current method
144    return_type:             Return Type of the Method (TYPE_INT.. TYPE_ADR)
145                                                         TYPE_VOID is not allowed!
146    stackslot:               Java Stackslot to contain the Return Value
147    
148    --- out
149    if precoloring was possible:
150    stackslot->varkind       =ARGVAR
151                         ->varnum        =-1
152                         ->flags         =0
153                         ->regoff        =[REG_RESULT, REG_FRESULT]
154
155 *******************************************************************************/
156
157 void md_return_alloc(jitdata *jd, stackptr stackslot)
158 {
159         methodinfo *m;
160         methoddesc *md;
161
162         /* get required compiler data */
163
164         m = jd->m;
165
166         md = m->parseddesc;
167
168         /* Only precolor the stackslot, if it is not a SAVEDVAR <-> has
169            not to survive method invokations. */
170
171
172         if (!(stackslot->flags & SAVEDVAR)) {
173                 stackslot->varkind = ARGVAR;
174                 stackslot->varnum = -1;
175                 stackslot->flags = 0;
176
177                 if (IS_INT_LNG_TYPE(md->returntype.type)) {
178                         stackslot->regoff = REG_RESULT_CALLEE;
179                 } else { /* float/double */
180                         stackslot->regoff = REG_FRESULT;
181                 }
182         }
183 }
184
185
186 /*
187  * These are local overrides for various environment variables in Emacs.
188  * Please do not remove this and leave it at the end of the file, where
189  * Emacs will automagically detect them.
190  * ---------------------------------------------------------------------
191  * Local variables:
192  * mode: c
193  * indent-tabs-mode: t
194  * c-basic-offset: 4
195  * tab-width: 4
196  * End:
197  */