annotate src/share/vm/runtime/vframeArray.hpp @ 20804:7848fc12602b

Merge with jdk8u40-b25
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 07 Apr 2015 14:58:49 +0200
parents 52b4284cb496 d3f3f7677537
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
14223
de6a9e811145 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 8727
diff changeset
2 * Copyright (c) 1997, 2013, 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_VFRAMEARRAY_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_VFRAMEARRAY_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 "oops/arrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/frame.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/monitorChunk.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "utilities/growableArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // A vframeArray is an array used for momentarily storing off stack Java method activations
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // during deoptimization. Essentially it is an array of vframes where each vframe
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // data is stored off stack. This structure will never exist across a safepoint so
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // there is no need to gc any oops that are stored in the structure.
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class LocalsClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class ExpressionStackClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class MonitorStackClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class MonitorArrayElement;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class StackValueCollection;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // A vframeArrayElement is an element of a vframeArray. Each element
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // represent an interpreter frame which will eventually be created.
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 class vframeArrayElement : public _ValueObj {
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3369
diff changeset
50 friend class VMStructs;
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3369
diff changeset
51
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 frame _frame; // the interpreter frame we will unpack into
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
55 int _bci; // raw bci for this vframe
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
56 bool _reexecute; // whether sould we reexecute this bytecode
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
57 Method* _method; // the method for this vframe
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 MonitorChunk* _monitors; // active monitors for this vframe
a61af66fc99e Initial load
duke
parents:
diff changeset
59 StackValueCollection* _locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 StackValueCollection* _expressions;
20705
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
61 #ifdef ASSERT
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
62 bool _removed_monitors;
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
63 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 frame* iframe(void) { return &_frame; }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 int bci(void) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int raw_bci(void) const { return _bci; }
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 0
diff changeset
72 bool should_reexecute(void) const { return _reexecute; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
74 Method* method(void) const { return _method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 MonitorChunk* monitors(void) const { return _monitors; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void free_monitors(JavaThread* jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 StackValueCollection* locals(void) const { return _locals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 StackValueCollection* expressions(void) const { return _expressions; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
20705
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
84 void fill_in(compiledVFrame* vf, bool realloc_failures);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Formerly part of deoptimizedVFrame
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Returns the on stack word size for this frame
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // callee_parameters is the number of callee locals residing inside this frame
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 14223
diff changeset
91 int on_stack_size(int callee_parameters,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int callee_locals,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 bool is_top_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int popframe_extra_stack_expression_els) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Unpacks the element to skeletal interpreter frame
3369
3d2ab563047a 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 1972
diff changeset
97 void unpack_on_stack(int caller_actual_parameters,
3d2ab563047a 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 1972
diff changeset
98 int callee_parameters,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 int callee_locals,
a61af66fc99e Initial load
duke
parents:
diff changeset
100 frame* caller,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 bool is_top_frame,
8727
0094485b46c7 8009761: Deoptimization on sparc doesn't set Llast_SP correctly in the interpreter frames it creates
roland
parents: 6725
diff changeset
102 bool is_bottom_frame,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 int exec_mode);
a61af66fc99e Initial load
duke
parents:
diff changeset
104
20705
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
105 #ifdef ASSERT
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
106 void set_removed_monitors() {
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
107 _removed_monitors = true;
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
108 }
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
109 #endif
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
110
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void print(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
114 };
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // this can be a ResourceObj if we don't save the last one...
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // but it does make debugging easier even if we can't look
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // at the data in each vframeElement
a61af66fc99e Initial load
duke
parents:
diff changeset
119
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3939
diff changeset
120 class vframeArray: public CHeapObj<mtCompiler> {
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3369
diff changeset
121 friend class VMStructs;
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3369
diff changeset
122
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Here is what a vframeArray looks like in memory
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
129 fixed part
a61af66fc99e Initial load
duke
parents:
diff changeset
130 description of the original frame
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _frames - number of vframes in this array
a61af66fc99e Initial load
duke
parents:
diff changeset
132 adapter info
a61af66fc99e Initial load
duke
parents:
diff changeset
133 callee register save area
a61af66fc99e Initial load
duke
parents:
diff changeset
134 variable part
a61af66fc99e Initial load
duke
parents:
diff changeset
135 vframeArrayElement [ 0 ]
a61af66fc99e Initial load
duke
parents:
diff changeset
136 ...
a61af66fc99e Initial load
duke
parents:
diff changeset
137 vframeArrayElement [_frames - 1]
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 */
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 JavaThread* _owner_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 vframeArray* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 frame _original; // the original frame of the deoptee
a61af66fc99e Initial load
duke
parents:
diff changeset
144 frame _caller; // caller of root frame in vframeArray
a61af66fc99e Initial load
duke
parents:
diff changeset
145 frame _sender;
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 Deoptimization::UnrollBlock* _unroll_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 int _frame_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 int _frames; // number of javavframes in the array (does not count any adapter)
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 intptr_t _callee_registers[RegisterMap::reg_count];
a61af66fc99e Initial load
duke
parents:
diff changeset
153 unsigned char _valid[RegisterMap::reg_count];
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 vframeArrayElement _elements[1]; // First variable section.
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void fill_in_element(int index, compiledVFrame* vf);
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 bool is_location_valid(int i) const { return _valid[i] != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void set_location_valid(int i, bool valid) { _valid[i] = valid; }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Tells whether index is within bounds.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 bool is_within_bounds(int index) const { return 0 <= index && index < frames(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Accessores for instance variable
a61af66fc99e Initial load
duke
parents:
diff changeset
169 int frames() const { return _frames; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 static vframeArray* allocate(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk,
20705
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
172 RegisterMap* reg_map, frame sender, frame caller, frame self,
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
173 bool realloc_failures);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 vframeArrayElement* element(int index) { assert(is_within_bounds(index), "Bad index"); return &_elements[index]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // Allocates a new vframe in the array and fills the array with vframe information in chunk
20705
d3f3f7677537 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 17980
diff changeset
179 void fill_in(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk, const RegisterMap *reg_map, bool realloc_failures);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Returns the owner of this vframeArray
a61af66fc99e Initial load
duke
parents:
diff changeset
182 JavaThread* owner_thread() const { return _owner_thread; }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // Accessors for next
a61af66fc99e Initial load
duke
parents:
diff changeset
185 vframeArray* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 void set_next(vframeArray* value) { _next = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // Accessors for sp
a61af66fc99e Initial load
duke
parents:
diff changeset
189 intptr_t* sp() const { return _original.sp(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 intptr_t* unextended_sp() const { return _original.unextended_sp(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 address original_pc() const { return _original.pc(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 frame original() const { return _original; }
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 frame caller() const { return _caller; }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 frame sender() const { return _sender; }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Accessors for unroll block
a61af66fc99e Initial load
duke
parents:
diff changeset
202 Deoptimization::UnrollBlock* unroll_block() const { return _unroll_block; }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void set_unroll_block(Deoptimization::UnrollBlock* block) { _unroll_block = block; }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Returns the size of the frame that got deoptimized
a61af66fc99e Initial load
duke
parents:
diff changeset
206 int frame_size() const { return _frame_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // Unpack the array on the stack passed in stack interval
3369
3d2ab563047a 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 1972
diff changeset
209 void unpack_to_stack(frame &unpack_frame, int exec_mode, int caller_actual_parameters);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Deallocates monitor chunks allocated during deoptimization.
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // This should be called when the array is not used anymore.
a61af66fc99e Initial load
duke
parents:
diff changeset
213 void deallocate_monitor_chunks();
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // Accessor for register map
a61af66fc99e Initial load
duke
parents:
diff changeset
218 address register_location(int i) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 void print_on_2(outputStream* st) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 void print_value_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Comparing
a61af66fc99e Initial load
duke
parents:
diff changeset
225 bool structural_compare(JavaThread* thread, GrowableArray<compiledVFrame*>* chunk);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
229
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
230 #endif // SHARE_VM_RUNTIME_VFRAMEARRAY_HPP