src/cpu/zero/vm/frame_zero.cpp

changeset 5545
e16282db4946
parent 4442
c566b81b3323
child 6198
55fb97c4c58d
     1.1 --- a/src/cpu/zero/vm/frame_zero.cpp	Mon Aug 19 09:33:29 2013 +0200
     1.2 +++ b/src/cpu/zero/vm/frame_zero.cpp	Tue Aug 20 10:57:50 2013 -0700
     1.3 @@ -116,6 +116,7 @@
     1.4  
     1.5  bool frame::safe_for_sender(JavaThread *thread) {
     1.6    ShouldNotCallThis();
     1.7 +  return false;
     1.8  }
     1.9  
    1.10  void frame::pd_gc_epilog() {
    1.11 @@ -123,6 +124,7 @@
    1.12  
    1.13  bool frame::is_interpreted_frame_valid(JavaThread *thread) const {
    1.14    ShouldNotCallThis();
    1.15 +  return false;
    1.16  }
    1.17  
    1.18  BasicType frame::interpreter_frame_result(oop* oop_result,
    1.19 @@ -184,9 +186,8 @@
    1.20  int frame::frame_size(RegisterMap* map) const {
    1.21  #ifdef PRODUCT
    1.22    ShouldNotCallThis();
    1.23 -#else
    1.24 +#endif // PRODUCT
    1.25    return 0; // make javaVFrame::print_value work
    1.26 -#endif // PRODUCT
    1.27  }
    1.28  
    1.29  intptr_t* frame::interpreter_frame_tos_at(jint offset) const {

mercurial