annotate src/share/vm/runtime/vframe_hp.hpp @ 18096:ca6d25be853b jdk8u25-b13

8044269: Analysis of archive files. Summary: Add checksum verification. Reviewed-by: iklam, dholmes, mschoene
author jiangli
date Tue, 12 Aug 2014 17:46:16 -0400
parents da91efe96a93
children e522a00b91aa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2 * Copyright (c) 1997, 2012, 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: 948
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 948
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: 948
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: 1552
diff changeset
25 #ifndef SHARE_VM_RUNTIME_VFRAME_HP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_VFRAME_HP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class compiledVFrame: public javaVFrame {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // JVM state
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
33 Method* method() const;
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
34 int bci() const;
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
35 bool should_reexecute() const;
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
36 StackValueCollection* locals() const;
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
37 StackValueCollection* expressions() const;
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
38 GrowableArray<MonitorInfo*>* monitors() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void set_locals(StackValueCollection* values) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Virtuals defined in vframe
a61af66fc99e Initial load
duke
parents:
diff changeset
43 bool is_compiled_frame() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 vframe* sender() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 bool is_top() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Casting
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static compiledVFrame* cast(vframe* vf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 assert(vf == NULL || vf->is_compiled_frame(), "must be compiled frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
50 return (compiledVFrame*) vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // Constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
55 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, nmethod* nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Update a local in a compiled frame. Update happens when deopt occurs
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void update_local(BasicType type, int index, jvalue value);
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Returns the active nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
61 nmethod* code() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Returns the scopeDesc
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ScopeDesc* scope() const { return _scope; }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Returns SynchronizationEntryBCI or bci() (used for synchronization)
a61af66fc99e Initial load
duke
parents:
diff changeset
67 int raw_bci() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ScopeDesc* _scope;
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 //StackValue resolve(ScopeValue* sv) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 BasicLock* resolve_monitor_lock(Location location) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 StackValue *create_stack_value(ScopeValue *sv) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
78 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope);
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
81 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void verify() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
84 };
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // In order to implement set_locals for compiled vframes we must
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // store updated locals in a data structure that contains enough
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // information to recognize equality with a vframe and to store
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // any updated locals.
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 class jvmtiDeferredLocalVariable;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 1972
diff changeset
92 class jvmtiDeferredLocalVariableSet : public CHeapObj<mtCompiler> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
94
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
95 Method* _method;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
96 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 intptr_t* _id;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 GrowableArray<jvmtiDeferredLocalVariable*>* _locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // JVM state
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
102 Method* method() const { return _method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 int bci() const { return _bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 intptr_t* id() const { return _id; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 GrowableArray<jvmtiDeferredLocalVariable*>* locals() const { return _locals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void set_local_at(int idx, BasicType typ, jvalue val);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Does the vframe match this jvmtiDeferredLocalVariableSet
a61af66fc99e Initial load
duke
parents:
diff changeset
109 bool matches(vframe* vf);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // GC
a61af66fc99e Initial load
duke
parents:
diff changeset
111 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // constructor
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
114 jvmtiDeferredLocalVariableSet(Method* method, int bci, intptr_t* id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ~jvmtiDeferredLocalVariableSet();
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 };
a61af66fc99e Initial load
duke
parents:
diff changeset
121
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 1972
diff changeset
122 class jvmtiDeferredLocalVariable : public CHeapObj<mtCompiler> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value);
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 BasicType type(void) { return _type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 int index(void) { return _index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 jvalue value(void) { return _value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Only mutator is for value as only it can change
a61af66fc99e Initial load
duke
parents:
diff changeset
131 void set_value(jvalue value) { _value = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // For gc
a61af66fc99e Initial load
duke
parents:
diff changeset
133 oop* oop_addr(void) { return (oop*) &_value.l; }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 BasicType _type;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 jvalue _value;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 int _index;
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
142
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
143 #endif // SHARE_VM_RUNTIME_VFRAME_HP_HPP