c0e94dd979b7dd4cab177237ddf657adf0ba292a
[cacao.git] / src / vm / jit / i386 / md-abi.c
1 /* src/vm/jit/i386/md-abi.c - functions for i386 Linux 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 8210 2007-07-18 12:51:00Z twisti $
26
27 */
28
29
30 #include "config.h"
31 #include "vm/types.h"
32
33 #include "vm/jit/i386/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     REG_RET, REG_RES, REG_RES, REG_TMP, REG_RES, REG_SAV, REG_SAV, REG_SAV,
46     REG_END
47 };
48
49 const char *abi_registers_integer_name[] = {
50         "eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi"
51 };
52
53 const s4 abi_registers_integer_argument[] = {
54         -1,
55 };
56
57 const s4 abi_registers_integer_saved[] = {
58         5, /* s0 */
59         6, /* s1 */
60         7, /* s2 */
61 };
62
63 const s4 abi_registers_integer_temporary[] = {
64         3, /* t0 */
65 };
66
67
68 s4 nregdescfloat[] = {
69  /* rounding problems with callee saved registers */
70  /* REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_TMP, REG_TMP, REG_RES, REG_RES, */
71  /* REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_RES, REG_RES, */
72     REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES,
73     REG_END
74 };
75
76 const s4 abi_registers_float_argument[] = {
77         -1,
78 };
79
80 const s4 abi_registers_float_saved[] = {
81         -1,
82 };
83
84 const s4 abi_registers_float_temporary[] = {
85         -1,
86 };
87
88
89 /* md_param_alloc **************************************************************
90
91    Allocate Arguments to Stackslots according the Calling Conventions
92
93    --- in
94    md->paramcount:           Number of arguments for this method
95    md->paramtypes[].type:    Argument types
96    
97    --- out
98    md->params[].inmemory:    Argument spilled on stack
99    md->params[].regoff:      Stack offset or rd->arg[int|flt]regs index
100    md->memuse:               Stackslots needed for argument spilling
101    md->argintreguse:         max number of integer arguments used
102    md->argfltreguse:         max number of float arguments used
103
104 *******************************************************************************/
105
106 void md_param_alloc(methoddesc *md)
107 {
108         paramdesc *pd;
109         int        stacksize;
110         int        i;
111
112         pd = md->params;
113         stacksize = 0;
114
115         for (i = 0; i < md->paramcount; i++, pd++) {
116                 pd->inmemory = true;
117                 pd->index    = stacksize;
118                 pd->regoff   = stacksize * 8;
119                 stacksize++;
120         }
121
122         md->memuse       = stacksize;
123         md->argintreguse = 0;
124         md->argfltreguse = 0;
125 }
126
127
128 /* md_param_alloc_native *******************************************************
129
130    Pre-allocate arguments according the native ABI.
131
132 *******************************************************************************/
133
134 void md_param_alloc_native(methoddesc *md)
135 {
136         paramdesc *pd;
137         int        stacksize;
138         int        i;
139
140         pd = md->params;
141         stacksize = 0;
142
143         for (i = 0; i < md->paramcount; i++, pd++) {
144                 pd->inmemory  = true;
145                 pd->index     = stacksize;
146                 pd->regoff    = stacksize * 4;
147                 stacksize    += IS_2_WORD_TYPE(md->paramtypes[i].type) ? 2 : 1;
148         }
149
150         md->memuse       = stacksize;
151         md->argintreguse = 0;
152         md->argfltreguse = 0;
153 }
154
155
156 /* md_return_alloc *************************************************************
157
158    No straight forward precoloring of the Java Stackelement containing
159    the return value possible for i386, since it uses "reserved"
160    registers for return values
161
162 *******************************************************************************/
163
164 void md_return_alloc(jitdata *jd, stackptr stackslot)
165 {
166         /* nothing */
167 }
168
169
170 /*
171  * These are local overrides for various environment variables in Emacs.
172  * Please do not remove this and leave it at the end of the file, where
173  * Emacs will automagically detect them.
174  * ---------------------------------------------------------------------
175  * Local variables:
176  * mode: c
177  * indent-tabs-mode: t
178  * c-basic-offset: 4
179  * tab-width: 4
180  * End:
181  */