comparison src/cpu/x86/vm/interpreter_x86_32.cpp @ 14726:92aa6797d639

Backed out merge changeset: b51e29501f30 Backed out merge revision to its first parent (8f483e200405)
author Doug Simon <doug.simon@oracle.com>
date Mon, 24 Mar 2014 21:30:43 +0100
parents d3f14809b051
children
comparison
equal deleted inserted replaced
14719:0bdd0d157040 14726:92aa6797d639
227 227
228 address entry_point = __ pc(); 228 address entry_point = __ pc();
229 229
230 // abstract method entry 230 // abstract method entry
231 231
232 #ifndef CC_INTERP
233 // pop return address, reset last_sp to NULL 232 // pop return address, reset last_sp to NULL
234 __ empty_expression_stack(); 233 __ empty_expression_stack();
235 __ restore_bcp(); // rsi must be correct for exception handler (was destroyed) 234 __ restore_bcp(); // rsi must be correct for exception handler (was destroyed)
236 __ restore_locals(); // make sure locals pointer is correct as well (was destroyed) 235 __ restore_locals(); // make sure locals pointer is correct as well (was destroyed)
237 #endif
238 236
239 // throw exception 237 // throw exception
240 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_AbstractMethodError)); 238 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_AbstractMethodError));
241 // the call_VM checks for exception, so we should never return here. 239 // the call_VM checks for exception, so we should never return here.
242 __ should_not_reach_here(); 240 __ should_not_reach_here();