comparison src/share/vm/runtime/vframeArray.cpp @ 7994:9fae07c31641

6518907: cleanup IA64 specific code in Hotspot Summary: removed unused IA64 specific code Reviewed-by: twisti, kvn, dholmes
author morris
date Fri, 25 Jan 2013 16:50:33 -0800
parents da91efe96a93
children 5fc51c1ecdeb 0094485b46c7
comparison
equal deleted inserted replaced
7993:76341426b645 7994:9fae07c31641
231 } 231 }
232 } else if (JvmtiExport::can_force_early_return() && state != NULL && state->is_earlyret_pending()) { 232 } else if (JvmtiExport::can_force_early_return() && state != NULL && state->is_earlyret_pending()) {
233 // Force early return from top frame after deoptimization 233 // Force early return from top frame after deoptimization
234 #ifndef CC_INTERP 234 #ifndef CC_INTERP
235 pc = Interpreter::remove_activation_early_entry(state->earlyret_tos()); 235 pc = Interpreter::remove_activation_early_entry(state->earlyret_tos());
236 #else
237 // TBD: Need to implement ForceEarlyReturn for CC_INTERP (ia64)
238 #endif 236 #endif
239 } else { 237 } else {
240 // Possibly override the previous pc computation of the top (youngest) frame 238 // Possibly override the previous pc computation of the top (youngest) frame
241 switch (exec_mode) { 239 switch (exec_mode) {
242 case Deoptimization::Unpack_deopt: 240 case Deoptimization::Unpack_deopt: