Merged revisions 7632-7638 via svnmerge from
[cacao.git] / src / vm / jit / alpha / md-abi.c
1 /* src/vm/jit/alpha/md-abi.c - functions for Alpha ABI
2
3    Copyright (C) 1996-2005, 2006, 2007 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    $Id: md-abi.c 7637 2007-04-02 20:58:30Z twisti $
26
27 */
28
29
30 #include "config.h"
31 #include "vm/types.h"
32
33 #include "vm/jit/alpha/md-abi.h"
34
35 #include "vm/global.h"
36
37 #include "vm/jit/abi.h"
38
39 #include "vmcore/descriptor.h"
40
41
42 /* register descripton array **************************************************/
43
44 s4 nregdescint[] = {
45         /*   v0,      t0,      t1,      t2,      t3,      t4,      t5,      t6,   */
46         REG_RET, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, 
47
48         /*   t7,      s0,      s1,      s2,      s3,      s4,      s5,      s6,   */
49         REG_TMP, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, 
50
51         /*   a0,      a1,      a2,      a3,      a4,      a5,      t8,      t9,   */
52         REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_TMP, REG_TMP,
53
54         /*  t10,   itmp1,      ra,      pv,      at,   itmp3,      sp,    zero,   */
55         REG_TMP, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES,
56
57         REG_END
58 };
59
60 const char *abi_registers_integer_name[] = {
61         "v0",  "t0",  "t1",  "t2",  "t3",  "t4",  "t5",  "t6",
62         "t7",  "s0",  "s1",  "s2",  "s3",  "s4",  "s5",  "s6",
63         "a0",  "a1",  "a2",  "a3",  "a4",  "a5",  "t8",  "t9",
64         "t10", "t11", "ra",  "pv",  "at",  "gp",  "sp",  "zero"
65 };
66
67 const s4 abi_registers_integer_argument[] = {
68         16, /* a0  */
69         17, /* a1  */
70         18, /* a2  */
71         19, /* a3  */
72         20, /* a4  */
73         21, /* a5  */
74 };
75
76 const s4 abi_registers_integer_saved[] = {
77         9,  /* s0  */
78         10, /* s1  */
79         11, /* s2  */
80         12, /* s3  */
81         13, /* s4  */
82         14, /* s5  */
83         15, /* s6  */
84 };
85
86 const s4 abi_registers_integer_temporary[] = {
87         1,  /* t0  */
88         2,  /* t1  */
89         3,  /* t2  */
90         4,  /* t3  */
91         5,  /* t4  */
92         6,  /* t5  */
93         7,  /* t6  */
94         8,  /* t7  */
95         22, /* t8  */
96         23, /* t9  */
97         24, /* t10 */
98 };
99
100
101 s4 nregdescfloat[] = {
102         REG_RET, REG_TMP, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_SAV,
103         REG_SAV, REG_SAV, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, 
104         REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_TMP, REG_TMP,
105         REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_RES, REG_RES, REG_RES, REG_RES,
106         REG_END
107 };
108
109
110 /* md_param_alloc **************************************************************
111
112    Allocate the parameters of the given method descriptor according to the
113    calling convention of the platform.
114
115 *******************************************************************************/
116
117 void md_param_alloc(methoddesc *md)
118 {
119         paramdesc *pd;
120         s4         i;
121         s4         reguse;
122         s4         stacksize;
123
124         /* set default values */
125
126         reguse = 0;
127         stacksize = 0;
128
129         /* get params field of methoddesc */
130
131         pd = md->params;
132
133         for (i = 0; i < md->paramcount; i++, pd++) {
134                 switch (md->paramtypes[i].type) {
135                 case TYPE_INT:
136                 case TYPE_ADR:
137                 case TYPE_LNG:
138                         if (i < INT_ARG_CNT) {
139                                 pd->inmemory = false;
140                                 pd->regoff   = reguse;
141                                 reguse++;
142                                 md->argintreguse = reguse;
143                         }
144                         else {
145                                 pd->inmemory = true;
146                                 pd->regoff   = stacksize;
147                                 stacksize++;
148                         }
149                         break;
150
151                 case TYPE_FLT:
152                 case TYPE_DBL:
153                         if (i < FLT_ARG_CNT) {
154                                 pd->inmemory = false;
155                                 pd->regoff   = reguse;
156                                 reguse++;
157                                 md->argfltreguse = reguse;
158                         }
159                         else {
160                                 pd->inmemory = true;
161                                 pd->regoff   = stacksize;
162                                 stacksize++;
163                         }
164                         break;
165                 }
166         }
167
168         /* fill register and stack usage */
169
170         md->memuse = stacksize;
171 }
172
173
174 /* md_param_alloc_native *******************************************************
175
176    Pre-allocate arguments according to the native ABI.
177
178 *******************************************************************************/
179
180 void md_param_alloc_native(methoddesc *md)
181 {
182         /* On Alpha we use the same ABI for JIT method calls as for native
183            method calls. */
184
185         md_param_alloc(md);
186 }
187
188
189 /* md_return_alloc *************************************************************
190
191    Precolor the Java Stackelement containing the Return Value. Since
192    alpha has a dedicated return register (not an reused arg or
193    reserved reg), this is striaghtforward possible, as long, as this
194    stackelement does not have to survive a method invokation
195    (SAVEDVAR)
196
197    --- in
198    jd:                      jitdata of the current method
199    stackslot:               Java Stackslot to contain the Return Value
200    
201    --- out
202    if precoloring was possible:
203    VAR(stackslot->varnum)->flags       = PREALLOC
204                                      ->vv.regoff   = [REG_RESULT|REG_FRESULT]
205    rd->arg[flt|int]reguse   set to a value according the register usage
206
207    NOTE: Do not pass a LOCALVAR in stackslot->varnum.
208 *******************************************************************************/
209
210 void md_return_alloc(jitdata *jd, stackptr stackslot)
211 {
212         methodinfo *m;
213         methoddesc *md;
214
215         /* get required compiler data */
216
217         m = jd->m;
218
219         md = m->parseddesc;
220
221         /* Only precolor the stackslot, if it is not a SAVEDVAR <-> has
222            not to survive method invokations. */
223
224         if (!(stackslot->flags & SAVEDVAR)) {
225
226                 VAR(stackslot->varnum)->flags = PREALLOC;
227
228                 if (IS_INT_LNG_TYPE(md->returntype.type))
229                         VAR(stackslot->varnum)->vv.regoff = REG_RESULT;
230                 else
231                         VAR(stackslot->varnum)->vv.regoff = REG_FRESULT;
232         }
233 }
234
235
236 /*
237  * These are local overrides for various environment variables in Emacs.
238  * Please do not remove this and leave it at the end of the file, where
239  * Emacs will automagically detect them.
240  * ---------------------------------------------------------------------
241  * Local variables:
242  * mode: c
243  * indent-tabs-mode: t
244  * c-basic-offset: 4
245  * tab-width: 4
246  * End:
247  */