* src/vm/jit/x86_64/codegen.c (codegen): Use jd->isleafmethod.
[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 5112 2006-07-12 13:52:08Z twisti $
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    m:                       Methodinfo of current method
146    return_type:             Return Type of the Method (TYPE_INT.. TYPE_ADR)
147                                                         TYPE_VOID is not allowed!
148    stackslot:               Java Stackslot to contain the Return Value
149
150    --- out
151    if precoloring was possible:
152    stackslot->varkind       =ARGVAR
153                         ->varnum        =-1
154                         ->flags         =0
155                         ->regoff        =[REG_RESULT, (REG_RESULT2/REG_RESULT), REG_FRESULT]
156    rd->arg[flt|int]reguse   set to a value according the register usage
157
158 *******************************************************************************/
159
160 void md_return_alloc(jitdata *jd, stackptr stackslot)
161 {
162         methodinfo   *m;
163         registerdata *rd;
164         methoddesc   *md;
165
166         /* get required compiler data */
167
168         m  = jd->m;
169         rd = jd->rd;
170
171         md = m->parseddesc;
172
173         /* precoloring only straightforward possible with flt/dbl types
174            For Address/Integer/Long REG_RESULT == rax == REG_ITMP1 and so
175            could be destroyed if the return value Stack Slot "lives too
176            long" */
177
178         if (IS_FLT_DBL_TYPE(md->returntype.type)) {
179                 /* In Leafmethods Local Vars holding parameters are precolored
180                    to their argument register -> so leafmethods with
181                    paramcount > 0 could already use a00! */
182
183                 if (!jd->isleafmethod || (md->paramcount == 0)) {
184                         /* Only precolor the stackslot, if it is not a SAVEDVAR
185                            <-> has not to survive method invokations */
186
187                         if (!(stackslot->flags & SAVEDVAR)) {
188                                 stackslot->varkind = ARGVAR;
189                                 stackslot->varnum  = -1;
190                                 stackslot->flags   = 0;
191
192                             /* float/double */
193                                 if (rd->argfltreguse < 1)
194                                         rd->argfltreguse = 1;
195
196                                 stackslot->regoff = REG_FRESULT;
197                         }
198                 }
199         }
200 }
201
202
203 /*
204  * These are local overrides for various environment variables in Emacs.
205  * Please do not remove this and leave it at the end of the file, where
206  * Emacs will automagically detect them.
207  * ---------------------------------------------------------------------
208  * Local variables:
209  * mode: c
210  * indent-tabs-mode: t
211  * c-basic-offset: 4
212  * tab-width: 4
213  * End:
214  */