* src/vm/jit/powerpc64/codegen.c: Ported to unified_variables.
[cacao.git] / src / vm / jit / powerpc64 / linux / md-abi.c
1 /* src/vm/jit/powerpc64/linux/md-abi.c - functions for PowerPC64 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: Roland Lezuo
28
29    Changes: 
30
31    $Id: md-abi.c 5618 2006-10-01 23:37:04Z edwin $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "vm/jit/powerpc64/linux/md-abi.h"
40
41 #include "vm/descriptor.h"
42 #include "vm/global.h"
43 #include "vm/jit/abi.h"
44
45
46 #define _ALIGN(a)    do { if ((a) & 1) (a)++; } while (0)
47
48
49 /* register descripton array **************************************************/
50
51 s4 nregdescint[] = {
52         /* zero,      sp,     TOC,   a0/v0,   a0/v1,      a2,      a3,      a4,   */
53         REG_RES, REG_RES, REG_RES, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG,
54
55         /*   a5,      a6,      a7,   itmp1,   itmp2, NO(SYS),      pv,      s0,   */
56         REG_ARG, REG_ARG, REG_ARG, REG_RES, REG_RES, REG_RES, REG_RES, REG_SAV,
57
58         /*itmp3,      t0,      t1,      t2,      t3,      t4,      t5,      t6,   */
59         REG_RES, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP,
60
61         /*   s1,      s2,      s3,      s4,      s5,      s6,      s7,      s8,   */
62         REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV,
63
64         REG_END
65 };
66
67 char *regs[] = {
68         "r0",  "r1",  "r2",  "r3",  "r4",  "r5",  "r6",  "r7",
69         "r8",  "r9",  "r10", "r11", "r12", "r13", "r14", "r15",
70         "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
71         "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
72 };
73
74
75 s4 nregdescfloat[] = {
76         /*ftmp3,  fa0/v0,     fa1,     fa2,     fa3,     fa4,     fa5,     fa6,   */
77         REG_RES, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG,
78
79         /*  fa7,     ft0,     ft1,     ft2,     ft3,     ft4,     fs0,     fs1,   */
80         REG_ARG, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_SAV, REG_SAV,
81
82         /*ftmp1,   ftmp2,     ft5,     ft6,     ft7,     ft8,     ft9,    ft10,   */
83         REG_RES, REG_RES, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP,
84
85         /*  fs2,     fs3,     fs4,     fs5,     fs6,     fs7,     fs8,     fs9    */
86         REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV,
87
88         REG_END
89 };
90
91
92 /* md_param_alloc **************************************************************
93
94    Allocate Arguments to Stackslots according the Calling Conventions
95
96    --- in
97    md->paramcount:           Number of arguments for this method
98    md->paramtypes[].type:    Argument types
99
100    --- out
101    md->params[].inmemory:    Argument spilled on stack
102    md->params[].regoff:      Stack offset or rd->arg[int|flt]regs index
103    md->memuse:               Stackslots needed for argument spilling
104    md->argintreguse:         max number of integer arguments used
105    md->argfltreguse:         max number of float arguments used
106
107 *******************************************************************************/
108
109 void md_param_alloc(methoddesc *md)
110 {
111         paramdesc *pd;
112         s4         i;
113         s4         iarg;
114         s4         farg;
115         s4         stacksize;
116
117         /* set default values */
118
119         iarg = 0;
120         farg = 0;
121         stacksize = LA_SIZE_IN_POINTERS + PA_SIZE_IN_POINTERS;
122
123         /* get params field of methoddesc */
124
125         pd = md->params;
126
127         for (i = 0; i < md->paramcount; i++, pd++) {
128                 switch (md->paramtypes[i].type) {
129                 case TYPE_LNG:
130                 case TYPE_INT:
131                 case TYPE_ADR:
132                         if (iarg < INT_ARG_CNT) {
133                                 pd->inmemory = false;
134                                 pd->regoff = iarg;
135                                 iarg++;
136                         } else {
137                                 pd->inmemory = true;
138                                 pd->regoff = stacksize;
139                                 stacksize++;
140                         }
141                         break;
142                 case TYPE_FLT:
143                         if (farg < FLT_ARG_CNT) {
144                                 pd->inmemory = false;
145                                 pd->regoff = farg;
146                                 farg++;
147                         } else {
148                                 pd->inmemory = true;
149                                 pd->regoff = stacksize;
150                                 stacksize++;
151                         }
152                         break;
153                 case TYPE_DBL:
154                         if (farg < FLT_ARG_CNT) {
155                                 pd->inmemory = false;
156                                 pd->regoff = farg;
157                                 farg++;
158                         } else {
159                                 _ALIGN(stacksize);
160                                 pd->inmemory = true;
161                                 pd->regoff = stacksize;
162                                 stacksize += 2;
163                         }
164                         break;
165                 }
166         }
167
168         /* Since R3/R4, F1 (==A0/A1, A0) are used for passing return values, this */
169         /* argument register usage has to be regarded, too                        */
170         if (IS_INT_LNG_TYPE(md->returntype.type)) {
171                 if (iarg < 1)
172                         iarg = 1;
173         } else if (IS_FLT_DBL_TYPE(md->returntype.type)) {
174                 if (farg < 1)
175                         farg = 1;
176         }
177
178         /* fill register and stack usage */
179
180         md->argintreguse = iarg;
181         md->argfltreguse = farg;
182         md->memuse = stacksize;
183 }
184
185
186 /* md_return_alloc *************************************************************
187
188    Precolor the Java Stackelement containing the Return Value, if
189    possible.  (R3==a00 for int/adr, R4/R3 == a01/a00 for long, F1==a00
190    for float/double)
191
192    --- in
193    m:                       Methodinfo of current method
194    return_type:             Return Type of the Method (TYPE_INT.. TYPE_ADR)
195                             TYPE_VOID is not allowed!
196    stackslot:               Java Stackslot to contain the Return Value
197
198    --- out
199    if precoloring was possible:
200    VAR(stackslot->varnum)->flags     = PREALLOC
201    VAR(stackslot->varnum)->vv.regoff = [REG_RESULT, REG_FRESULT]
202    rd->arg[flt|int]reguse   set to a value according the register usage
203
204 *******************************************************************************/
205
206 void md_return_alloc(jitdata *jd, stackptr stackslot)
207 {
208         methodinfo *m;
209         codeinfo *code;
210         registerdata *rd;
211         methoddesc *md;
212
213         /* get required compiler data */
214
215         m = jd->m;
216         code = jd->code;
217         rd = jd->rd;
218
219         md = m->parseddesc;
220         
221         /* In Leafmethods Local Vars holding parameters are precolored to
222            their argument register -> so leafmethods with paramcount > 0
223            could already use R3 == a00! */
224
225         if (!jd->isleafmethod || (md->paramcount == 0)) {
226                 /* Only precolor the stackslot, if it is not a SAVEDVAR <->
227                    has not to survive method invokations. */
228
229                 if (!(stackslot->flags & SAVEDVAR)) {
230
231                         VAR(stackslot->varnum)->flags = PREALLOC;
232
233                         if (IS_INT_LNG_TYPE(md->returntype.type)) {
234                                 if (rd->argintreguse < 1)
235                                         rd->argintreguse = 1;
236
237                                 VAR(stackslot->varnum)->vv.regoff = REG_RESULT;
238                         } else { /* float/double */
239                                 if (rd->argfltreguse < 1)
240                                         rd->argfltreguse = 1;
241
242                                 VAR(stackslot->varnum)->vv.regoff = REG_FRESULT;
243                         }
244                 }
245         }
246 }
247
248
249 /*
250  * These are local overrides for various environment variables in Emacs.
251  * Please do not remove this and leave it at the end of the file, where
252  * Emacs will automagically detect them.
253  * ---------------------------------------------------------------------
254  * Local variables:
255  * mode: c
256  * indent-tabs-mode: t
257  * c-basic-offset: 4
258  * tab-width: 4
259  * End:
260  */