* src/vm/jit/code.c (code_get_stack_frame_size): Deal with 4/8-byte
[cacao.git] / src / vm / jit / code.c
1 /* vm/jit/code.c - codeinfo struct for representing compiled code
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: Edwin Steiner
28
29    Changes:
30
31    $Id$
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include <assert.h>
40
41 #include "vm/jit/code.h"
42 #include "mm/memory.h"
43 #include "vm/options.h"
44 #include "arch.h"
45
46 codeinfo *code_codeinfo_new(methodinfo *m)
47 {
48         codeinfo *code;
49
50         code = NEW(codeinfo);
51
52         memset(code,0,sizeof(codeinfo));
53
54         code->m = m;
55         
56         return code;
57 }
58
59 int code_get_stack_frame_size(codeinfo *code)
60 {
61         int count;
62         
63         assert(code);
64
65         /* XXX generalize to all archs */
66 #ifdef HAS_4BYTE_STACKSLOT
67         count = code->memuse + code->savedintcount + 2*code->savedfltcount;
68 #else
69         count = code->memuse + code->savedintcount + code->savedfltcount;
70 #endif
71
72         /* XXX generalize to all archs */
73         if (checksync && (code->m->flags & ACC_SYNCHRONIZED))
74 #ifdef HAS_4BYTE_STACKSLOT
75                 count += (IS_2_WORD_TYPE(code->m->parseddesc->returntype.type)) ? 2 : 1;
76 #else
77                 count++;
78 #endif
79
80         return count;
81 }
82
83 void code_codeinfo_free(codeinfo *code)
84 {
85         if (!code)
86                 return;
87
88         if (code->mcode)
89                 CFREE((void *) (ptrint) code->mcode, code->mcodelength);
90
91         replace_free_replacement_points(code);
92
93         FREE(code,codeinfo);
94 }
95
96 void code_free_code_of_method(methodinfo *m)
97 {
98         codeinfo *nextcode;
99         codeinfo *code;
100         
101         nextcode = m->code;
102         while (nextcode) {
103                 code = nextcode;
104                 nextcode = code->prev;
105                 code_codeinfo_free(code);
106         }
107 }
108
109 /*
110  * These are local overrides for various environment variables in Emacs.
111  * Please do not remove this and leave it at the end of the file, where
112  * Emacs will automagically detect them.
113  * ---------------------------------------------------------------------
114  * Local variables:
115  * mode: c
116  * indent-tabs-mode: t
117  * c-basic-offset: 4
118  * tab-width: 4
119  * End:
120  * vim:noexpandtab:sw=4:ts=4:
121  */