comparison src/share/vm/runtime/rframe.cpp @ 21559:be896a1983c0

recast all Graal native code as JVMCI code (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Thu, 28 May 2015 15:36:48 +0200
parents 18a5539bf19b
children
comparison
equal deleted inserted replaced
21558:d563baeca9df 21559:be896a1983c0
150 _invocations = _method->invocation_count() + _method->backedge_count(); 150 _invocations = _method->invocation_count() + _method->backedge_count();
151 } 151 }
152 152
153 void RFrame::print(const char* kind) { 153 void RFrame::print(const char* kind) {
154 #ifndef PRODUCT 154 #ifndef PRODUCT
155 #if defined(COMPILER2) || defined(GRAAL) 155 #if defined(COMPILER2) || defined(JVMCI)
156 int cnt = top_method()->interpreter_invocation_count(); 156 int cnt = top_method()->interpreter_invocation_count();
157 #else 157 #else
158 int cnt = top_method()->invocation_count(); 158 int cnt = top_method()->invocation_count();
159 #endif 159 #endif
160 tty->print("%3d %s ", _num, is_interpreted() ? "I" : "C"); 160 tty->print("%3d %s ", _num, is_interpreted() ? "I" : "C");