annotate src/share/vm/code/codeBlob.hpp @ 1299:9eba43136cb5

6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob Summary: Passing a null pointer to an InvokeDynamic function call should lead to a NullPointerException. Reviewed-by: kvn, never
author twisti
date Tue, 16 Mar 2010 11:52:17 +0100
parents 4e6abf09f540
children c18cbe5936b8 1a5913bf5e19
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
2 * Copyright 1998-2010 Sun Microsystems, Inc. All Rights Reserved.
0
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 // CodeBlob - superclass for all entries in the CodeCache.
a61af66fc99e Initial load
duke
parents:
diff changeset
26 //
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // Suptypes are:
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // nmethod : Compiled Java methods (include method that calls to native code)
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // RuntimeStub : Call to VM runtime methods
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // DeoptimizationBlob : Used for deoptimizatation
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // ExceptionBlob : Used for stack unrolling
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // SafepointBlob : Used to handle illegal instruction exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
33 //
a61af66fc99e Initial load
duke
parents:
diff changeset
34 //
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Layout:
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // - header
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // - relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // - instruction space
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // - data space
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class DeoptimizationBlob;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class CodeBlob VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 const char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int _size; // total size of CodeBlob in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int _header_size; // size of header (depends on subclass)
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int _relocation_size; // size of relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int _instructions_offset; // offset to where instructions region begins
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int _frame_complete_offset; // instruction offsets in [0.._frame_complete_offset) have
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // not finished setting up their frame. Beware of pc's in
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // that range. There is a similar range(s) on returns
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // which we don't detect.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int _data_offset; // offset to where data region begins
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int _oops_offset; // offset to where embedded oop table begins (inside data)
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int _oops_length; // number of embedded oops
a61af66fc99e Initial load
duke
parents:
diff changeset
59 int _frame_size; // size of stack frame
a61af66fc99e Initial load
duke
parents:
diff changeset
60 OopMapSet* _oop_maps; // OopMap for this CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
61 CodeComments _comments;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 friend class OopRecorder;
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void fix_oop_relocations(address begin, address end, bool initialize_immediates);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 inline void initialize_immediate_oop(oop* dest, jobject handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Returns the space needed for CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static unsigned int allocation_size(CodeBuffer* cb, int header_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // a) simple CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // frame_complete is the offset from the beginning of the instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // to where the frame setup (from stackwalk viewpoint) is complete.
a61af66fc99e Initial load
duke
parents:
diff changeset
76 CodeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // b) full CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
79 CodeBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
80 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
81 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int header_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
83 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int frame_complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 OopMapSet* oop_maps
a61af66fc99e Initial load
duke
parents:
diff changeset
87 );
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Deletion
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // Typing
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
93 virtual bool is_buffer_blob() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
94 virtual bool is_nmethod() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
95 virtual bool is_runtime_stub() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
96 virtual bool is_deoptimization_stub() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
97 virtual bool is_uncommon_trap_stub() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
98 virtual bool is_exception_stub() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
99 virtual bool is_safepoint_stub() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
100 virtual bool is_adapter_blob() const { return false; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
101 virtual bool is_method_handles_adapter_blob() const { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 virtual bool is_compiled_by_c2() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 virtual bool is_compiled_by_c1() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
1135
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 989
diff changeset
106 // Casting
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 989
diff changeset
107 nmethod* as_nmethod_or_null() { return is_nmethod() ? (nmethod*) this : NULL; }
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 989
diff changeset
108
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Boundaries
a61af66fc99e Initial load
duke
parents:
diff changeset
110 address header_begin() const { return (address) this; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 address header_end() const { return ((address) this) + _header_size; };
a61af66fc99e Initial load
duke
parents:
diff changeset
112 relocInfo* relocation_begin() const { return (relocInfo*) header_end(); };
a61af66fc99e Initial load
duke
parents:
diff changeset
113 relocInfo* relocation_end() const { return (relocInfo*)(header_end() + _relocation_size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 address instructions_begin() const { return (address) header_begin() + _instructions_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 address instructions_end() const { return (address) header_begin() + _data_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 address data_begin() const { return (address) header_begin() + _data_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 address data_end() const { return (address) header_begin() + _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 oop* oops_begin() const { return (oop*) (header_begin() + _oops_offset); }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 oop* oops_end() const { return oops_begin() + _oops_length; }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Offsets
a61af66fc99e Initial load
duke
parents:
diff changeset
122 int relocation_offset() const { return _header_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int instructions_offset() const { return _instructions_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 int data_offset() const { return _data_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 int oops_offset() const { return _oops_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // Sizes
a61af66fc99e Initial load
duke
parents:
diff changeset
128 int size() const { return _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int header_size() const { return _header_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int relocation_size() const { return (address) relocation_end() - (address) relocation_begin(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
131 int instructions_size() const { return instructions_end() - instructions_begin(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 int data_size() const { return data_end() - data_begin(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 int oops_size() const { return (address) oops_end() - (address) oops_begin(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Containment
a61af66fc99e Initial load
duke
parents:
diff changeset
136 bool blob_contains(address addr) const { return header_begin() <= addr && addr < data_end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 bool relocation_contains(relocInfo* addr) const{ return relocation_begin() <= addr && addr < relocation_end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 bool instructions_contains(address addr) const { return instructions_begin() <= addr && addr < instructions_end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
139 bool data_contains(address addr) const { return data_begin() <= addr && addr < data_end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 bool oops_contains(oop* addr) const { return oops_begin() <= addr && addr < oops_end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 bool contains(address addr) const { return instructions_contains(addr); }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 bool is_frame_complete_at(address addr) const { return instructions_contains(addr) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
143 addr >= instructions_begin() + _frame_complete_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Relocation support
a61af66fc99e Initial load
duke
parents:
diff changeset
146 void fix_oop_relocations(address begin, address end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 fix_oop_relocations(begin, end, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 void fix_oop_relocations() {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 fix_oop_relocations(NULL, NULL, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 relocInfo::relocType reloc_type_for_address(address pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 bool is_at_poll_return(address pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 bool is_at_poll_or_poll_return(address pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Support for oops in scopes and relocs:
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Note: index 0 is reserved for null.
a61af66fc99e Initial load
duke
parents:
diff changeset
158 oop oop_at(int index) const { return index == 0? (oop)NULL: *oop_addr_at(index); }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 oop* oop_addr_at(int index) const{ // for GC
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // relocation indexes are biased by 1 (because 0 is reserved)
a61af66fc99e Initial load
duke
parents:
diff changeset
161 assert(index > 0 && index <= _oops_length, "must be a valid non-zero index");
a61af66fc99e Initial load
duke
parents:
diff changeset
162 return &oops_begin()[index-1];
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 void copy_oops(GrowableArray<jobject>* oops);
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // CodeCache support: really only used by the nmethods, but in order to get
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // asserts and certain bookkeeping to work in the CodeCache they are defined
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // virtual here.
a61af66fc99e Initial load
duke
parents:
diff changeset
170 virtual bool is_zombie() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 virtual bool is_locked_by_vm() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 virtual bool is_unloaded() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 virtual bool is_not_entrant() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
177 virtual bool is_alive() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 virtual void do_unloading(BoolObjectClosure* is_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
179 OopClosure* keep_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
180 bool unloading_occurred);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 virtual void oops_do(OopClosure* f) = 0;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
182 // (All CodeBlob subtypes other than NMethod currently have
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
183 // an empty oops_do() method.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // OopMap for frame
a61af66fc99e Initial load
duke
parents:
diff changeset
186 OopMapSet* oop_maps() const { return _oop_maps; }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 void set_oop_maps(OopMapSet* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 OopMap* oop_map_for_return_address(address return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { ShouldNotReachHere(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Frame support
a61af66fc99e Initial load
duke
parents:
diff changeset
192 int frame_size() const { return _frame_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void set_frame_size(int size) { _frame_size = size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // Returns true, if the next frame is responsible for GC'ing oops passed as arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
196 virtual bool caller_must_gc_arguments(JavaThread* thread) const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Naming
a61af66fc99e Initial load
duke
parents:
diff changeset
199 const char* name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void set_name(const char* name) { _name = name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
203 virtual void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
204 virtual void print() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 virtual void print_value_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // Print the comment associated with offset on stream, if there is one
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 1135
diff changeset
208 virtual void print_block_comment(outputStream* stream, address block_begin) {
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 1135
diff changeset
209 intptr_t offset = (intptr_t)(block_begin - instructions_begin());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210 _comments.print_block_comment(stream, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Transfer ownership of comments to this CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void set_comments(CodeComments& comments) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 _comments.assign(comments);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217 };
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // BufferBlob: used to hold non-relocatable machine code such as the interpreter, stubroutines, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 class BufferBlob: public CodeBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 friend class VMStructs;
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
225 friend class AdapterBlob;
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
226 friend class MethodHandlesAdapterBlob;
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
227
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
230 BufferBlob(const char* name, int size);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 BufferBlob(const char* name, int size, CodeBuffer* cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void* operator new(size_t s, unsigned size);
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
237 static BufferBlob* create(const char* name, int buffer_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 static BufferBlob* create(const char* name, CodeBuffer* cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 static void free(BufferBlob* buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Typing
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
243 virtual bool is_buffer_blob() const { return true; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // GC/Verification support
a61af66fc99e Initial load
duke
parents:
diff changeset
246 void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 bool is_alive() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 void do_unloading(BoolObjectClosure* is_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
249 OopClosure* keep_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
250 bool unloading_occurred) { /* do nothing */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 void oops_do(OopClosure* f) { /* do nothing*/ }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 void print() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 void print_value_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
257 };
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 //----------------------------------------------------------------------------------------------------
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
261 // AdapterBlob: used to hold C2I/I2C adapters
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
262
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
263 class AdapterBlob: public BufferBlob {
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
264 private:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
265 AdapterBlob(int size) : BufferBlob("I2C/C2I adapters", size) {}
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
266 AdapterBlob(int size, CodeBuffer* cb) : BufferBlob("I2C/C2I adapters", size, cb) {}
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
267
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
268 public:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
269 // Creation
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
270 static AdapterBlob* create(CodeBuffer* cb);
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
271
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
272 // Typing
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
273 virtual bool is_adapter_blob() const { return true; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
274 };
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
275
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
276
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
277 //----------------------------------------------------------------------------------------------------
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
278 // MethodHandlesAdapterBlob: used to hold MethodHandles adapters
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
279
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
280 class MethodHandlesAdapterBlob: public BufferBlob {
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
281 private:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
282 MethodHandlesAdapterBlob(int size) : BufferBlob("MethodHandles adapters", size) {}
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
283 MethodHandlesAdapterBlob(int size, CodeBuffer* cb) : BufferBlob("MethodHandles adapters", size, cb) {}
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
284
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
285 public:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
286 // Creation
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
287 static MethodHandlesAdapterBlob* create(int buffer_size);
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
288
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
289 // Typing
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
290 virtual bool is_method_handles_adapter_blob() const { return true; }
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
291 };
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
292
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
293
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
294 //----------------------------------------------------------------------------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // RuntimeStub: describes stubs used by compiled code to call a (static) C++ runtime routine
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 class RuntimeStub: public CodeBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
300 bool _caller_must_gc_arguments;
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
303 RuntimeStub(
a61af66fc99e Initial load
duke
parents:
diff changeset
304 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
305 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
306 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
307 int frame_complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
308 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
309 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
310 bool caller_must_gc_arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
311 );
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 void* operator new(size_t s, unsigned size);
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
317 static RuntimeStub* new_runtime_stub(
a61af66fc99e Initial load
duke
parents:
diff changeset
318 const char* stub_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
319 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
320 int frame_complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
321 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
322 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
323 bool caller_must_gc_arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
324 );
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
327 bool is_runtime_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
330 bool caller_must_gc_arguments(JavaThread* thread) const { return _caller_must_gc_arguments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 address entry_point() { return instructions_begin(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // GC/Verification support
a61af66fc99e Initial load
duke
parents:
diff changeset
335 void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
336 bool is_alive() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 void do_unloading(BoolObjectClosure* is_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
338 OopClosure* keep_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
339 bool unloading_occurred) { /* do nothing */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
340 void oops_do(OopClosure* f) { /* do-nothing*/ }
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
343 void print() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 void print_value_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
345 };
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // Super-class for all blobs that exist in only one instance. Implements default behaviour.
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 class SingletonBlob: public CodeBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
354 SingletonBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
355 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
356 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
357 int header_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
358 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
359 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
360 OopMapSet* oop_maps
a61af66fc99e Initial load
duke
parents:
diff changeset
361 )
a61af66fc99e Initial load
duke
parents:
diff changeset
362 : CodeBlob(name, cb, header_size, size, CodeOffsets::frame_never_safe, frame_size, oop_maps)
a61af66fc99e Initial load
duke
parents:
diff changeset
363 {};
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 bool is_alive() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void do_unloading(BoolObjectClosure* is_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
367 OopClosure* keep_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
368 bool unloading_occurred) { /* do-nothing*/ }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 void verify(); // does nothing
a61af66fc99e Initial load
duke
parents:
diff changeset
371 void print() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 void print_value_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
373 };
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // DeoptimizationBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 class DeoptimizationBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
381 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
382 int _unpack_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
383 int _unpack_with_exception;
a61af66fc99e Initial load
duke
parents:
diff changeset
384 int _unpack_with_reexecution;
a61af66fc99e Initial load
duke
parents:
diff changeset
385
a61af66fc99e Initial load
duke
parents:
diff changeset
386 int _unpack_with_exception_in_tls;
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
389 DeoptimizationBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
390 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
391 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
392 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
393 int unpack_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
394 int unpack_with_exception_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
395 int unpack_with_reexecution_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
396 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
397 );
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 void* operator new(size_t s, unsigned size);
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
403 static DeoptimizationBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
404 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
405 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
406 int unpack_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
407 int unpack_with_exception_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
408 int unpack_with_reexecution_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
409 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
410 );
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
413 bool is_deoptimization_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 const DeoptimizationBlob *as_deoptimization_stub() const { return this; }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 bool exception_address_is_unpack_entry(address pc) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 address unpack_pc = unpack();
a61af66fc99e Initial load
duke
parents:
diff changeset
417 return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
424 void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* Nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
427 void oops_do(OopClosure* f) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
430 void print_value_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 address unpack() const { return instructions_begin() + _unpack_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
433 address unpack_with_exception() const { return instructions_begin() + _unpack_with_exception; }
a61af66fc99e Initial load
duke
parents:
diff changeset
434 address unpack_with_reexecution() const { return instructions_begin() + _unpack_with_reexecution; }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Alternate entry point for C1 where the exception and issuing pc
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // are in JavaThread::_exception_oop and JavaThread::_exception_pc
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // instead of being in registers. This is needed because C1 doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // model exception paths in a way that keeps these registers free so
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // there may be live values in those registers during deopt.
a61af66fc99e Initial load
duke
parents:
diff changeset
441 void set_unpack_with_exception_in_tls_offset(int offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 _unpack_with_exception_in_tls = offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
443 assert(contains(instructions_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob");
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 address unpack_with_exception_in_tls() const { return instructions_begin() + _unpack_with_exception_in_tls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
446 };
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448
a61af66fc99e Initial load
duke
parents:
diff changeset
449 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // UncommonTrapBlob (currently only used by Compiler 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 class UncommonTrapBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
455 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
456 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
458 UncommonTrapBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
459 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
460 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
461 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
462 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
463 );
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 void* operator new(size_t s, unsigned size);
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
469 static UncommonTrapBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
470 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
471 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
472 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
473 );
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
476 void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
479 bool is_uncommon_trap_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
482 void oops_do(OopClosure* f) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
483 };
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 class ExceptionBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
491 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
493 ExceptionBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
494 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
495 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
496 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
497 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
498 );
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 void* operator new(size_t s, unsigned size);
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
504 static ExceptionBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
505 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
506 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
507 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
508 );
a61af66fc99e Initial load
duke
parents:
diff changeset
509
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
511 void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
514 bool is_exception_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
517 void oops_do(OopClosure* f) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
518 };
a61af66fc99e Initial load
duke
parents:
diff changeset
519 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521
a61af66fc99e Initial load
duke
parents:
diff changeset
522 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // SafepointBlob: handles illegal_instruction exceptions during a safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 class SafepointBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
529 SafepointBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
530 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
531 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
532 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
533 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
534 );
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 void* operator new(size_t s, unsigned size);
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
539 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
540 static SafepointBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
541 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
542 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
543 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
544 );
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
547 void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
548
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
550 bool is_safepoint_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
553 void oops_do(OopClosure* f) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
554 };