Merged changes from trunk.
[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 5316 2006-09-05 12:24:48Z tbfg $
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_SAV, 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 /* md_param_alloc **************************************************************
92
93    Allocate Arguments to Stackslots according the Calling Conventions
94
95    --- in
96    md->paramcount:           Number of arguments for this method
97    md->paramtypes[].type:    Argument types
98
99    --- out
100    md->params[].inmemory:    Argument spilled on stack
101    md->params[].regoff:      Stack offset or rd->arg[int|flt]regs index
102    md->memuse:               Stackslots needed for argument spilling
103    md->argintreguse:         max number of integer arguments used
104    md->argfltreguse:         max number of float arguments used
105
106 *******************************************************************************/
107
108 void md_param_alloc(methoddesc *md)
109 {
110         paramdesc *pd;
111         s4         i;
112         s4         iarg;
113         s4         farg;
114         s4         stacksize;
115
116         /* set default values */
117
118         iarg = 0;
119         farg = 0;
120         stacksize = LA_SIZE_IN_POINTERS + PA_SIZE_IN_POINTERS;
121
122         /* get params field of methoddesc */
123
124         pd = md->params;
125
126         for (i = 0; i < md->paramcount; i++, pd++) {
127                 switch (md->paramtypes[i].type) {
128                 case TYPE_LNG:
129                 case TYPE_INT:
130                 case TYPE_ADR:
131                         if (iarg < INT_ARG_CNT) {
132                                 pd->inmemory = false;
133                                 pd->regoff = iarg;
134                                 iarg++;
135                         } else {
136                                 pd->inmemory = true;
137                                 pd->regoff = stacksize;
138                                 stacksize++;
139                         }
140                         break;
141                 case TYPE_FLT:
142                         if (farg < FLT_ARG_CNT) {
143                                 pd->inmemory = false;
144                                 pd->regoff = farg;
145                                 farg++;
146                         } else {
147                                 pd->inmemory = true;
148                                 pd->regoff = stacksize;
149                                 stacksize++;
150                         }
151                         break;
152                 case TYPE_DBL:
153                         if (farg < FLT_ARG_CNT) {
154                                 pd->inmemory = false;
155                                 pd->regoff = farg;
156                                 farg++;
157                         } else {
158                                 _ALIGN(stacksize);
159                                 pd->inmemory = true;
160                                 pd->regoff = stacksize;
161                                 stacksize += 2;
162                         }
163                         break;
164                 }
165         }
166
167         /* Since R3/R4, F1 (==A0/A1, A0) are used for passing return values, this */
168         /* argument register usage has to be regarded, too                        */
169         if (IS_INT_LNG_TYPE(md->returntype.type)) {
170                 if (iarg < 1)
171                         iarg = 1;
172         } else if (IS_FLT_DBL_TYPE(md->returntype.type)) {
173                 if (farg < 1)
174                         farg = 1;
175         }
176
177         /* fill register and stack usage */
178
179         md->argintreguse = iarg;
180         md->argfltreguse = farg;
181         md->memuse = stacksize;
182 }
183
184
185 /* md_return_alloc *************************************************************
186
187    Precolor the Java Stackelement containing the Return Value, if
188    possible.  (R3==a00 for int/adr, R4/R3 == a01/a00 for long, F1==a00
189    for float/double)
190
191    --- in
192    m:                       Methodinfo of current method
193    return_type:             Return Type of the Method (TYPE_INT.. TYPE_ADR)
194                             TYPE_VOID is not allowed!
195    stackslot:               Java Stackslot to contain the Return Value
196
197    --- out
198    if precoloring was possible:
199    stackslot->varkind       =ARGVAR
200             ->varnum        =-1
201                 ->flags         =0
202                 ->regoff        =[REG_RESULT, (REG_RESULT2/REG_RESULT), REG_FRESULT]
203    rd->arg[flt|int]reguse   set to a value according the register usage
204
205 *******************************************************************************/
206
207 void md_return_alloc(jitdata *jd, stackptr stackslot)
208 {
209         methodinfo *m;
210         codeinfo *code;
211         registerdata *rd;
212         methoddesc *md;
213
214         /* get required compiler data */
215
216         m = jd->m;
217         code = jd->code;
218         rd = jd->rd;
219
220         md = m->parseddesc;
221         
222         /* In Leafmethods Local Vars holding parameters are precolored to
223            their argument register -> so leafmethods with paramcount > 0
224            could already use R3 == a00! */
225
226         if (!jd->isleafmethod || (md->paramcount == 0)) {
227                 /* Only precolor the stackslot, if it is not a SAVEDVAR <->
228                    has not to survive method invokations. */
229
230                 if (!(stackslot->flags & SAVEDVAR)) {
231                         stackslot->varkind = ARGVAR;
232                         stackslot->varnum = -1;
233                         stackslot->flags = 0;
234
235                         if (IS_INT_LNG_TYPE(md->returntype.type)) {
236                                 if (rd->argintreguse < 1)
237                                         rd->argintreguse = 1;
238
239                                 stackslot->regoff = REG_RESULT;
240                         } else { /* float/double */
241                                 if (rd->argfltreguse < 1)
242                                         rd->argfltreguse = 1;
243
244                                 stackslot->regoff = REG_FRESULT;
245                         }
246                 }
247         }
248 }
249
250
251 /*
252  * These are local overrides for various environment variables in Emacs.
253  * Please do not remove this and leave it at the end of the file, where
254  * Emacs will automagically detect them.
255  * ---------------------------------------------------------------------
256  * Local variables:
257  * mode: c
258  * indent-tabs-mode: t
259  * c-basic-offset: 4
260  * tab-width: 4
261  * End:
262  */