11e212e38f22995a4ab90118d8133c40e06ed821
[cacao.git] / src / native / localref.hpp
1 /* src/native/localref.hpp - Management of local reference tables
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _LOCALREF_HPP
27 #define _LOCALREF_HPP
28
29 /* forward typedefs ***********************************************************/
30
31 typedef struct localref_table localref_table;
32
33 #include "config.h"
34
35 #include "vm/types.h"
36
37 #include "vm/global.h"
38 #include "vm/method.hpp"
39
40
41 /* localref_table **************************************************************
42
43    ATTENTION: keep this structure a multiple of 8-bytes!!! This is
44    essential for the native stub on 64-bit architectures.
45
46 *******************************************************************************/
47
48 #define LOCALREFTABLE_CAPACITY    16
49
50 struct localref_table {
51         s4                 capacity;        /* table size                         */
52         s4                 used;            /* currently used references          */
53         s4                 localframes;     /* number of current frames           */
54         s4                 PADDING;         /* 8-byte padding                     */
55         localref_table    *prev;            /* link to prev table (LocalFrame)    */
56         java_object_t     *refs[LOCALREFTABLE_CAPACITY]; /* references            */
57 };
58
59
60 #if defined(ENABLE_THREADS)
61 #define LOCALREFTABLE    (THREADOBJECT->_localref_table)
62 #else
63 extern localref_table *_no_threads_localref_table;
64
65 #define LOCALREFTABLE    (_no_threads_localref_table)
66 #endif
67
68
69 /* function prototypes ********************************************************/
70
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74
75 bool localref_table_init(void);
76 bool localref_table_destroy(void);
77 void localref_table_add(localref_table *lrt);
78 void localref_table_remove();
79
80 bool localref_frame_push(int32_t capacity);
81 void localref_frame_pop_all(void);
82
83 java_handle_t *localref_add(java_object_t *o);
84 void           localref_del(java_handle_t *localref);
85
86 void localref_native_enter(methodinfo *m, uint64_t *argument_regs, uint64_t *argument_stack);
87 void localref_native_exit(methodinfo *m, uint64_t *return_regs);
88
89 #if !defined(NDEBUG)
90 void localref_dump(void);
91 #endif
92
93 #ifdef __cplusplus
94 }
95 #endif
96
97 #endif // _LOCALREF_HPP
98
99
100 /*
101  * These are local overrides for various environment variables in Emacs.
102  * Please do not remove this and leave it at the end of the file, where
103  * Emacs will automagically detect them.
104  * ---------------------------------------------------------------------
105  * Local variables:
106  * mode: c++
107  * indent-tabs-mode: t
108  * c-basic-offset: 4
109  * tab-width: 4
110  * End:
111  * vim:noexpandtab:sw=4:ts=4:
112  */