author | thartmann |
Mon, 21 Nov 2016 09:33:06 +0100 | |
changeset 42581 | 2fdb039ea5b5 |
parent 42064 | a530dbabe64f |
child 42650 | 1f304d0c888b |
permissions | -rw-r--r-- |
1 | 1 |
/* |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
2 |
* Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5050
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5050
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5050
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CODE_CODEBLOB_HPP |
26 |
#define SHARE_VM_CODE_CODEBLOB_HPP |
|
27 |
||
28 |
#include "asm/codeBuffer.hpp" |
|
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
29 |
#include "compiler/compilerDefinitions.hpp" |
7397 | 30 |
#include "compiler/oopMap.hpp" |
31 |
#include "runtime/frame.hpp" |
|
32 |
#include "runtime/handles.hpp" |
|
42064
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
33 |
#include "utilities/macros.hpp" |
7397 | 34 |
|
26796 | 35 |
// CodeBlob Types |
36 |
// Used in the CodeCache to assign CodeBlobs to different CodeHeaps |
|
37 |
struct CodeBlobType { |
|
38 |
enum { |
|
39 |
MethodNonProfiled = 0, // Execution level 1 and 4 (non-profiled) nmethods (including native nmethods) |
|
40 |
MethodProfiled = 1, // Execution level 2 and 3 (profiled) nmethods |
|
26919
361b4b4c92c0
8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents:
26796
diff
changeset
|
41 |
NonNMethod = 2, // Non-nmethods like Buffers, Adapters and Runtime Stubs |
26796 | 42 |
All = 3, // All types (No code cache segmentation) |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
43 |
Pregenerated = 4, // Special blobs, managed by CodeCacheExtensions |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
44 |
NumTypes = 5 // Number of CodeBlobTypes |
26796 | 45 |
}; |
46 |
}; |
|
47 |
||
1 | 48 |
// CodeBlob - superclass for all entries in the CodeCache. |
49 |
// |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
50 |
// Subtypes are: |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
51 |
// CompiledMethod : Compiled Java methods (include method that calls to native code) |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
52 |
// nmethod : JIT Compiled Java methods |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
53 |
// RuntimeBlob : Non-compiled method code; generated glue code |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
54 |
// RuntimeStub : Call to VM runtime methods |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
55 |
// DeoptimizationBlob : Used for deoptimization |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
56 |
// ExceptionBlob : Used for stack unrolling |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
57 |
// SafepointBlob : Used to handle illegal instruction exceptions |
1 | 58 |
// |
59 |
// |
|
60 |
// Layout: |
|
61 |
// - header |
|
62 |
// - relocation |
|
6418 | 63 |
// - content space |
64 |
// - instruction space |
|
1 | 65 |
// - data space |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
66 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
67 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
68 |
class CodeBlobLayout; |
1 | 69 |
|
70 |
class CodeBlob VALUE_OBJ_CLASS_SPEC { |
|
71 |
friend class VMStructs; |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33160
diff
changeset
|
72 |
friend class JVMCIVMStructs; |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
73 |
friend class CodeCacheDumper; |
1 | 74 |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
75 |
protected: |
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
76 |
|
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
77 |
const CompilerType _type; // CompilerType |
1 | 78 |
int _size; // total size of CodeBlob in bytes |
79 |
int _header_size; // size of header (depends on subclass) |
|
80 |
int _frame_complete_offset; // instruction offsets in [0.._frame_complete_offset) have |
|
81 |
// not finished setting up their frame. Beware of pc's in |
|
82 |
// that range. There is a similar range(s) on returns |
|
83 |
// which we don't detect. |
|
84 |
int _data_offset; // offset to where data region begins |
|
85 |
int _frame_size; // size of stack frame |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
86 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
87 |
address _code_begin; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
88 |
address _code_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
89 |
address _content_begin; // address to where content region begins (this includes consts, insts, stubs) |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
90 |
// address _content_end - not required, for all CodeBlobs _code_end == _content_end for now |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
91 |
address _data_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
92 |
address _relocation_begin; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
93 |
address _relocation_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
94 |
|
30590 | 95 |
ImmutableOopMapSet* _oop_maps; // OopMap for this CodeBlob |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
96 |
bool _caller_must_gc_arguments; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
97 |
CodeStrings _strings; |
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
98 |
const char* _name; |
42064
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
99 |
S390_ONLY(int _ctable_offset;) |
1 | 100 |
|
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
101 |
CodeBlob(const char* name, CompilerType type, const CodeBlobLayout& layout, int frame_complete_offset, int frame_size, ImmutableOopMapSet* oop_maps, bool caller_must_gc_arguments); |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
102 |
CodeBlob(const char* name, CompilerType type, const CodeBlobLayout& layout, CodeBuffer* cb, int frame_complete_offset, int frame_size, OopMapSet* oop_maps, bool caller_must_gc_arguments); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
103 |
public: |
1 | 104 |
// Returns the space needed for CodeBlob |
105 |
static unsigned int allocation_size(CodeBuffer* cb, int header_size); |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
106 |
static unsigned int align_code_offset(int offset); |
1 | 107 |
|
108 |
// Deletion |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
109 |
virtual void flush(); |
1 | 110 |
|
111 |
// Typing |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
112 |
virtual bool is_buffer_blob() const { return false; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
113 |
virtual bool is_nmethod() const { return false; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
114 |
virtual bool is_runtime_stub() const { return false; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
115 |
virtual bool is_deoptimization_stub() const { return false; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
116 |
virtual bool is_uncommon_trap_stub() const { return false; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
117 |
virtual bool is_exception_stub() const { return false; } |
5050
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
118 |
virtual bool is_safepoint_stub() const { return false; } |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
119 |
virtual bool is_adapter_blob() const { return false; } |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
120 |
virtual bool is_method_handles_adapter_blob() const { return false; } |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
121 |
virtual bool is_compiled() const { return false; } |
1 | 122 |
|
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
123 |
inline bool is_compiled_by_c1() const { return _type == compiler_c1; }; |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
124 |
inline bool is_compiled_by_c2() const { return _type == compiler_c2; }; |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
125 |
inline bool is_compiled_by_jvmci() const { return _type == compiler_jvmci; }; |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
126 |
inline bool is_compiled_by_shark() const { return _type == compiler_shark; }; |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
38133
diff
changeset
|
127 |
const char* compiler_name() const; |
1 | 128 |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3908
diff
changeset
|
129 |
// Casting |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
130 |
nmethod* as_nmethod_or_null() { return is_nmethod() ? (nmethod*) this : NULL; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
131 |
nmethod* as_nmethod() { assert(is_nmethod(), "must be nmethod"); return (nmethod*) this; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
132 |
CompiledMethod* as_compiled_method_or_null() { return is_compiled() ? (CompiledMethod*) this : NULL; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
133 |
CompiledMethod* as_compiled_method() { assert(is_compiled(), "must be compiled"); return (CompiledMethod*) this; } |
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3908
diff
changeset
|
134 |
|
1 | 135 |
// Boundaries |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
136 |
address header_begin() const { return (address) this; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
137 |
relocInfo* relocation_begin() const { return (relocInfo*) _relocation_begin; }; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
138 |
relocInfo* relocation_end() const { return (relocInfo*) _relocation_end; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
139 |
address content_begin() const { return _content_begin; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
140 |
address content_end() const { return _code_end; } // _code_end == _content_end is true for all types of blobs for now, it is also checked in the constructor |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
141 |
address code_begin() const { return _code_begin; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
142 |
address code_end() const { return _code_end; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
143 |
address data_end() const { return _data_end; } |
1 | 144 |
|
42064
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
145 |
// This field holds the beginning of the const section in the old code buffer. |
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
146 |
// It is needed to fix relocations of pc-relative loads when resizing the |
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
147 |
// the constant pool or moving it. |
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
148 |
S390_ONLY(address ctable_begin() const { return header_begin() + _ctable_offset; }) |
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
149 |
void set_ctable_begin(address ctable) { S390_ONLY(_ctable_offset = ctable - header_begin();) } |
a530dbabe64f
8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents:
42040
diff
changeset
|
150 |
|
1 | 151 |
// Sizes |
152 |
int size() const { return _size; } |
|
153 |
int header_size() const { return _header_size; } |
|
154 |
int relocation_size() const { return (address) relocation_end() - (address) relocation_begin(); } |
|
6418 | 155 |
int content_size() const { return content_end() - content_begin(); } |
156 |
int code_size() const { return code_end() - code_begin(); } |
|
1 | 157 |
|
158 |
// Containment |
|
6418 | 159 |
bool blob_contains(address addr) const { return header_begin() <= addr && addr < data_end(); } |
160 |
bool code_contains(address addr) const { return code_begin() <= addr && addr < code_end(); } |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
161 |
bool contains(address addr) const { return content_begin() <= addr && addr < content_end(); } |
42581
2fdb039ea5b5
8169941: CodeBlob::is_frame_complete_at() does not honor CodeOffsets::frame_never_safe
thartmann
parents:
42064
diff
changeset
|
162 |
bool is_frame_complete_at(address addr) const { return _frame_complete_offset != CodeOffsets::frame_never_safe && |
2fdb039ea5b5
8169941: CodeBlob::is_frame_complete_at() does not honor CodeOffsets::frame_never_safe
thartmann
parents:
42064
diff
changeset
|
163 |
code_contains(addr) && addr >= code_begin() + _frame_complete_offset; } |
1 | 164 |
|
165 |
// CodeCache support: really only used by the nmethods, but in order to get |
|
166 |
// asserts and certain bookkeeping to work in the CodeCache they are defined |
|
167 |
// virtual here. |
|
168 |
virtual bool is_zombie() const { return false; } |
|
169 |
virtual bool is_locked_by_vm() const { return false; } |
|
170 |
||
171 |
virtual bool is_unloaded() const { return false; } |
|
172 |
virtual bool is_not_entrant() const { return false; } |
|
173 |
||
174 |
// GC support |
|
175 |
virtual bool is_alive() const = 0; |
|
176 |
||
177 |
// OopMap for frame |
|
30590 | 178 |
ImmutableOopMapSet* oop_maps() const { return _oop_maps; } |
1 | 179 |
void set_oop_maps(OopMapSet* p); |
30590 | 180 |
const ImmutableOopMap* oop_map_for_return_address(address return_address); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
181 |
virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) = 0; |
1 | 182 |
|
183 |
// Frame support |
|
184 |
int frame_size() const { return _frame_size; } |
|
185 |
void set_frame_size(int size) { _frame_size = size; } |
|
186 |
||
187 |
// Returns true, if the next frame is responsible for GC'ing oops passed as arguments |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
188 |
bool caller_must_gc_arguments(JavaThread* thread) const { return _caller_must_gc_arguments; } |
1 | 189 |
|
190 |
// Naming |
|
191 |
const char* name() const { return _name; } |
|
192 |
void set_name(const char* name) { _name = name; } |
|
193 |
||
194 |
// Debugging |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
195 |
virtual void verify() = 0; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
196 |
virtual void print() const { print_on(tty); }; |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
197 |
virtual void print_on(outputStream* st) const; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
198 |
virtual void print_value_on(outputStream* st) const; |
35542
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35123
diff
changeset
|
199 |
void print_code(); |
1 | 200 |
|
201 |
// Print the comment associated with offset on stream, if there is one |
|
13887
89b873bcc55b
7200163: add CodeComments functionality to assember stubs
kvn
parents:
13728
diff
changeset
|
202 |
virtual void print_block_comment(outputStream* stream, address block_begin) const { |
6418 | 203 |
intptr_t offset = (intptr_t)(block_begin - code_begin()); |
16368
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
13887
diff
changeset
|
204 |
_strings.print_block_comment(stream, offset); |
1 | 205 |
} |
206 |
||
207 |
// Transfer ownership of comments to this CodeBlob |
|
16368
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
13887
diff
changeset
|
208 |
void set_strings(CodeStrings& strings) { |
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
13887
diff
changeset
|
209 |
_strings.assign(strings); |
1 | 210 |
} |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
211 |
|
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
212 |
static ByteSize name_field_offset() { |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
213 |
return byte_offset_of(CodeBlob, _name); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
214 |
} |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
215 |
|
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
216 |
static ByteSize oop_maps_field_offset() { |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
217 |
return byte_offset_of(CodeBlob, _oop_maps); |
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
30590
diff
changeset
|
218 |
} |
1 | 219 |
}; |
220 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
221 |
class CodeBlobLayout : public StackObj { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
222 |
private: |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
223 |
int _size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
224 |
int _header_size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
225 |
int _relocation_size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
226 |
int _content_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
227 |
int _code_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
228 |
int _data_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
229 |
address _code_begin; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
230 |
address _code_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
231 |
address _content_begin; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
232 |
address _content_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
233 |
address _data_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
234 |
address _relocation_begin; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
235 |
address _relocation_end; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
236 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
237 |
public: |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
238 |
CodeBlobLayout(address code_begin, address code_end, address content_begin, address content_end, address data_end, address relocation_begin, address relocation_end) : |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
239 |
_size(0), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
240 |
_header_size(0), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
241 |
_relocation_size(0), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
242 |
_content_offset(0), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
243 |
_code_offset(0), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
244 |
_data_offset(0), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
245 |
_content_begin(content_begin), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
246 |
_content_end(content_end), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
247 |
_code_begin(code_begin), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
248 |
_code_end(code_end), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
249 |
_data_end(data_end), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
250 |
_relocation_begin(relocation_begin), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
251 |
_relocation_end(relocation_end) |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
252 |
{ |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
253 |
} |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
254 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
255 |
CodeBlobLayout(const address start, int size, int header_size, int relocation_size, int data_offset) : |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
256 |
_size(size), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
257 |
_header_size(header_size), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
258 |
_relocation_size(relocation_size), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
259 |
_content_offset(CodeBlob::align_code_offset(_header_size + _relocation_size)), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
260 |
_code_offset(_content_offset), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
261 |
_data_offset(data_offset) |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
262 |
{ |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
263 |
assert(_relocation_size == round_to(_relocation_size, oopSize), "unaligned size"); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
264 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
265 |
_code_begin = (address) start + _code_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
266 |
_code_end = (address) start + _data_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
267 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
268 |
_content_begin = (address) start + _content_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
269 |
_content_end = (address) start + _data_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
270 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
271 |
_data_end = (address) start + _size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
272 |
_relocation_begin = (address) start + _header_size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
273 |
_relocation_end = _relocation_begin + _relocation_size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
274 |
} |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
275 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
276 |
CodeBlobLayout(const address start, int size, int header_size, const CodeBuffer* cb) : |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
277 |
_size(size), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
278 |
_header_size(header_size), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
279 |
_relocation_size(round_to(cb->total_relocation_size(), oopSize)), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
280 |
_content_offset(CodeBlob::align_code_offset(_header_size + _relocation_size)), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
281 |
_code_offset(_content_offset + cb->total_offset_of(cb->insts())), |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
282 |
_data_offset(_content_offset + round_to(cb->total_content_size(), oopSize)) |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
283 |
{ |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
284 |
assert(_relocation_size == round_to(_relocation_size, oopSize), "unaligned size"); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
285 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
286 |
_code_begin = (address) start + _code_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
287 |
_code_end = (address) start + _data_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
288 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
289 |
_content_begin = (address) start + _content_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
290 |
_content_end = (address) start + _data_offset; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
291 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
292 |
_data_end = (address) start + _size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
293 |
_relocation_begin = (address) start + _header_size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
294 |
_relocation_end = _relocation_begin + _relocation_size; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
295 |
} |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
296 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
297 |
int size() const { return _size; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
298 |
int header_size() const { return _header_size; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
299 |
int relocation_size() const { return _relocation_size; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
300 |
int content_offset() const { return _content_offset; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
301 |
int code_offset() const { return _code_offset; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
302 |
int data_offset() const { return _data_offset; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
303 |
address code_begin() const { return _code_begin; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
304 |
address code_end() const { return _code_end; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
305 |
address data_end() const { return _data_end; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
306 |
address relocation_begin() const { return _relocation_begin; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
307 |
address relocation_end() const { return _relocation_end; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
308 |
address content_begin() const { return _content_begin; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
309 |
address content_end() const { return _content_end; } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
310 |
}; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
311 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
312 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
313 |
class RuntimeBlob : public CodeBlob { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
314 |
friend class VMStructs; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
315 |
public: |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
316 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
317 |
// Creation |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
318 |
// a) simple CodeBlob |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
319 |
// frame_complete is the offset from the beginning of the instructions |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
320 |
// to where the frame setup (from stackwalk viewpoint) is complete. |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
321 |
RuntimeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
322 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
323 |
// b) full CodeBlob |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
324 |
RuntimeBlob( |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
325 |
const char* name, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
326 |
CodeBuffer* cb, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
327 |
int header_size, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
328 |
int size, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
329 |
int frame_complete, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
330 |
int frame_size, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
331 |
OopMapSet* oop_maps, |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
332 |
bool caller_must_gc_arguments = false |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
333 |
); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
334 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
335 |
// GC support |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
336 |
virtual bool is_alive() const = 0; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
337 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
338 |
void verify(); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
339 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
340 |
// OopMap for frame |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
341 |
virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { ShouldNotReachHere(); } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
342 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
343 |
// Debugging |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
344 |
void print() const { print_on(tty); } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
345 |
virtual void print_on(outputStream* st) const { CodeBlob::print_on(st); } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
346 |
virtual void print_value_on(outputStream* st) const { CodeBlob::print_value_on(st); } |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
347 |
|
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
348 |
// Deal with Disassembler, VTune, Forte, JvmtiExport, MemoryService. |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
349 |
static void trace_new_stub(RuntimeBlob* blob, const char* name1, const char* name2 = ""); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
350 |
}; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
351 |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
352 |
class WhiteBox; |
1 | 353 |
//---------------------------------------------------------------------------------------------------- |
354 |
// BufferBlob: used to hold non-relocatable machine code such as the interpreter, stubroutines, etc. |
|
355 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
356 |
class BufferBlob: public RuntimeBlob { |
1 | 357 |
friend class VMStructs; |
5050
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
358 |
friend class AdapterBlob; |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
359 |
friend class MethodHandlesAdapterBlob; |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
360 |
friend class WhiteBox; |
5050
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
361 |
|
1 | 362 |
private: |
363 |
// Creation support |
|
364 |
BufferBlob(const char* name, int size); |
|
365 |
BufferBlob(const char* name, int size, CodeBuffer* cb); |
|
366 |
||
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26919
diff
changeset
|
367 |
void* operator new(size_t s, unsigned size) throw(); |
1 | 368 |
|
369 |
public: |
|
370 |
// Creation |
|
371 |
static BufferBlob* create(const char* name, int buffer_size); |
|
372 |
static BufferBlob* create(const char* name, CodeBuffer* cb); |
|
373 |
||
374 |
static void free(BufferBlob* buf); |
|
375 |
||
376 |
// Typing |
|
5050
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
377 |
virtual bool is_buffer_blob() const { return true; } |
1 | 378 |
|
379 |
// GC/Verification support |
|
380 |
void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ } |
|
381 |
bool is_alive() const { return true; } |
|
382 |
||
383 |
void verify(); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
384 |
void print_on(outputStream* st) const; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
385 |
void print_value_on(outputStream* st) const; |
1 | 386 |
}; |
387 |
||
388 |
||
389 |
//---------------------------------------------------------------------------------------------------- |
|
5050
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
390 |
// AdapterBlob: used to hold C2I/I2C adapters |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
391 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
392 |
class AdapterBlob: public BufferBlob { |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
393 |
private: |
6065 | 394 |
AdapterBlob(int size, CodeBuffer* cb); |
5050
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
395 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
396 |
public: |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
397 |
// Creation |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
398 |
static AdapterBlob* create(CodeBuffer* cb); |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
399 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
400 |
// Typing |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
401 |
virtual bool is_adapter_blob() const { return true; } |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
402 |
}; |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
403 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
404 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
405 |
//---------------------------------------------------------------------------------------------------- |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
406 |
// MethodHandlesAdapterBlob: used to hold MethodHandles adapters |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
407 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
408 |
class MethodHandlesAdapterBlob: public BufferBlob { |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
409 |
private: |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
410 |
MethodHandlesAdapterBlob(int size) : BufferBlob("MethodHandles adapters", size) {} |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
411 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
412 |
public: |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
413 |
// Creation |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
414 |
static MethodHandlesAdapterBlob* create(int buffer_size); |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
415 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
416 |
// Typing |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
417 |
virtual bool is_method_handles_adapter_blob() const { return true; } |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
418 |
}; |
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
419 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
420 |
|
47ecd86932ce
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents:
4584
diff
changeset
|
421 |
//---------------------------------------------------------------------------------------------------- |
1 | 422 |
// RuntimeStub: describes stubs used by compiled code to call a (static) C++ runtime routine |
423 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
424 |
class RuntimeStub: public RuntimeBlob { |
1 | 425 |
friend class VMStructs; |
426 |
private: |
|
427 |
// Creation support |
|
428 |
RuntimeStub( |
|
429 |
const char* name, |
|
430 |
CodeBuffer* cb, |
|
431 |
int size, |
|
432 |
int frame_complete, |
|
433 |
int frame_size, |
|
434 |
OopMapSet* oop_maps, |
|
435 |
bool caller_must_gc_arguments |
|
436 |
); |
|
437 |
||
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
16368
diff
changeset
|
438 |
void* operator new(size_t s, unsigned size) throw(); |
1 | 439 |
|
440 |
public: |
|
441 |
// Creation |
|
442 |
static RuntimeStub* new_runtime_stub( |
|
443 |
const char* stub_name, |
|
444 |
CodeBuffer* cb, |
|
445 |
int frame_complete, |
|
446 |
int frame_size, |
|
447 |
OopMapSet* oop_maps, |
|
448 |
bool caller_must_gc_arguments |
|
449 |
); |
|
450 |
||
451 |
// Typing |
|
452 |
bool is_runtime_stub() const { return true; } |
|
453 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
454 |
address entry_point() const { return code_begin(); } |
1 | 455 |
|
456 |
// GC/Verification support |
|
457 |
void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ } |
|
458 |
bool is_alive() const { return true; } |
|
459 |
||
460 |
void verify(); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
461 |
void print_on(outputStream* st) const; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
462 |
void print_value_on(outputStream* st) const; |
1 | 463 |
}; |
464 |
||
465 |
||
466 |
//---------------------------------------------------------------------------------------------------- |
|
467 |
// Super-class for all blobs that exist in only one instance. Implements default behaviour. |
|
468 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
469 |
class SingletonBlob: public RuntimeBlob { |
1 | 470 |
friend class VMStructs; |
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
7397
diff
changeset
|
471 |
|
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
7397
diff
changeset
|
472 |
protected: |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
16368
diff
changeset
|
473 |
void* operator new(size_t s, unsigned size) throw(); |
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
7397
diff
changeset
|
474 |
|
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
7397
diff
changeset
|
475 |
public: |
1 | 476 |
SingletonBlob( |
477 |
const char* name, |
|
478 |
CodeBuffer* cb, |
|
479 |
int header_size, |
|
480 |
int size, |
|
481 |
int frame_size, |
|
482 |
OopMapSet* oop_maps |
|
483 |
) |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
484 |
: RuntimeBlob(name, cb, header_size, size, CodeOffsets::frame_never_safe, frame_size, oop_maps) |
6418 | 485 |
{}; |
1 | 486 |
|
6418 | 487 |
address entry_point() { return code_begin(); } |
1 | 488 |
|
6418 | 489 |
bool is_alive() const { return true; } |
490 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
491 |
// GC/Verification support |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35542
diff
changeset
|
492 |
void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ } |
6418 | 493 |
void verify(); // does nothing |
494 |
void print_on(outputStream* st) const; |
|
495 |
void print_value_on(outputStream* st) const; |
|
1 | 496 |
}; |
497 |
||
498 |
||
499 |
//---------------------------------------------------------------------------------------------------- |
|
500 |
// DeoptimizationBlob |
|
501 |
||
502 |
class DeoptimizationBlob: public SingletonBlob { |
|
503 |
friend class VMStructs; |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33160
diff
changeset
|
504 |
friend class JVMCIVMStructs; |
1 | 505 |
private: |
506 |
int _unpack_offset; |
|
507 |
int _unpack_with_exception; |
|
508 |
int _unpack_with_reexecution; |
|
509 |
||
510 |
int _unpack_with_exception_in_tls; |
|
511 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
512 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
513 |
// Offsets when JVMCI calls uncommon_trap. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
514 |
int _uncommon_trap_offset; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
515 |
int _implicit_exception_uncommon_trap_offset; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
516 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
517 |
|
1 | 518 |
// Creation support |
519 |
DeoptimizationBlob( |
|
520 |
CodeBuffer* cb, |
|
521 |
int size, |
|
522 |
OopMapSet* oop_maps, |
|
523 |
int unpack_offset, |
|
524 |
int unpack_with_exception_offset, |
|
525 |
int unpack_with_reexecution_offset, |
|
526 |
int frame_size |
|
527 |
); |
|
528 |
||
529 |
public: |
|
530 |
// Creation |
|
531 |
static DeoptimizationBlob* create( |
|
532 |
CodeBuffer* cb, |
|
533 |
OopMapSet* oop_maps, |
|
534 |
int unpack_offset, |
|
535 |
int unpack_with_exception_offset, |
|
536 |
int unpack_with_reexecution_offset, |
|
537 |
int frame_size |
|
538 |
); |
|
539 |
||
540 |
// Typing |
|
541 |
bool is_deoptimization_stub() const { return true; } |
|
542 |
bool exception_address_is_unpack_entry(address pc) const { |
|
543 |
address unpack_pc = unpack(); |
|
544 |
return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc); |
|
545 |
} |
|
546 |
||
547 |
// GC for args |
|
548 |
void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* Nothing to do */ } |
|
549 |
||
550 |
// Printing |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6065
diff
changeset
|
551 |
void print_value_on(outputStream* st) const; |
1 | 552 |
|
6418 | 553 |
address unpack() const { return code_begin() + _unpack_offset; } |
554 |
address unpack_with_exception() const { return code_begin() + _unpack_with_exception; } |
|
555 |
address unpack_with_reexecution() const { return code_begin() + _unpack_with_reexecution; } |
|
1 | 556 |
|
557 |
// Alternate entry point for C1 where the exception and issuing pc |
|
558 |
// are in JavaThread::_exception_oop and JavaThread::_exception_pc |
|
559 |
// instead of being in registers. This is needed because C1 doesn't |
|
560 |
// model exception paths in a way that keeps these registers free so |
|
561 |
// there may be live values in those registers during deopt. |
|
562 |
void set_unpack_with_exception_in_tls_offset(int offset) { |
|
563 |
_unpack_with_exception_in_tls = offset; |
|
6418 | 564 |
assert(code_contains(code_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob"); |
1 | 565 |
} |
6418 | 566 |
address unpack_with_exception_in_tls() const { return code_begin() + _unpack_with_exception_in_tls; } |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
567 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
568 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
569 |
// Offsets when JVMCI calls uncommon_trap. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
570 |
void set_uncommon_trap_offset(int offset) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
571 |
_uncommon_trap_offset = offset; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
572 |
assert(contains(code_begin() + _uncommon_trap_offset), "must be PC inside codeblob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
573 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
574 |
address uncommon_trap() const { return code_begin() + _uncommon_trap_offset; } |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
575 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
576 |
void set_implicit_exception_uncommon_trap_offset(int offset) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
577 |
_implicit_exception_uncommon_trap_offset = offset; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
578 |
assert(contains(code_begin() + _implicit_exception_uncommon_trap_offset), "must be PC inside codeblob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
579 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
580 |
address implicit_exception_uncommon_trap() const { return code_begin() + _implicit_exception_uncommon_trap_offset; } |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31620
diff
changeset
|
581 |
#endif // INCLUDE_JVMCI |
1 | 582 |
}; |
583 |
||
584 |
||
585 |
//---------------------------------------------------------------------------------------------------- |
|
586 |
// UncommonTrapBlob (currently only used by Compiler 2) |
|
587 |
||
588 |
#ifdef COMPILER2 |
|
589 |
||
590 |
class UncommonTrapBlob: public SingletonBlob { |
|
591 |
friend class VMStructs; |
|
592 |
private: |
|
593 |
// Creation support |
|
594 |
UncommonTrapBlob( |
|
595 |
CodeBuffer* cb, |
|
596 |
int size, |
|
597 |
OopMapSet* oop_maps, |
|
598 |
int frame_size |
|
599 |
); |
|
600 |
||
601 |
public: |
|
602 |
// Creation |
|
603 |
static UncommonTrapBlob* create( |
|
604 |
CodeBuffer* cb, |
|
605 |
OopMapSet* oop_maps, |
|
606 |
int frame_size |
|
607 |
); |
|
608 |
||
609 |
// GC for args |
|
610 |
void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* nothing to do */ } |
|
611 |
||
612 |
// Typing |
|
613 |
bool is_uncommon_trap_stub() const { return true; } |
|
614 |
}; |
|
615 |
||
616 |
||
617 |
//---------------------------------------------------------------------------------------------------- |
|
618 |
// ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2) |
|
619 |
||
620 |
class ExceptionBlob: public SingletonBlob { |
|
621 |
friend class VMStructs; |
|
622 |
private: |
|
623 |
// Creation support |
|
624 |
ExceptionBlob( |
|
625 |
CodeBuffer* cb, |
|
626 |
int size, |
|
627 |
OopMapSet* oop_maps, |
|
628 |
int frame_size |
|
629 |
); |
|
630 |
||
631 |
public: |
|
632 |
// Creation |
|
633 |
static ExceptionBlob* create( |
|
634 |
CodeBuffer* cb, |
|
635 |
OopMapSet* oop_maps, |
|
636 |
int frame_size |
|
637 |
); |
|
638 |
||
639 |
// GC for args |
|
640 |
void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ } |
|
641 |
||
642 |
// Typing |
|
643 |
bool is_exception_stub() const { return true; } |
|
644 |
}; |
|
645 |
#endif // COMPILER2 |
|
646 |
||
647 |
||
648 |
//---------------------------------------------------------------------------------------------------- |
|
649 |
// SafepointBlob: handles illegal_instruction exceptions during a safepoint |
|
650 |
||
651 |
class SafepointBlob: public SingletonBlob { |
|
652 |
friend class VMStructs; |
|
653 |
private: |
|
654 |
// Creation support |
|
655 |
SafepointBlob( |
|
656 |
CodeBuffer* cb, |
|
657 |
int size, |
|
658 |
OopMapSet* oop_maps, |
|
659 |
int frame_size |
|
660 |
); |
|
661 |
||
662 |
public: |
|
663 |
// Creation |
|
664 |
static SafepointBlob* create( |
|
665 |
CodeBuffer* cb, |
|
666 |
OopMapSet* oop_maps, |
|
667 |
int frame_size |
|
668 |
); |
|
669 |
||
670 |
// GC for args |
|
671 |
void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ } |
|
672 |
||
673 |
// Typing |
|
674 |
bool is_safepoint_stub() const { return true; } |
|
675 |
}; |
|
7397 | 676 |
|
677 |
#endif // SHARE_VM_CODE_CODEBLOB_HPP |