comparison src/share/vm/runtime/vframeArray.cpp @ 1295:3cf667df43ef

6919934: JSR 292 needs to support x86 C1 Summary: This implements JSR 292 support for C1 x86. Reviewed-by: never, jrose, kvn
author twisti
date Tue, 09 Mar 2010 20:16:19 +0100
parents e3a4305c6bc3
children 2338d41fbd81
comparison
equal deleted inserted replaced
1293:51db1e4b379d 1295:3cf667df43ef
221 case Deoptimization::Unpack_deopt: 221 case Deoptimization::Unpack_deopt:
222 // use what we've got 222 // use what we've got
223 break; 223 break;
224 case Deoptimization::Unpack_exception: 224 case Deoptimization::Unpack_exception:
225 // exception is pending 225 // exception is pending
226 pc = SharedRuntime::raw_exception_handler_for_return_address(pc); 226 pc = SharedRuntime::raw_exception_handler_for_return_address(thread, pc);
227 // [phh] We're going to end up in some handler or other, so it doesn't 227 // [phh] We're going to end up in some handler or other, so it doesn't
228 // matter what mdp we point to. See exception_handler_for_exception() 228 // matter what mdp we point to. See exception_handler_for_exception()
229 // in interpreterRuntime.cpp. 229 // in interpreterRuntime.cpp.
230 break; 230 break;
231 case Deoptimization::Unpack_uncommon_trap: 231 case Deoptimization::Unpack_uncommon_trap: