* Removed all Id tags.
[cacao.git] / src / vm / jit / s390 / md-abi.c
1 /* src/vm/jit/x86_64/md-abi.c - functions for x86_64 Linux 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: Christian Thalinger
28
29    Changes:
30
31 */
32
33
34 #include "config.h"
35 #include "vm/types.h"
36
37 #include "vm/jit/s390/md-abi.h"
38
39 #include "vmcore/descriptor.h"
40 #include "vm/global.h"
41 #include "vm/jit/jit.h"
42
43
44 /* register descripton array **************************************************/
45
46 s4 nregdescint[] = {
47         /*   r0,   itmp1,      a0,      a1,      a2,      a3,      a4,      s0, */
48         REG_TMP, REG_RES, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_SAV,
49         /*   s1,      s2,      s3,      s4,   itmp2,    pv,  ra/itmp3,      sp */
50         REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_RES, REG_RES, REG_RES, REG_RES,
51     REG_END
52 };
53
54 const char *abi_registers_integer_name[] = {
55         "r0", "r1", "r2", "r3",
56         "r4", "r5", "r6", "r7",
57         "r8", "r9", "r10", "r11",
58         "r12", "r13", "r14", "r15"
59 };
60
61 const s4 abi_registers_integer_argument[] = {
62         2, /* r2/a0 */
63         3, /* r3/a1 */
64         4, /* r4/a2 */
65         5, /* r5/a3 */
66         6  /* r6/a4 */
67 };
68
69 const s4 abi_registers_integer_saved[] = {
70         7,  /* r7/s0 */
71         8,  /* r8/s1 */
72         9,  /* r9/s2 */
73         10, /* r10/s3 */
74         11  /* r11/s4 */
75 };
76
77 const s4 abi_registers_integer_temporary[] = {
78         0, /* r0 */
79 };
80
81 s4 nregdescfloat[] = {
82         REG_ARG, REG_TMP, REG_ARG, REG_TMP, REG_SAV, REG_TMP, REG_SAV, REG_TMP,
83         REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP,
84     REG_END
85 };
86
87 const s4 abi_registers_float_argument[] = {
88         0, /* f0/fa0 */
89         2  /* f2/fa2 */
90 };
91
92 const s4 abi_registers_float_saved[] = {
93         4, /* f4 */
94         6  /* f6 */
95 };
96
97 const s4 abi_registers_float_temporary[] = {
98         1,  /* f1/ft0 */
99         3,  /* f3/ft1 */
100         5,  /* f5/ft2 */
101         7,  /* f7/ft3 */
102         8,  /* f8/ft4 */
103         9,  /* f9/ft5 */
104         10, /* f10/ft6 */
105         11, /* f11/ft7 */
106         12, /* f12/ft8 */
107         13, /* f13/ft9 */
108         14, /* f14/ft10 */
109         15  /* f15/ft11 */
110 };
111
112 /* md_param_alloc_intern *******************************************************
113
114    Allocates parameters to registers or stackslots for both native and java
115    methods.
116
117    --- in:
118    slot: size in bytes of a stack slot
119    slots1w: number of stack slots used by a 1 word type parameter
120    slots2w: number of stack slots used by a 2 word type parameter
121
122 *******************************************************************************/
123
124 static void md_param_alloc_intern(methoddesc *md, s4 slot, s4 slots1w, s4 slots2w)
125 {
126         paramdesc *pd;
127         s4         i;
128         s4         iarg;
129         s4         farg;
130         s4         stacksize;
131
132         /* set default values */
133
134         iarg = 0;
135         farg = 0;
136         stacksize = 0;
137
138         /* get params field of methoddesc */
139
140         pd = md->params;
141
142         for (i = 0; i < md->paramcount; i++, pd++) {
143                 switch (md->paramtypes[i].type) {
144                 case TYPE_INT:
145                 case TYPE_ADR:
146                         if (iarg < INT_ARG_CNT) {
147                                 pd->inmemory  = false;
148                                 pd->regoff    = abi_registers_integer_argument[iarg]; 
149                                 pd->index     = iarg;
150                                 iarg++;
151                         }
152                         else {
153                                 pd->inmemory  = true;
154                                 pd->regoff    = stacksize * slot;
155                                 pd->index     = stacksize;
156                                 stacksize += slots1w;
157                         }
158                         break;
159
160                 case TYPE_LNG:
161                         if (iarg < INT_ARG_CNT - 1) {
162                                 /* _ALIGN(iarg); */
163                                 pd->inmemory  = false;
164                                 pd->regoff    = 
165                                         PACK_REGS(abi_registers_integer_argument[iarg + 1], 
166                                                           abi_registers_integer_argument[iarg]); 
167                                 pd->index     = PACK_REGS(iarg + 1, iarg);
168                                 iarg += 2;
169                         }
170                         else {
171                                 /* _ALIGN(stacksize); */
172                                 pd->inmemory  = true;
173                                 pd->regoff    = stacksize * slot;
174                                 pd->index     = stacksize;
175                                 iarg          = INT_ARG_CNT;
176                                 stacksize    += slots2w;
177                         }
178                         break;
179
180                 case TYPE_FLT:
181                         if (farg < FLT_ARG_CNT) {
182                                 pd->inmemory  = false;
183                                 pd->regoff    = abi_registers_float_argument[farg]; 
184                                 pd->index     = farg;
185                                 farg++;
186                         }
187                         else {
188                                 pd->inmemory  = true;
189                                 pd->regoff    = stacksize * slot;
190                                 pd->index     = stacksize;
191                                 stacksize += slots1w;
192                         }
193                         break;
194
195                 case TYPE_DBL:
196                         if (farg < FLT_ARG_CNT) {
197                                 pd->inmemory  = false;
198                                 pd->regoff    = abi_registers_float_argument[farg]; 
199                                 pd->index     = farg;
200                                 farg++;
201                         }
202                         else {
203                                 /* _ALIGN(stacksize); */
204                                 pd->inmemory  = true;
205                                 pd->regoff    = stacksize * slot;
206                                 pd->index     = stacksize;
207                                 stacksize    += slots2w;
208                         }
209                         break;
210
211                 default:
212                         assert(0);
213                 }
214         }
215
216         /* Since A0+A1/FA0 are used for passing return
217            values, this argument register usage has to be regarded,
218            too. */
219
220         if (IS_INT_LNG_TYPE(md->returntype.type)) {
221                 if (iarg < (IS_2_WORD_TYPE(md->returntype.type) ? 2 : 1))
222                         iarg = IS_2_WORD_TYPE(md->returntype.type) ? 2 : 1;
223         }
224         else {
225                 if (IS_FLT_DBL_TYPE(md->returntype.type))
226                         if (farg < 1)
227                                 farg = 1;
228         }
229
230         /* fill register and stack usage */
231
232         md->argintreguse = iarg;
233         md->argfltreguse = farg;
234         md->memuse = stacksize;
235 }
236
237 void md_param_alloc(methoddesc *md)
238 {
239         md_param_alloc_intern(md, 8, 1, 1);
240 }
241
242 void md_param_alloc_native(methoddesc *md)
243 {
244         md_param_alloc_intern(md, 4, 1, 2);
245 }
246
247
248 /* md_return_alloc *************************************************************
249
250    Precolor the Java Stackelement containing the Return Value. Only
251    for float/ double types straight forward possible, since INT_LNG
252    types use "reserved" registers Float/Double values use a00 as
253    return register.
254
255    --- in
256    jd:                      jitdata of the current method
257    stackslot:               Java Stackslot to contain the Return Value
258
259    --- out
260    if precoloring was possible:
261    VAR(stackslot->varnum)->flags     = PREALLOC
262                                      ->vv.regoff = [REG_RESULT|REG_FRESULT]
263    rd->arg[flt|int]reguse   set to a value according the register usage
264
265    NOTE: Do not pass a LOCALVAR in stackslot->varnum.
266
267 *******************************************************************************/
268
269 void md_return_alloc(jitdata *jd, stackptr stackslot)
270 {
271         methodinfo   *m;
272         registerdata *rd;
273         methoddesc   *md;
274
275         /* get required compiler data */
276
277         m  = jd->m;
278         rd = jd->rd;
279
280         md = m->parseddesc;
281
282         /* In Leafmethods Local Vars holding parameters are precolored to
283            their argument register -> so leafmethods with paramcount > 0
284            could already use R3 == a00! */
285
286         if (!jd->isleafmethod || (md->paramcount == 0)) {
287                 /* Only precolor the stackslot, if it is not a SAVEDVAR <->
288                    has not to survive method invokations. */
289
290                 if (!(stackslot->flags & SAVEDVAR)) {
291                         VAR(stackslot->varnum)->flags = PREALLOC;
292
293                         if (IS_INT_LNG_TYPE(md->returntype.type)) {
294                                 if (!IS_2_WORD_TYPE(md->returntype.type)) {
295                                         if (rd->argintreguse < 1)
296                                                 rd->argintreguse = 1;
297
298                                         VAR(stackslot->varnum)->vv.regoff = REG_RESULT;
299                                 }
300                                 else {
301                                         if (rd->argintreguse < 2)
302                                                 rd->argintreguse = 2;
303
304                                         VAR(stackslot->varnum)->vv.regoff = REG_RESULT_PACKED;
305                                 }
306                         }
307                         else { /* float/double */
308                                 if (rd->argfltreguse < 1)
309                                         rd->argfltreguse = 1;
310
311                                 VAR(stackslot->varnum)->vv.regoff = REG_FRESULT;
312                         }
313                 }
314         }
315 }
316
317
318 /*
319  * These are local overrides for various environment variables in Emacs.
320  * Please do not remove this and leave it at the end of the file, where
321  * Emacs will automagically detect them.
322  * ---------------------------------------------------------------------
323  * Local variables:
324  * mode: c
325  * indent-tabs-mode: t
326  * c-basic-offset: 4
327  * tab-width: 4
328  * End:
329  */