* src/vm/jit/powerpc/netbsd/md-abi.c: Blindly ported to
[cacao.git] / src / vm / jit / x86_64 / 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    $Id: md-abi.c 5634 2006-10-02 14:18:04Z edwin $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "vm/jit/x86_64/md-abi.h"
40
41 #include "vm/descriptor.h"
42 #include "vm/global.h"
43
44
45 /* register descripton array **************************************************/
46
47 s4 nregdescint[] = {
48     REG_RET, REG_ARG, REG_ARG, REG_TMP, REG_RES, REG_SAV, REG_ARG, REG_ARG,
49     REG_ARG, REG_ARG, REG_RES, REG_RES, REG_SAV, REG_SAV, REG_SAV, REG_SAV,
50     REG_END
51 };
52
53
54 s4 nregdescfloat[] = {
55     REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG, REG_ARG,
56     REG_RES, REG_RES, REG_RES, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP,
57     REG_END
58 };
59
60
61 /* md_param_alloc **************************************************************
62
63    XXX
64
65 *******************************************************************************/
66
67 void md_param_alloc(methoddesc *md)
68 {
69         paramdesc *pd;
70         s4         i;
71         s4         iarg;
72         s4         farg;
73         s4         stacksize;
74
75         /* set default values */
76
77         iarg = 0;
78         farg = 0;
79         stacksize = 0;
80
81         /* get params field of methoddesc */
82
83         pd = md->params;
84
85         for (i = 0; i < md->paramcount; i++, pd++) {
86                 switch (md->paramtypes[i].type) {
87                 case TYPE_INT:
88                 case TYPE_ADR:
89                 case TYPE_LNG:
90                         if (iarg < INT_ARG_CNT) {
91                                 pd->inmemory = false;
92                                 pd->regoff   = iarg;
93                         }
94                         else {
95                                 pd->inmemory = true;
96                                 pd->regoff   = stacksize;
97                         }
98                         if (iarg < INT_ARG_CNT)
99                                 iarg++;
100                         else
101                                 stacksize++;
102                         break;
103
104                 case TYPE_FLT:
105                 case TYPE_DBL:
106                         if (farg < FLT_ARG_CNT) {
107                                 pd->inmemory = false;
108                                 pd->regoff   = farg;
109                         }
110                         else {
111                                 pd->inmemory = true;
112                                 pd->regoff   = stacksize;
113                         }
114                         if (farg < FLT_ARG_CNT)
115                                 farg++;
116                         else
117                                 stacksize++;
118                         break;
119                 }
120         }
121
122         /* Since XMM0 (==A0) is used for passing return values, this
123            argument register usage has to be regarded, too. */
124
125         if (IS_FLT_DBL_TYPE(md->returntype.type))
126                 if (farg < 1)
127                         farg = 1;
128
129         /* fill register and stack usage */
130
131         md->argintreguse = iarg;
132         md->argfltreguse = farg;
133         md->memuse       = stacksize;
134 }
135
136
137 /* md_return_alloc *************************************************************
138
139    Precolor the Java Stackelement containing the Return Value. Only
140    for float/ double types straight forward possible, since INT_LNG
141    types use "reserved" registers Float/Double values use a00 as
142    return register.
143
144    --- in
145    jd:                      jitdata of the current method
146    stackslot:               Java Stackslot to contain the Return Value
147
148    --- out
149    if precoloring was possible:
150    VAR(stackslot->varnum)->flags     = PREALLOC
151                                      ->vv.regoff = [REG_RESULT|REG_FRESULT]
152    rd->arg[flt|int]reguse   set to a value according the register usage
153
154    NOTE: Do not pass a LOCALVAR in stackslot->varnum.
155
156 *******************************************************************************/
157
158 void md_return_alloc(jitdata *jd, stackptr stackslot)
159 {
160         methodinfo   *m;
161         registerdata *rd;
162         methoddesc   *md;
163
164         /* get required compiler data */
165
166         m  = jd->m;
167         rd = jd->rd;
168
169         md = m->parseddesc;
170
171         /* precoloring only straightforward possible with flt/dbl types
172            For Address/Integer/Long REG_RESULT == rax == REG_ITMP1 and so
173            could be destroyed if the return value Stack Slot "lives too
174            long" */
175
176         if (IS_FLT_DBL_TYPE(md->returntype.type)) {
177                 /* In Leafmethods Local Vars holding parameters are precolored
178                    to their argument register -> so leafmethods with
179                    paramcount > 0 could already use a00! */
180
181                 if (!jd->isleafmethod || (md->paramcount == 0)) {
182                         /* Only precolor the stackslot, if it is not a SAVEDVAR
183                            <-> has not to survive method invokations */
184
185                         if (!(stackslot->flags & SAVEDVAR)) {
186
187                                 VAR(stackslot->varnum)->flags = PREALLOC;
188
189                             /* float/double */
190                                 if (rd->argfltreguse < 1)
191                                         rd->argfltreguse = 1;
192
193                                 VAR(stackslot->varnum)->vv.regoff = REG_FRESULT;
194                         }
195                 }
196         }
197 }
198
199
200 /*
201  * These are local overrides for various environment variables in Emacs.
202  * Please do not remove this and leave it at the end of the file, where
203  * Emacs will automagically detect them.
204  * ---------------------------------------------------------------------
205  * Local variables:
206  * mode: c
207  * indent-tabs-mode: t
208  * c-basic-offset: 4
209  * tab-width: 4
210  * End:
211  */