Register Packing macros moved to md-abi.h
[cacao.git] / src / vm / jit / powerpc / darwin / md-abi.c
1 /* src/vm/jit/powerpc/darwin/md-abi.c - functions for PowerPC Darwin ABI
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    Changes: Christian Ullrich
30
31    $Id: md-abi.c 2811 2005-06-23 14:19:18Z christian $
32
33 */
34
35
36 #include "vm/jit/powerpc/types.h"
37 #include "vm/jit/powerpc/darwin/md-abi.h"
38
39 #include "vm/descriptor.h"
40 #include "vm/global.h"
41
42
43 /* md_param_alloc **************************************************************
44
45  Allocate Arguments to Stackslots according the Calling Conventions
46
47 --- in
48 md->paramcount:           Number of arguments for this method
49 md->paramtypes[].type:    Argument types
50
51 --- out
52 md->params[].inmemory:    Argument spilled on stack
53 md->params[].regoff:      Stack offset or rd->arg[int|flt]regs index
54 md->memuse:               Stackslots needed for argument spilling
55 md->argintreguse:         max number of integer arguments used
56 md->argfltreguse:         max number of float arguments used
57
58 *******************************************************************************/
59
60 void md_param_alloc(methoddesc *md)
61 {
62         paramdesc *pd;
63         s4         i;
64         s4         iarg;
65         s4         farg;
66         s4         stacksize;
67
68         /* set default values */
69
70         iarg = 0;
71         farg = 0;
72         stacksize = LA_WORD_SIZE;
73
74         /* get params field of methoddesc */
75
76         pd = md->params;
77
78         for (i = 0; i < md->paramcount; i++, pd++) {
79                 switch (md->paramtypes[i].type) {
80                 case TYPE_INT:
81                 case TYPE_ADR:
82                         if (iarg < INT_ARG_CNT) {
83                                 pd->inmemory = false;
84                                 pd->regoff = iarg;           /* rd->arg[int|flt]regs index !! */
85                                 iarg++;
86                         } else {
87                                 pd->inmemory = true;
88                                 pd->regoff = stacksize;
89                         }
90                         stacksize++;
91                         break;
92                 case TYPE_LNG:
93                         if (iarg < INT_ARG_CNT - 1) {
94                                 pd->inmemory = false;
95                                                              /* rd->arg[int|flt]regs index !! */
96                                 pd->regoff = PACK_REGS(iarg + 1, iarg); 
97                                 iarg += 2;
98                         } else {
99                                 pd->inmemory = true;
100                                 pd->regoff = stacksize;
101                                 iarg = INT_ARG_CNT;
102                         }
103                         stacksize += 2;
104                         break;
105                 case TYPE_FLT:
106                         if (farg < FLT_ARG_CNT) {
107                                 pd->inmemory = false;
108                                 pd->regoff = farg;           /* rd->arg[int|flt]regs index !! */
109                                 iarg++;     /* skip 1 integer argument register */
110                                 farg++;
111                         } else {
112                                 pd->inmemory = true;
113                                 pd->regoff = stacksize;
114                         }
115                         stacksize++;
116                         break;
117                 case TYPE_DBL:
118                         if (farg < FLT_ARG_CNT) {
119                                 pd->inmemory = false;
120                                 pd->regoff = farg;           /* rd->arg[int|flt]regs index !! */
121                                 iarg += 2;  /* skip 2 integer argument registers */
122                                 farg++;
123                         } else {
124                                 pd->inmemory = true;
125                                 pd->regoff = stacksize;
126                         }
127                         stacksize += 2;
128                         break;
129                 }
130         }
131
132
133         /* Since R3/R4 (==A0/A1) are used for passing return values, this         */
134         /* argument register usage has to be regarded, too                        */
135         if (IS_INT_LNG_TYPE(md->returntype.type))
136                 if (iarg < (IS_2_WORD_TYPE(md->returntype.type) ? 2 : 1))
137                         iarg = IS_2_WORD_TYPE(md->returntype.type) ? 2 : 1;
138
139         /* fill register and stack usage */
140         md->argintreguse = iarg;
141         md->argfltreguse = farg;
142         md->memuse = stacksize;
143 }
144
145
146 /*
147  * These are local overrides for various environment variables in Emacs.
148  * Please do not remove this and leave it at the end of the file, where
149  * Emacs will automagically detect them.
150  * ---------------------------------------------------------------------
151  * Local variables:
152  * mode: c
153  * indent-tabs-mode: t
154  * c-basic-offset: 4
155  * tab-width: 4
156  * End:
157  */