* configure.ac: New switch for disabling -O2 (--disable-optimizations).
[cacao.git] / src / threads / lock.hpp
1 /* src/threads/lock.hpp - lock implementation
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 _LOCK_HPP
27 #define _LOCK_HPP
28
29 #include <stdint.h>
30
31 #include "native/llni.h"
32
33 #include "threads/mutex.hpp"
34
35 #include "toolbox/list.hpp"
36
37 #include "vm/global.h"
38
39
40 /* typedefs *******************************************************************/
41
42 typedef struct lock_record_t    lock_record_t;
43 typedef struct lock_hashtable_t lock_hashtable_t;
44
45
46 /* lock_record_t ***************************************************************
47
48    Lock record struct representing an inflated ("fat") lock.
49
50 *******************************************************************************/
51
52 struct lock_record_t {
53         java_object_t       *object;             /* object for which this lock is */
54         struct threadobject *owner;              /* current owner of this monitor */
55         s4                   count;              /* recursive lock count          */
56         Mutex*               mutex;              /* mutex for synchronizing       */
57 #ifdef __cplusplus
58         List<threadobject*>* waiters;            /* list of threads waiting       */
59 #else
60         List* waiters;
61 #endif
62         lock_record_t       *hashlink;           /* next record in hash chain     */
63 };
64
65
66 /* lock_hashtable_t ************************************************************
67  
68    The global hashtable mapping objects to lock records.
69
70 *******************************************************************************/
71
72 struct lock_hashtable_t {
73     Mutex*               mutex;       /* mutex for synch. access to the table */
74         u4                   size;        /* number of slots                      */
75         u4                   entries;     /* current number of entries            */
76         lock_record_t      **ptr;         /* the table of slots, uses ext. chain. */
77 };
78
79
80 /* functions ******************************************************************/
81
82 #ifdef __cplusplus
83 extern "C" {
84 #endif
85
86 void lock_init(void);
87
88 bool lock_monitor_enter(java_handle_t *);
89 bool lock_monitor_exit(java_handle_t *);
90
91 bool lock_is_held_by_current_thread(java_handle_t *o);
92
93 void lock_wait_for_object(java_handle_t *o, s8 millis, s4 nanos);
94 void lock_notify_object(java_handle_t *o);
95 void lock_notify_all_object(java_handle_t *o);
96
97 #if defined(ENABLE_GC_BOEHM)
98 void lock_schedule_lockrecord_removal(java_handle_t *o);
99 #endif
100
101 #ifdef __cplusplus
102 }
103 #endif
104
105
106 /* defines ********************************************************************/
107
108 /* only define the following stuff with thread enabled ************************/
109
110 #if defined(ENABLE_THREADS)
111
112 #define LOCK_MONITOR_ENTER(o)    lock_monitor_enter((java_handle_t *) LLNI_QUICKWRAP(o))
113 #define LOCK_MONITOR_EXIT(o)     lock_monitor_exit((java_handle_t *) LLNI_QUICKWRAP(o))
114
115 #endif
116
117 #endif // _LOCK_HPP
118
119
120 /*
121  * These are local overrides for various environment variables in Emacs.
122  * Please do not remove this and leave it at the end of the file, where
123  * Emacs will automagically detect them.
124  * ---------------------------------------------------------------------
125  * Local variables:
126  * mode: c++
127  * indent-tabs-mode: t
128  * c-basic-offset: 4
129  * tab-width: 4
130  * End:
131  * vim:noexpandtab:sw=4:ts=4:
132  */