File tree 2 files changed +1
-18
lines changed
src/hotspot/share/runtime
2 files changed +1
-18
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ address frame::raw_pc() const {
217
217
// Change the pc in a frame object. This does not change the actual pc in
218
218
// actual frame. To do that use patch_pc.
219
219
//
220
- void frame::set_pc (address newpc ) {
220
+ void frame::set_pc (address newpc) {
221
221
#ifdef ASSERT
222
222
if (_cb != NULL && _cb->is_nmethod ()) {
223
223
assert (!((nmethod*)_cb)->is_deopt_pc (_pc), " invariant violation" );
@@ -231,21 +231,6 @@ void frame::set_pc(address newpc ) {
231
231
232
232
}
233
233
234
- void frame::set_pc_preserve_deopt (address newpc) {
235
- set_pc_preserve_deopt (newpc, CodeCache::find_blob (newpc));
236
- }
237
-
238
- void frame::set_pc_preserve_deopt (address newpc, CodeBlob* cb) {
239
- #ifdef ASSERT
240
- if (_cb != NULL && _cb->is_nmethod ()) {
241
- assert (!((nmethod*)_cb)->is_deopt_pc (_pc), " invariant violation" );
242
- }
243
- #endif // ASSERT
244
-
245
- _pc = newpc;
246
- _cb = cb;
247
- }
248
-
249
234
// type testers
250
235
bool frame::is_ignored_frame () const {
251
236
return false ; // FIXME: some LambdaForm frames should be ignored
Original file line number Diff line number Diff line change @@ -120,8 +120,6 @@ class frame {
120
120
address raw_pc () const ;
121
121
122
122
void set_pc (address newpc);
123
- void set_pc_preserve_deopt (address newpc);
124
- void set_pc_preserve_deopt (address newpc, CodeBlob* cb);
125
123
126
124
intptr_t * sp () const { assert_absolute (); return _sp; }
127
125
void set_sp ( intptr_t * newsp ) { _sp = newsp; }
You can’t perform that action at this time.
0 commit comments