annotate src/share/vm/code/stubs.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2002 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // The classes in this file provide a simple framework for the
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // management of little pieces of machine code - or stubs -
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // created on the fly and frequently discarded. In this frame-
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // work stubs are stored in a queue.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Stub serves as abstract base class. A concrete stub
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // implementation is a subclass of Stub, implementing
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // all (non-virtual!) functions required sketched out
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // in the Stub class.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 //
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // A concrete stub layout may look like this (both data
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // and code sections could be empty as well):
a61af66fc99e Initial load
duke
parents:
diff changeset
38 //
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // ________
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // stub -->| | <--+
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // | data | |
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // |________| |
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // code_begin -->| | |
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // | | |
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // | code | | size
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // | | |
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // |________| |
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // code_end -->| | |
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // | data | |
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // |________| |
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // <--+
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 class Stub VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Initialization/finalization
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void initialize(int size) { ShouldNotCallThis(); } // called to initialize/specify the stub's size
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void finalize() { ShouldNotCallThis(); } // called before the stub is deallocated
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // General info/converters
a61af66fc99e Initial load
duke
parents:
diff changeset
61 int size() const { ShouldNotCallThis(); return 0; } // must return the size provided by initialize
a61af66fc99e Initial load
duke
parents:
diff changeset
62 static int code_size_to_size(int code_size) { ShouldNotCallThis(); return 0; } // computes the size given the code size
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Code info
a61af66fc99e Initial load
duke
parents:
diff changeset
65 address code_begin() const { ShouldNotCallThis(); return NULL; } // points to the first byte of the code
a61af66fc99e Initial load
duke
parents:
diff changeset
66 address code_end() const { ShouldNotCallThis(); return NULL; } // points to the first byte after the code
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void verify() { ShouldNotCallThis(); } // verifies the Stub
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void print() { ShouldNotCallThis(); } // prints some information about the stub
a61af66fc99e Initial load
duke
parents:
diff changeset
71 };
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // A stub interface defines the interface between a stub queue
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // and the stubs it queues. In order to avoid a vtable and
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // (and thus the extra word) in each stub, a concrete stub
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // interface object is created and associated with a stub
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // buffer which in turn uses the stub interface to interact
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // with its stubs.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // StubInterface serves as an abstract base class. A concrete
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // stub interface implementation is a subclass of StubInterface,
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // forwarding its virtual function calls to non-virtual calls
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // of the concrete stub (see also macro below). There's exactly
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // one stub interface instance required per stub queue.
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 class StubInterface: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Initialization/finalization
a61af66fc99e Initial load
duke
parents:
diff changeset
90 virtual void initialize(Stub* self, int size) = 0; // called after creation (called twice if allocated via (request, commit))
a61af66fc99e Initial load
duke
parents:
diff changeset
91 virtual void finalize(Stub* self) = 0; // called before deallocation
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // General info/converters
a61af66fc99e Initial load
duke
parents:
diff changeset
94 virtual int size(Stub* self) const = 0; // the total size of the stub in bytes (must be a multiple of CodeEntryAlignment)
a61af66fc99e Initial load
duke
parents:
diff changeset
95 virtual int code_size_to_size(int code_size) const = 0; // computes the total stub size in bytes given the code size in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Code info
a61af66fc99e Initial load
duke
parents:
diff changeset
98 virtual address code_begin(Stub* self) const = 0; // points to the first code byte
a61af66fc99e Initial load
duke
parents:
diff changeset
99 virtual address code_end(Stub* self) const = 0; // points to the first byte after the code
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
102 virtual void verify(Stub* self) = 0; // verifies the stub
a61af66fc99e Initial load
duke
parents:
diff changeset
103 virtual void print(Stub* self) = 0; // prints information about the stub
a61af66fc99e Initial load
duke
parents:
diff changeset
104 };
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // DEF_STUB_INTERFACE is used to create a concrete stub interface
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // class, forwarding stub interface calls to the corresponding
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // stub calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 #define DEF_STUB_INTERFACE(stub) \
a61af66fc99e Initial load
duke
parents:
diff changeset
112 class stub##Interface: public StubInterface { \
a61af66fc99e Initial load
duke
parents:
diff changeset
113 private: \
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static stub* cast(Stub* self) { return (stub*)self; } \
a61af66fc99e Initial load
duke
parents:
diff changeset
115 \
a61af66fc99e Initial load
duke
parents:
diff changeset
116 public: \
a61af66fc99e Initial load
duke
parents:
diff changeset
117 /* Initialization/finalization */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
118 virtual void initialize(Stub* self, int size) { cast(self)->initialize(size); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
119 virtual void finalize(Stub* self) { cast(self)->finalize(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
120 \
a61af66fc99e Initial load
duke
parents:
diff changeset
121 /* General info */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
122 virtual int size(Stub* self) const { return cast(self)->size(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
123 virtual int code_size_to_size(int code_size) const { return stub::code_size_to_size(code_size); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
124 \
a61af66fc99e Initial load
duke
parents:
diff changeset
125 /* Code info */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
126 virtual address code_begin(Stub* self) const { return cast(self)->code_begin(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
127 virtual address code_end(Stub* self) const { return cast(self)->code_end(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
128 \
a61af66fc99e Initial load
duke
parents:
diff changeset
129 /* Debugging */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
130 virtual void verify(Stub* self) { cast(self)->verify(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
131 virtual void print(Stub* self) { cast(self)->print(); } \
a61af66fc99e Initial load
duke
parents:
diff changeset
132 };
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // A StubQueue maintains a queue of stubs.
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Note: All sizes (spaces) are given in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 class StubQueue: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
141 StubInterface* _stub_interface; // the interface prototype
a61af66fc99e Initial load
duke
parents:
diff changeset
142 address _stub_buffer; // where all stubs are stored
a61af66fc99e Initial load
duke
parents:
diff changeset
143 int _buffer_size; // the buffer size in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
144 int _buffer_limit; // the (byte) index of the actual buffer limit (_buffer_limit <= _buffer_size)
a61af66fc99e Initial load
duke
parents:
diff changeset
145 int _queue_begin; // the (byte) index of the first queue entry (word-aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
146 int _queue_end; // the (byte) index of the first entry after the queue (word-aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
147 int _number_of_stubs; // the number of buffered stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
148 Mutex* const _mutex; // the lock used for a (request, commit) transaction
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void check_index(int i) const { assert(0 <= i && i < _buffer_limit && i % CodeEntryAlignment == 0, "illegal index"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 bool is_contiguous() const { return _queue_begin <= _queue_end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 int index_of(Stub* s) const { int i = (address)s - _stub_buffer; check_index(i); return i; }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 Stub* stub_at(int i) const { check_index(i); return (Stub*)(_stub_buffer + i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 Stub* current_stub() const { return stub_at(_queue_end); }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Stub functionality accessed via interface
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void stub_initialize(Stub* s, int size) { assert(size % CodeEntryAlignment == 0, "size not aligned"); _stub_interface->initialize(s, size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void stub_finalize(Stub* s) { _stub_interface->finalize(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 int stub_size(Stub* s) const { return _stub_interface->size(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 bool stub_contains(Stub* s, address pc) const { return _stub_interface->code_begin(s) <= pc && pc < _stub_interface->code_end(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 int stub_code_size_to_size(int code_size) const { return _stub_interface->code_size_to_size(code_size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 void stub_verify(Stub* s) { _stub_interface->verify(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 void stub_print(Stub* s) { _stub_interface->print(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 static void register_queue(StubQueue*);
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
168 StubQueue(StubInterface* stub_interface, int buffer_size, Mutex* lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
169 const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 ~StubQueue();
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // General queue info
a61af66fc99e Initial load
duke
parents:
diff changeset
173 bool is_empty() const { return _queue_begin == _queue_end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 int total_space() const { return _buffer_size - 1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 int available_space() const { int d = _queue_begin - _queue_end - 1; return d < 0 ? d + _buffer_size : d; }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 int used_space() const { return total_space() - available_space(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 int number_of_stubs() const { return _number_of_stubs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 bool contains(address pc) const { return _stub_buffer <= pc && pc < _stub_buffer + _buffer_limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 Stub* stub_containing(address pc) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 address code_start() const { return _stub_buffer; }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 address code_end() const { return _stub_buffer + _buffer_limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Stub allocation (atomic transactions)
a61af66fc99e Initial load
duke
parents:
diff changeset
184 Stub* request_committed(int code_size); // request a stub that provides exactly code_size space for code
a61af66fc99e Initial load
duke
parents:
diff changeset
185 Stub* request(int requested_code_size); // request a stub with a (maximum) code space - locks the queue
a61af66fc99e Initial load
duke
parents:
diff changeset
186 void commit (int committed_code_size); // commit the previously requested stub - unlocks the queue
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // Stub deallocation
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void remove_first(); // remove the first stub in the queue
a61af66fc99e Initial load
duke
parents:
diff changeset
190 void remove_first(int n); // remove the first n stubs in the queue
a61af66fc99e Initial load
duke
parents:
diff changeset
191 void remove_all(); // remove all stubs in the queue
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
194 static void queues_do(void f(StubQueue* s)); // call f with each StubQueue
a61af66fc99e Initial load
duke
parents:
diff changeset
195 void stubs_do(void f(Stub* s)); // call f with all stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
196 Stub* first() const { return number_of_stubs() > 0 ? stub_at(_queue_begin) : NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 Stub* next(Stub* s) const { int i = index_of(s) + stub_size(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (i == _buffer_limit) i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 return (i == _queue_end) ? NULL : stub_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 address stub_code_begin(Stub* s) const { return _stub_interface->code_begin(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 address stub_code_end(Stub* s) const { return _stub_interface->code_end(s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Debugging/printing
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void verify(); // verifies the stub queue
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void print(); // prints information about the stub queue
a61af66fc99e Initial load
duke
parents:
diff changeset
208 };