annotate src/share/vm/code/codeBlob.hpp @ 21559:be896a1983c0

recast all Graal native code as JVMCI code (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Thu, 28 May 2015 15:36:48 +0200
parents 33a783b15758
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
12146
9758d9f36299 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 8767
diff changeset
2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1299
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1299
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1299
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
25 #ifndef SHARE_VM_CODE_CODEBLOB_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
26 #define SHARE_VM_CODE_CODEBLOB_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
28 #include "asm/codeBuffer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
29 #include "compiler/oopMap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
30 #include "runtime/frame.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
31 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // CodeBlob - superclass for all entries in the CodeCache.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 //
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Suptypes are:
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // nmethod : Compiled Java methods (include method that calls to native code)
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // RuntimeStub : Call to VM runtime methods
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // DeoptimizationBlob : Used for deoptimizatation
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // ExceptionBlob : Used for stack unrolling
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // SafepointBlob : Used to handle illegal instruction exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
41 //
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Layout:
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // - header
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // - relocation
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
46 // - content space
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
47 // - instruction space
0
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // - data space
a61af66fc99e Initial load
duke
parents:
diff changeset
49 class DeoptimizationBlob;
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class CodeBlob VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 const char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int _size; // total size of CodeBlob in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int _header_size; // size of header (depends on subclass)
a61af66fc99e Initial load
duke
parents:
diff changeset
59 int _relocation_size; // size of relocation
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
60 int _content_offset; // offset to where content region begins (this includes consts, insts, stubs)
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
61 int _code_offset; // offset to where instructions region begins (this includes insts, stubs)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int _frame_complete_offset; // instruction offsets in [0.._frame_complete_offset) have
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // not finished setting up their frame. Beware of pc's in
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // that range. There is a similar range(s) on returns
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // which we don't detect.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 int _data_offset; // offset to where data region begins
a61af66fc99e Initial load
duke
parents:
diff changeset
67 int _frame_size; // size of stack frame
a61af66fc99e Initial load
duke
parents:
diff changeset
68 OopMapSet* _oop_maps; // OopMap for this CodeBlob
8767
a5de0cc2f91c 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 6796
diff changeset
69 CodeStrings _strings;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Returns the space needed for CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
73 static unsigned int allocation_size(CodeBuffer* cb, int header_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // a) simple CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // frame_complete is the offset from the beginning of the instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // to where the frame setup (from stackwalk viewpoint) is complete.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 CodeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // b) full CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
82 CodeBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
83 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
84 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int header_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int frame_complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
88 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
89 OopMapSet* oop_maps
a61af66fc99e Initial load
duke
parents:
diff changeset
90 );
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // Deletion
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Typing
3363
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
96 virtual bool is_buffer_blob() const { return false; }
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
97 virtual bool is_nmethod() const { return false; }
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
98 virtual bool is_runtime_stub() const { return false; }
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
99 virtual bool is_deoptimization_stub() const { return false; }
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
100 virtual bool is_uncommon_trap_stub() const { return false; }
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
101 virtual bool is_exception_stub() const { return false; }
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
102 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
103 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
104 virtual bool is_method_handles_adapter_blob() const { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 virtual bool is_compiled_by_c2() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 virtual bool is_compiled_by_c1() const { return false; }
21559
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 19462
diff changeset
108 virtual bool is_compiled_by_jvmci() const { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109
1135
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 989
diff changeset
110 // Casting
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 989
diff changeset
111 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
112
0
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Boundaries
a61af66fc99e Initial load
duke
parents:
diff changeset
114 address header_begin() const { return (address) this; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 address header_end() const { return ((address) this) + _header_size; };
a61af66fc99e Initial load
duke
parents:
diff changeset
116 relocInfo* relocation_begin() const { return (relocInfo*) header_end(); };
a61af66fc99e Initial load
duke
parents:
diff changeset
117 relocInfo* relocation_end() const { return (relocInfo*)(header_end() + _relocation_size); }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
118 address content_begin() const { return (address) header_begin() + _content_offset; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
119 address content_end() const { return (address) header_begin() + _data_offset; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
120 address code_begin() const { return (address) header_begin() + _code_offset; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
121 address code_end() const { return (address) header_begin() + _data_offset; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
122 address data_begin() const { return (address) header_begin() + _data_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 address data_end() const { return (address) header_begin() + _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Offsets
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int relocation_offset() const { return _header_size; }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
127 int content_offset() const { return _content_offset; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
128 int code_offset() const { return _code_offset; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int data_offset() const { return _data_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Sizes
a61af66fc99e Initial load
duke
parents:
diff changeset
132 int size() const { return _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 int header_size() const { return _header_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 int relocation_size() const { return (address) relocation_end() - (address) relocation_begin(); }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
135 int content_size() const { return content_end() - content_begin(); }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
136 int code_size() const { return code_end() - code_begin(); }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
137 int data_size() const { return data_end() - data_begin(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Containment
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
140 bool blob_contains(address addr) const { return header_begin() <= addr && addr < data_end(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 bool relocation_contains(relocInfo* addr) const{ return relocation_begin() <= addr && addr < relocation_end(); }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
142 bool content_contains(address addr) const { return content_begin() <= addr && addr < content_end(); }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
143 bool code_contains(address addr) const { return code_begin() <= addr && addr < code_end(); }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
144 bool data_contains(address addr) const { return data_begin() <= addr && addr < data_end(); }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
145 bool contains(address addr) const { return content_contains(addr); }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
146 bool is_frame_complete_at(address addr) const { return code_contains(addr) &&
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
147 addr >= code_begin() + _frame_complete_offset; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // CodeCache support: really only used by the nmethods, but in order to get
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // asserts and certain bookkeeping to work in the CodeCache they are defined
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // virtual here.
a61af66fc99e Initial load
duke
parents:
diff changeset
152 virtual bool is_zombie() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 virtual bool is_locked_by_vm() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 virtual bool is_unloaded() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 virtual bool is_not_entrant() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
159 virtual bool is_alive() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // OopMap for frame
a61af66fc99e Initial load
duke
parents:
diff changeset
162 OopMapSet* oop_maps() const { return _oop_maps; }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 void set_oop_maps(OopMapSet* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 OopMap* oop_map_for_return_address(address return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { ShouldNotReachHere(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Frame support
a61af66fc99e Initial load
duke
parents:
diff changeset
168 int frame_size() const { return _frame_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void set_frame_size(int size) { _frame_size = size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // Returns true, if the next frame is responsible for GC'ing oops passed as arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
172 virtual bool caller_must_gc_arguments(JavaThread* thread) const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Naming
a61af66fc99e Initial load
duke
parents:
diff changeset
175 const char* name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 void set_name(const char* name) { _name = name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
179 virtual void verify();
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
180 void print() const { print_on(tty); }
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
181 virtual void print_on(outputStream* st) const;
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
182 virtual void print_value_on(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183
3363
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
184 // Deal with Disassembler, VTune, Forte, JvmtiExport, MemoryService.
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
185 static void trace_new_stub(CodeBlob* blob, const char* name1, const char* name2 = "");
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
186
0
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // Print the comment associated with offset on stream, if there is one
6796
b31471cdc53e 7200163: add CodeComments functionality to assember stubs
kvn
parents: 6725
diff changeset
188 virtual void print_block_comment(outputStream* stream, address block_begin) const {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
189 intptr_t offset = (intptr_t)(block_begin - code_begin());
8767
a5de0cc2f91c 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 6796
diff changeset
190 _strings.print_block_comment(stream, offset);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Transfer ownership of comments to this CodeBlob
8767
a5de0cc2f91c 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 6796
diff changeset
194 void set_strings(CodeStrings& strings) {
a5de0cc2f91c 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 6796
diff changeset
195 _strings.assign(strings);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 };
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // BufferBlob: used to hold non-relocatable machine code such as the interpreter, stubroutines, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 class BufferBlob: public CodeBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 friend class VMStructs;
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
205 friend class AdapterBlob;
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
206 friend class MethodHandlesAdapterBlob;
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
207
0
a61af66fc99e Initial load
duke
parents:
diff changeset
208 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
210 BufferBlob(const char* name, int size);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 BufferBlob(const char* name, int size, CodeBuffer* cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
212
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 12146
diff changeset
213 void* operator new(size_t s, unsigned size, bool is_critical = false) throw();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
217 static BufferBlob* create(const char* name, int buffer_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 static BufferBlob* create(const char* name, CodeBuffer* cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 static void free(BufferBlob* buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // Typing
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
223 virtual bool is_buffer_blob() const { return true; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // GC/Verification support
a61af66fc99e Initial load
duke
parents:
diff changeset
226 void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 bool is_alive() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 void verify();
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
230 void print_on(outputStream* st) const;
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
231 void print_value_on(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232 };
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 //----------------------------------------------------------------------------------------------------
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
236 // 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
237
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
238 class AdapterBlob: public BufferBlob {
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
239 private:
1663
7139e81efd2d 6970566: runThese fails with SIGSEGV
never
parents: 1579
diff changeset
240 AdapterBlob(int size, CodeBuffer* cb);
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
241
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
242 public:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
243 // Creation
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
244 static AdapterBlob* create(CodeBuffer* cb);
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
245
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
246 // Typing
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
247 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
248 };
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
249
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
250
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
251 //----------------------------------------------------------------------------------------------------
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
252 // MethodHandlesAdapterBlob: used to hold MethodHandles adapters
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
253
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
254 class MethodHandlesAdapterBlob: public BufferBlob {
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
255 private:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
256 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
257
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
258 public:
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
259 // Creation
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
260 static MethodHandlesAdapterBlob* create(int buffer_size);
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
261
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
262 // Typing
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
263 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
264 };
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
265
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
266
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1155
diff changeset
267 //----------------------------------------------------------------------------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // RuntimeStub: describes stubs used by compiled code to call a (static) C++ runtime routine
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 class RuntimeStub: public CodeBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
273 bool _caller_must_gc_arguments;
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
276 RuntimeStub(
a61af66fc99e Initial load
duke
parents:
diff changeset
277 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
278 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
279 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
280 int frame_complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
281 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
282 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
283 bool caller_must_gc_arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
284 );
a61af66fc99e Initial load
duke
parents:
diff changeset
285
12146
9758d9f36299 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 8767
diff changeset
286 void* operator new(size_t s, unsigned size) throw();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
290 static RuntimeStub* new_runtime_stub(
a61af66fc99e Initial load
duke
parents:
diff changeset
291 const char* stub_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
292 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
293 int frame_complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
294 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
295 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
296 bool caller_must_gc_arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
297 );
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
300 bool is_runtime_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
303 bool caller_must_gc_arguments(JavaThread* thread) const { return _caller_must_gc_arguments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
304
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
305 address entry_point() { return code_begin(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // GC/Verification support
a61af66fc99e Initial load
duke
parents:
diff changeset
308 void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 bool is_alive() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 void verify();
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
312 void print_on(outputStream* st) const;
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
313 void print_value_on(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
314 };
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // Super-class for all blobs that exist in only one instance. Implements default behaviour.
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 class SingletonBlob: public CodeBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 friend class VMStructs;
3363
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
322
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
323 protected:
12146
9758d9f36299 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 8767
diff changeset
324 void* operator new(size_t s, unsigned size) throw();
3363
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
325
167b70ff3abc 6939861: JVM should handle more conversion operations
never
parents: 1972
diff changeset
326 public:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
327 SingletonBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
328 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
329 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
330 int header_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
331 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
332 int frame_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
333 OopMapSet* oop_maps
a61af66fc99e Initial load
duke
parents:
diff changeset
334 )
a61af66fc99e Initial load
duke
parents:
diff changeset
335 : CodeBlob(name, cb, header_size, size, CodeOffsets::frame_never_safe, frame_size, oop_maps)
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
336 {};
0
a61af66fc99e Initial load
duke
parents:
diff changeset
337
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
338 address entry_point() { return code_begin(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
339
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
340 bool is_alive() const { return true; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
341
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
342 void verify(); // does nothing
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
343 void print_on(outputStream* st) const;
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
344 void print_value_on(outputStream* st) const;
0
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 // DeoptimizationBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 class DeoptimizationBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
354 int _unpack_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
355 int _unpack_with_exception;
a61af66fc99e Initial load
duke
parents:
diff changeset
356 int _unpack_with_reexecution;
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 int _unpack_with_exception_in_tls;
a61af66fc99e Initial load
duke
parents:
diff changeset
359
21559
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 19462
diff changeset
360 #ifdef JVMCI
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 19462
diff changeset
361 // (thomaswue) Offset when JVMCI calls uncommon_trap.
19462
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
362 int _uncommon_trap_offset;
5111
422c979ff392 fixed two cases where DeoptAction was invalid
Christian Haeubl <christian.haeubl@oracle.com>
parents: 5056
diff changeset
363 int _implicit_exception_uncommon_trap_offset;
9112
6c33b2076d7c minor HotSpot deoptimization cleanups
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8883
diff changeset
364 #endif
2059
9508a52cbd32 Add deoptimization blob support.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1972
diff changeset
365
0
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
367 DeoptimizationBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
368 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
369 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
370 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
371 int unpack_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
372 int unpack_with_exception_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
373 int unpack_with_reexecution_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
374 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
375 );
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
379 static DeoptimizationBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
380 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
382 int unpack_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
383 int unpack_with_exception_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
384 int unpack_with_reexecution_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
385 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
386 );
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
389 bool is_deoptimization_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 bool exception_address_is_unpack_entry(address pc) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 address unpack_pc = unpack();
a61af66fc99e Initial load
duke
parents:
diff changeset
392 return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
399 void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* Nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // Printing
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1663
diff changeset
402 void print_value_on(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
403
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
404 address unpack() const { return code_begin() + _unpack_offset; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
405 address unpack_with_exception() const { return code_begin() + _unpack_with_exception; }
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
406 address unpack_with_reexecution() const { return code_begin() + _unpack_with_reexecution; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // Alternate entry point for C1 where the exception and issuing pc
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // are in JavaThread::_exception_oop and JavaThread::_exception_pc
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // instead of being in registers. This is needed because C1 doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // model exception paths in a way that keeps these registers free so
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // there may be live values in those registers during deopt.
a61af66fc99e Initial load
duke
parents:
diff changeset
413 void set_unpack_with_exception_in_tls_offset(int offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
414 _unpack_with_exception_in_tls = offset;
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
415 assert(code_contains(code_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
417 address unpack_with_exception_in_tls() const { return code_begin() + _unpack_with_exception_in_tls; }
2059
9508a52cbd32 Add deoptimization blob support.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1972
diff changeset
418
21559
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 19462
diff changeset
419 #ifdef JVMCI
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 19462
diff changeset
420 // (thomaswue) Offset when JVMCI calls uncommon_trap.
19462
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
421 void set_uncommon_trap_offset(int offset) {
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
422 _uncommon_trap_offset = offset;
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
423 assert(contains(code_begin() + _uncommon_trap_offset), "must be PC inside codeblob");
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
424 }
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
425 address uncommon_trap() const { return code_begin() + _uncommon_trap_offset; }
33a783b15758 made use of Graal stubs instead of equivalent HotSpot stubs optional and off by default
Doug Simon <doug.simon@oracle.com>
parents: 15104
diff changeset
426
5111
422c979ff392 fixed two cases where DeoptAction was invalid
Christian Haeubl <christian.haeubl@oracle.com>
parents: 5056
diff changeset
427 void set_implicit_exception_uncommon_trap_offset(int offset) {
422c979ff392 fixed two cases where DeoptAction was invalid
Christian Haeubl <christian.haeubl@oracle.com>
parents: 5056
diff changeset
428 _implicit_exception_uncommon_trap_offset = offset;
422c979ff392 fixed two cases where DeoptAction was invalid
Christian Haeubl <christian.haeubl@oracle.com>
parents: 5056
diff changeset
429 assert(contains(code_begin() + _implicit_exception_uncommon_trap_offset), "must be PC inside codeblob");
2605
98fa88528319 Deopt on implicit null pointer exception.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2059
diff changeset
430 }
5111
422c979ff392 fixed two cases where DeoptAction was invalid
Christian Haeubl <christian.haeubl@oracle.com>
parents: 5056
diff changeset
431 address implicit_exception_uncommon_trap() const { return code_begin() + _implicit_exception_uncommon_trap_offset; }
9112
6c33b2076d7c minor HotSpot deoptimization cleanups
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8883
diff changeset
432 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
433 };
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // UncommonTrapBlob (currently only used by Compiler 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
438
a61af66fc99e Initial load
duke
parents:
diff changeset
439 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 class UncommonTrapBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
443 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
445 UncommonTrapBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
446 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
447 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
448 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
449 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
450 );
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
454 static UncommonTrapBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
455 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
456 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
457 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
458 );
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
461 void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
464 bool is_uncommon_trap_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
465 };
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 class ExceptionBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
475 ExceptionBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
476 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
477 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
478 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
479 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
480 );
a61af66fc99e Initial load
duke
parents:
diff changeset
481
a61af66fc99e Initial load
duke
parents:
diff changeset
482 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
484 static ExceptionBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
485 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
486 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
487 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
488 );
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
491 void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
494 bool is_exception_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 };
a61af66fc99e Initial load
duke
parents:
diff changeset
496 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // SafepointBlob: handles illegal_instruction exceptions during a safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 class SafepointBlob: public SingletonBlob {
a61af66fc99e Initial load
duke
parents:
diff changeset
503 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
504 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // Creation support
a61af66fc99e Initial load
duke
parents:
diff changeset
506 SafepointBlob(
a61af66fc99e Initial load
duke
parents:
diff changeset
507 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
508 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
509 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
510 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
511 );
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // Creation
a61af66fc99e Initial load
duke
parents:
diff changeset
515 static SafepointBlob* create(
a61af66fc99e Initial load
duke
parents:
diff changeset
516 CodeBuffer* cb,
a61af66fc99e Initial load
duke
parents:
diff changeset
517 OopMapSet* oop_maps,
a61af66fc99e Initial load
duke
parents:
diff changeset
518 int frame_size
a61af66fc99e Initial load
duke
parents:
diff changeset
519 );
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 // GC for args
a61af66fc99e Initial load
duke
parents:
diff changeset
522 void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // Typing
a61af66fc99e Initial load
duke
parents:
diff changeset
525 bool is_safepoint_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
526 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
527
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
528 #endif // SHARE_VM_CODE_CODEBLOB_HPP