author | cfang |
Thu, 20 Aug 2009 12:42:57 -0700 | |
changeset 3686 | 69c1b5228547 |
parent 3600 | 27aa4477d039 |
child 4894 | 8a76fd3d098d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
3686
69c1b5228547
6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents:
3600
diff
changeset
|
2 |
* Copyright 1997-2009 Sun Microsystems, Inc. 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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
// SimpleScopeDesc is used when all you need to extract from |
|
26 |
// a given pc,nmethod pair is a methodOop and a bci. This is |
|
27 |
// quite a bit faster than allocating a full ScopeDesc, but |
|
28 |
// very limited in abilities. |
|
29 |
||
30 |
class SimpleScopeDesc : public StackObj { |
|
31 |
private: |
|
32 |
methodOop _method; |
|
33 |
int _bci; |
|
34 |
||
35 |
public: |
|
36 |
SimpleScopeDesc(nmethod* code,address pc) { |
|
37 |
PcDesc* pc_desc = code->pc_desc_at(pc); |
|
38 |
assert(pc_desc != NULL, "Must be able to find matching PcDesc"); |
|
39 |
DebugInfoReadStream buffer(code, pc_desc->scope_decode_offset()); |
|
40 |
int ignore_sender = buffer.read_int(); |
|
41 |
_method = methodOop(buffer.read_oop()); |
|
3686
69c1b5228547
6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents:
3600
diff
changeset
|
42 |
_bci = buffer.read_bci(); |
1 | 43 |
} |
44 |
||
45 |
methodOop method() { return _method; } |
|
46 |
int bci() { return _bci; } |
|
47 |
}; |
|
48 |
||
49 |
// ScopeDescs contain the information that makes source-level debugging of |
|
50 |
// nmethods possible; each scopeDesc describes a method activation |
|
51 |
||
52 |
class ScopeDesc : public ResourceObj { |
|
53 |
public: |
|
54 |
// Constructor |
|
3686
69c1b5228547
6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents:
3600
diff
changeset
|
55 |
ScopeDesc(const nmethod* code, int decode_offset, int obj_decode_offset, bool reexecute); |
1 | 56 |
|
57 |
// Calls above, giving default value of "serialized_null" to the |
|
58 |
// "obj_decode_offset" argument. (We don't use a default argument to |
|
59 |
// avoid a .hpp-.hpp dependency.) |
|
3686
69c1b5228547
6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents:
3600
diff
changeset
|
60 |
ScopeDesc(const nmethod* code, int decode_offset, bool reexecute); |
1 | 61 |
|
62 |
// JVM state |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
63 |
methodHandle method() const { return _method; } |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
64 |
int bci() const { return _bci; } |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
65 |
bool should_reexecute() const { return _reexecute; } |
1 | 66 |
|
67 |
GrowableArray<ScopeValue*>* locals(); |
|
68 |
GrowableArray<ScopeValue*>* expressions(); |
|
69 |
GrowableArray<MonitorValue*>* monitors(); |
|
70 |
GrowableArray<ScopeValue*>* objects(); |
|
71 |
||
72 |
// Stack walking, returns NULL if this is the outer most scope. |
|
73 |
ScopeDesc* sender() const; |
|
74 |
||
75 |
// Returns where the scope was decoded |
|
76 |
int decode_offset() const { return _decode_offset; } |
|
77 |
||
78 |
// Tells whether sender() returns NULL |
|
79 |
bool is_top() const; |
|
80 |
// Tells whether sd is equal to this |
|
81 |
bool is_equal(ScopeDesc* sd) const; |
|
82 |
||
83 |
private: |
|
84 |
// Alternative constructor |
|
85 |
ScopeDesc(const ScopeDesc* parent); |
|
86 |
||
87 |
// JVM state |
|
88 |
methodHandle _method; |
|
89 |
int _bci; |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
1
diff
changeset
|
90 |
bool _reexecute; |
1 | 91 |
|
92 |
// Decoding offsets |
|
93 |
int _decode_offset; |
|
94 |
int _sender_decode_offset; |
|
95 |
int _locals_decode_offset; |
|
96 |
int _expressions_decode_offset; |
|
97 |
int _monitors_decode_offset; |
|
98 |
||
99 |
// Object pool |
|
100 |
GrowableArray<ScopeValue*>* _objects; |
|
101 |
||
102 |
// Nmethod information |
|
103 |
const nmethod* _code; |
|
104 |
||
105 |
// Decoding operations |
|
106 |
void decode_body(); |
|
107 |
GrowableArray<ScopeValue*>* decode_scope_values(int decode_offset); |
|
108 |
GrowableArray<MonitorValue*>* decode_monitor_values(int decode_offset); |
|
109 |
GrowableArray<ScopeValue*>* decode_object_values(int decode_offset); |
|
110 |
||
111 |
DebugInfoReadStream* stream_at(int decode_offset) const; |
|
112 |
||
113 |
||
114 |
public: |
|
115 |
// Verification |
|
116 |
void verify(); |
|
117 |
||
118 |
#ifndef PRODUCT |
|
119 |
public: |
|
120 |
// Printing support |
|
121 |
void print_on(outputStream* st) const; |
|
122 |
void print_on(outputStream* st, PcDesc* pd) const; |
|
123 |
void print_value_on(outputStream* st) const; |
|
124 |
#endif |
|
125 |
}; |