comparison src/share/vm/runtime/deoptimization.cpp @ 22551:71ea8d7db665

removed author tags in comments
author Doug Simon <doug.simon@oracle.com>
date Fri, 11 Sep 2015 16:41:50 +0200
parents 02fc27dc1da7
children a7114a5e69e1
comparison
equal deleted inserted replaced
22550:94ba89d56936 22551:71ea8d7db665
1423 // decremented at the end of unpack_frames(). 1423 // decremented at the end of unpack_frames().
1424 thread->inc_in_deopt_handler(); 1424 thread->inc_in_deopt_handler();
1425 1425
1426 // We need to update the map if we have biased locking. 1426 // We need to update the map if we have biased locking.
1427 #if INCLUDE_JVMCI 1427 #if INCLUDE_JVMCI
1428 // (lstadler) JVMCI might need to get an exception from the stack, which in turn requires the register map to be valid 1428 // JVMCI might need to get an exception from the stack, which in turn requires the register map to be valid
1429 RegisterMap reg_map(thread, true); 1429 RegisterMap reg_map(thread, true);
1430 #else 1430 #else
1431 RegisterMap reg_map(thread, UseBiasedLocking); 1431 RegisterMap reg_map(thread, UseBiasedLocking);
1432 #endif 1432 #endif
1433 frame stub_frame = thread->last_frame(); 1433 frame stub_frame = thread->last_frame();