annotate src/share/vm/runtime/vframe_hp.hpp @ 16:f8236e79048a

6664627: Merge changes made only in hotspot 11 forward to jdk 7 Reviewed-by: jcoomes
author dcubed
date Wed, 05 Dec 2007 09:00:00 -0800
parents a61af66fc99e
children 9987d9d5eb0e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class compiledVFrame: public javaVFrame {
a61af66fc99e Initial load
duke
parents:
diff changeset
26 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // JVM state
a61af66fc99e Initial load
duke
parents:
diff changeset
28 methodOop method() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 int bci() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 StackValueCollection* locals() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 StackValueCollection* expressions() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 GrowableArray<MonitorInfo*>* monitors() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 void set_locals(StackValueCollection* values) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Virtuals defined in vframe
a61af66fc99e Initial load
duke
parents:
diff changeset
37 bool is_compiled_frame() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 vframe* sender() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 bool is_top() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Casting
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static compiledVFrame* cast(vframe* vf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 assert(vf == NULL || vf->is_compiled_frame(), "must be compiled frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return (compiledVFrame*) vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // Constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
49 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, nmethod* nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // Update a local in a compiled frame. Update happens when deopt occurs
a61af66fc99e Initial load
duke
parents:
diff changeset
52 void update_local(BasicType type, int index, jvalue value);
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // Returns the active nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
55 nmethod* code() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Returns the scopeDesc
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ScopeDesc* scope() const { return _scope; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Returns SynchronizationEntryBCI or bci() (used for synchronization)
a61af66fc99e Initial load
duke
parents:
diff changeset
61 int raw_bci() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ScopeDesc* _scope;
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 //StackValue resolve(ScopeValue* sv) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 BasicLock* resolve_monitor_lock(Location location) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 StackValue *create_stack_value(ScopeValue *sv) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
72 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope);
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
75 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void verify() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // In order to implement set_locals for compiled vframes we must
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // store updated locals in a data structure that contains enough
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // information to recognize equality with a vframe and to store
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // any updated locals.
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 class jvmtiDeferredLocalVariable;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 class jvmtiDeferredLocalVariableSet : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 methodOop _method; // must be GC'd
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 intptr_t* _id;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 GrowableArray<jvmtiDeferredLocalVariable*>* _locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // JVM state
a61af66fc99e Initial load
duke
parents:
diff changeset
96 methodOop method() const { return _method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 int bci() const { return _bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 intptr_t* id() const { return _id; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99 GrowableArray<jvmtiDeferredLocalVariable*>* locals() const { return _locals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void set_local_at(int idx, BasicType typ, jvalue val);
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Does the vframe match this jvmtiDeferredLocalVariableSet
a61af66fc99e Initial load
duke
parents:
diff changeset
103 bool matches(vframe* vf);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // GC
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
108 jvmtiDeferredLocalVariableSet(methodOop method, int bci, intptr_t* id);
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ~jvmtiDeferredLocalVariableSet();
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 };
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 class jvmtiDeferredLocalVariable : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value);
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 BasicType type(void) { return _type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 int index(void) { return _index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 jvalue value(void) { return _value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Only mutator is for value as only it can change
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void set_value(jvalue value) { _value = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // For gc
a61af66fc99e Initial load
duke
parents:
diff changeset
127 oop* oop_addr(void) { return (oop*) &_value.l; }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 BasicType _type;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 jvalue _value;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 int _index;
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 };