hotspot/src/cpu/aarch64/vm/frame_aarch64.cpp
changeset 31389 e0688be912e5
parent 30552 ff209a4a81b5
child 35148 5cfafc99d791
child 35201 996db89f378e
--- a/hotspot/src/cpu/aarch64/vm/frame_aarch64.cpp	Tue Jun 23 22:10:33 2015 -0400
+++ b/hotspot/src/cpu/aarch64/vm/frame_aarch64.cpp	Wed Jun 24 08:30:52 2015 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
@@ -526,16 +526,6 @@
   return frame(sender_sp(), link(), sender_pc());
 }
 
-bool frame::interpreter_frame_equals_unpacked_fp(intptr_t* fp) {
-  assert(is_interpreted_frame(), "must be interpreter frame");
-  Method* method = interpreter_frame_method();
-  // When unpacking an optimized frame the frame pointer is
-  // adjusted with:
-  int diff = (method->max_locals() - method->size_of_parameters()) *
-             Interpreter::stackElementWords;
-  return _fp == (fp - diff);
-}
-
 bool frame::is_interpreted_frame_valid(JavaThread* thread) const {
 // QQQ
 #ifdef CC_INTERP