comparison src/share/vm/runtime/vframeArray.cpp @ 2181:d25d4ca69222

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Wed, 16 Feb 2011 13:47:20 +0100
parents 06f017f7daa7 8012aa3ccede
children 008adfd6d850
comparison
equal deleted inserted replaced
2108:50b45e2d9725 2181:d25d4ca69222
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
429 tty->cr(); 429 tty->cr();
430 // method()->print_codes(); 430 // method()->print_codes();
431 } else if (TraceDeoptimization) { 431 } else if (TraceDeoptimization) {
432 tty->print(" "); 432 tty->print(" ");
433 method()->print_value(); 433 method()->print_value();
434 Bytecodes::Code code = Bytecodes::java_code_at(bcp); 434 Bytecodes::Code code = Bytecodes::java_code_at(method(), bcp);
435 int bci = method()->bci_from(bcp); 435 int bci = method()->bci_from(bcp);
436 tty->print(" - %s", Bytecodes::name(code)); 436 tty->print(" - %s", Bytecodes::name(code));
437 tty->print(" @ bci %d ", bci); 437 tty->print(" @ bci %d ", bci);
438 tty->print_cr("sp = " PTR_FORMAT, iframe()->sp()); 438 tty->print_cr("sp = " PTR_FORMAT, iframe()->sp());
439 } 439 }