author | jcbeyler |
Tue, 17 Jul 2018 19:59:38 -0700 | |
changeset 51138 | 914f305ba6fa |
parent 48607 | 7fc3d62481ba |
child 53065 | 2f41e4935c34 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
13728
diff
changeset
|
2 |
* Copyright (c) 1997, 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:
3795
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3795
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:
3795
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_VFRAME_HP_HPP |
26 |
#define SHARE_VM_RUNTIME_VFRAME_HP_HPP |
|
27 |
||
28 |
#include "runtime/vframe.hpp" |
|
29 |
||
1 | 30 |
class compiledVFrame: public javaVFrame { |
31 |
public: |
|
32 |
// JVM state |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
33 |
Method* method() const; |
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
34 |
int bci() const; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
35 |
bool should_reexecute() const; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
36 |
StackValueCollection* locals() const; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
37 |
StackValueCollection* expressions() const; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
38 |
GrowableArray<MonitorInfo*>* monitors() const; |
43484
9c95dd31d0da
8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents:
38133
diff
changeset
|
39 |
int vframe_id() const { return _vframe_id; } |
1 | 40 |
|
41 |
void set_locals(StackValueCollection* values) const; |
|
42 |
||
43 |
// Virtuals defined in vframe |
|
44 |
bool is_compiled_frame() const { return true; } |
|
45 |
vframe* sender() const; |
|
46 |
bool is_top() const; |
|
47 |
||
48 |
// Casting |
|
49 |
static compiledVFrame* cast(vframe* vf) { |
|
50 |
assert(vf == NULL || vf->is_compiled_frame(), "must be compiled frame"); |
|
51 |
return (compiledVFrame*) vf; |
|
52 |
} |
|
53 |
||
48607
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
54 |
void update_deferred_value(BasicType type, int index, jvalue value); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
55 |
|
1 | 56 |
public: |
57 |
// Constructors |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
13728
diff
changeset
|
58 |
compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, CompiledMethod* nm); |
1 | 59 |
|
60 |
// Update a local in a compiled frame. Update happens when deopt occurs |
|
61 |
void update_local(BasicType type, int index, jvalue value); |
|
62 |
||
48607
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
63 |
// Update an expression stack value in a compiled frame. Update happens when deopt occurs |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
64 |
void update_stack(BasicType type, int index, jvalue value); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
65 |
|
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
66 |
// Update a lock value in a compiled frame. Update happens when deopt occurs |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
67 |
void update_monitor(int index, MonitorInfo* value); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
68 |
|
1 | 69 |
// Returns the active nmethod |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
13728
diff
changeset
|
70 |
CompiledMethod* code() const; |
1 | 71 |
|
72 |
// Returns the scopeDesc |
|
73 |
ScopeDesc* scope() const { return _scope; } |
|
74 |
||
75 |
// Returns SynchronizationEntryBCI or bci() (used for synchronization) |
|
76 |
int raw_bci() const; |
|
77 |
||
78 |
protected: |
|
79 |
ScopeDesc* _scope; |
|
43484
9c95dd31d0da
8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents:
38133
diff
changeset
|
80 |
int _vframe_id; |
1 | 81 |
|
82 |
//StackValue resolve(ScopeValue* sv) const; |
|
83 |
BasicLock* resolve_monitor_lock(Location location) const; |
|
84 |
StackValue *create_stack_value(ScopeValue *sv) const; |
|
85 |
||
86 |
private: |
|
43484
9c95dd31d0da
8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents:
38133
diff
changeset
|
87 |
compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope, int vframe_id); |
1 | 88 |
|
89 |
#ifndef PRODUCT |
|
90 |
public: |
|
91 |
void verify() const; |
|
92 |
#endif |
|
93 |
}; |
|
94 |
||
95 |
// In order to implement set_locals for compiled vframes we must |
|
96 |
// store updated locals in a data structure that contains enough |
|
97 |
// information to recognize equality with a vframe and to store |
|
98 |
// any updated locals. |
|
99 |
||
100 |
class jvmtiDeferredLocalVariable; |
|
13195 | 101 |
class jvmtiDeferredLocalVariableSet : public CHeapObj<mtCompiler> { |
48607
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
102 |
friend class compiledVFrame; |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
103 |
|
1 | 104 |
private: |
105 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
106 |
Method* _method; |
1 | 107 |
int _bci; |
108 |
intptr_t* _id; |
|
43484
9c95dd31d0da
8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents:
38133
diff
changeset
|
109 |
int _vframe_id; |
1 | 110 |
GrowableArray<jvmtiDeferredLocalVariable*>* _locals; |
111 |
||
48607
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
112 |
void update_value(StackValueCollection* locals, BasicType type, int index, jvalue value); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
113 |
|
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
114 |
void set_value_at(int idx, BasicType typ, jvalue val); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
115 |
|
1 | 116 |
public: |
117 |
// JVM state |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
118 |
Method* method() const { return _method; } |
1 | 119 |
int bci() const { return _bci; } |
120 |
intptr_t* id() const { return _id; } |
|
43484
9c95dd31d0da
8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents:
38133
diff
changeset
|
121 |
int vframe_id() const { return _vframe_id; } |
48607
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
122 |
|
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
123 |
void update_locals(StackValueCollection* locals); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
124 |
void update_stack(StackValueCollection* locals); |
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
125 |
void update_monitors(GrowableArray<MonitorInfo*>* monitors); |
1 | 126 |
|
127 |
// Does the vframe match this jvmtiDeferredLocalVariableSet |
|
48607
7fc3d62481ba
8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents:
47216
diff
changeset
|
128 |
bool matches(const vframe* vf); |
1 | 129 |
// GC |
130 |
void oops_do(OopClosure* f); |
|
131 |
||
132 |
// constructor |
|
43484
9c95dd31d0da
8173309: jvmtiDeferredLocalVariableSet may update the wrong frame
never
parents:
38133
diff
changeset
|
133 |
jvmtiDeferredLocalVariableSet(Method* method, int bci, intptr_t* id, int vframe_id); |
1 | 134 |
|
135 |
// destructor |
|
136 |
~jvmtiDeferredLocalVariableSet(); |
|
137 |
||
138 |
||
139 |
}; |
|
140 |
||
13195 | 141 |
class jvmtiDeferredLocalVariable : public CHeapObj<mtCompiler> { |
1 | 142 |
public: |
143 |
||
144 |
jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value); |
|
145 |
||
146 |
BasicType type(void) { return _type; } |
|
147 |
int index(void) { return _index; } |
|
148 |
jvalue value(void) { return _value; } |
|
149 |
// Only mutator is for value as only it can change |
|
150 |
void set_value(jvalue value) { _value = value; } |
|
151 |
// For gc |
|
152 |
oop* oop_addr(void) { return (oop*) &_value.l; } |
|
153 |
||
154 |
private: |
|
155 |
||
156 |
BasicType _type; |
|
157 |
jvalue _value; |
|
158 |
int _index; |
|
159 |
||
160 |
}; |
|
7397 | 161 |
|
162 |
#endif // SHARE_VM_RUNTIME_VFRAME_HP_HPP |