* src/vm/jit/i386/md-abi.c (regs): Renamed to
[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 7334 2007-02-12 00:34:51Z 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
54 s4 nregdescfloat[] = {
55  /* rounding problems with callee saved registers */
56  /* REG_SAV, REG_SAV, REG_SAV, REG_SAV, REG_TMP, REG_TMP, REG_RES, REG_RES, */
57  /* REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_TMP, REG_RES, REG_RES, */
58     REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES, REG_RES,
59     REG_END
60 };
61
62
63 /* md_param_alloc **************************************************************
64
65    Allocate Arguments to Stackslots according the Calling Conventions
66
67    --- in
68    md->paramcount:           Number of arguments for this method
69    md->paramtypes[].type:    Argument types
70    
71    --- out
72    md->params[].inmemory:    Argument spilled on stack
73    md->params[].regoff:      Stack offset or rd->arg[int|flt]regs index
74    md->memuse:               Stackslots needed for argument spilling
75    md->argintreguse:         max number of integer arguments used
76    md->argfltreguse:         max number of float arguments used
77
78 *******************************************************************************/
79
80 void md_param_alloc(methoddesc *md)
81 {
82         paramdesc *pd;
83         s4        stacksize;
84         s4        i;
85
86         pd = md->params;
87         stacksize = 0;
88
89         for (i = 0; i < md->paramcount; i++, pd++) {
90                 pd->inmemory = true;
91                 pd->regoff = stacksize;
92                 stacksize += IS_2_WORD_TYPE(md->paramtypes[i].type) ? 2 : 1;
93         }
94
95         md->memuse = stacksize;
96         md->argintreguse = 0;
97         md->argfltreguse = 0;
98 }
99
100
101 /* md_param_alloc_native *******************************************************
102
103    Pre-allocate arguments according the native ABI.
104
105 *******************************************************************************/
106
107 void md_param_alloc_native(methoddesc *md)
108 {
109         /* On i386 we use the same ABI for JIT method calls as for native
110            method calls. */
111
112         md_param_alloc(md);
113 }
114
115
116 /* md_return_alloc *************************************************************
117
118    No straight forward precoloring of the Java Stackelement containing
119    the return value possible for i386, since it uses "reserved"
120    registers for return values
121
122 *******************************************************************************/
123
124 void md_return_alloc(jitdata *jd, stackptr stackslot)
125 {
126         /* nothing */
127 }
128
129
130 /*
131  * These are local overrides for various environment variables in Emacs.
132  * Please do not remove this and leave it at the end of the file, where
133  * Emacs will automagically detect them.
134  * ---------------------------------------------------------------------
135  * Local variables:
136  * mode: c
137  * indent-tabs-mode: t
138  * c-basic-offset: 4
139  * tab-width: 4
140  * End:
141  */