comparison src/cpu/x86/vm/interpreter_x86_64.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
308 308
309 address entry_point = __ pc(); 309 address entry_point = __ pc();
310 310
311 // abstract method entry 311 // abstract method entry
312 312
313 #ifndef CC_INTERP
314 // pop return address, reset last_sp to NULL 313 // pop return address, reset last_sp to NULL
315 __ empty_expression_stack(); 314 __ empty_expression_stack();
316 __ restore_bcp(); // rsi must be correct for exception handler (was destroyed) 315 __ restore_bcp(); // rsi must be correct for exception handler (was destroyed)
317 __ restore_locals(); // make sure locals pointer is correct as well (was destroyed) 316 __ restore_locals(); // make sure locals pointer is correct as well (was destroyed)
318 #endif
319 317
320 // throw exception 318 // throw exception
321 __ call_VM(noreg, CAST_FROM_FN_PTR(address, 319 __ call_VM(noreg, CAST_FROM_FN_PTR(address,
322 InterpreterRuntime::throw_AbstractMethodError)); 320 InterpreterRuntime::throw_AbstractMethodError));
323 // the call_VM checks for exception, so we should never return here. 321 // the call_VM checks for exception, so we should never return here.