src/share/vm/runtime/vframeArray.cpp

changeset 1690
e3a4305c6bc3
parent 1338
15bbd3f505c0
child 1730
3cf667df43ef
     1.1 --- a/src/share/vm/runtime/vframeArray.cpp	Tue Feb 09 10:21:06 2010 -0800
     1.2 +++ b/src/share/vm/runtime/vframeArray.cpp	Fri Feb 12 08:54:13 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -186,7 +186,7 @@
    1.11    int popframe_preserved_args_size_in_bytes = 0;
    1.12    int popframe_preserved_args_size_in_words = 0;
    1.13    if (is_top_frame) {
    1.14 -  JvmtiThreadState *state = thread->jvmti_thread_state();
    1.15 +    JvmtiThreadState *state = thread->jvmti_thread_state();
    1.16      if (JvmtiExport::can_pop_frame() &&
    1.17          (thread->has_pending_popframe() || thread->popframe_forcing_deopt_reexecution())) {
    1.18        if (thread->has_pending_popframe()) {
    1.19 @@ -381,7 +381,6 @@
    1.20      RegisterMap map(thread);
    1.21      vframe* f = vframe::new_vframe(iframe(), &map, thread);
    1.22      f->print();
    1.23 -    iframe()->interpreter_frame_print_on(tty);
    1.24  
    1.25      tty->print_cr("locals size     %d", locals()->size());
    1.26      tty->print_cr("expression size %d", expressions()->size());
    1.27 @@ -582,7 +581,7 @@
    1.28  }
    1.29  
    1.30  void vframeArrayElement::print(outputStream* st) {
    1.31 -  st->print_cr(" - interpreter_frame -> sp: ", INTPTR_FORMAT, iframe()->sp());
    1.32 +  st->print_cr(" - interpreter_frame -> sp: " INTPTR_FORMAT, iframe()->sp());
    1.33  }
    1.34  
    1.35  void vframeArray::print_value_on(outputStream* st) const {

mercurial