comparison src/share/vm/runtime/rframe.cpp @ 22298:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents be896a1983c0
children
comparison
equal deleted inserted replaced
22297:571202729bbf 22298:c28cb37b2e1d
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(JVMCI) 155 #if defined(COMPILER2) || INCLUDE_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");