comparison src/cpu/x86/vm/sharedRuntime_x86_64.cpp @ 17850:2100bf712e2a

8039146: Fix 64-bit store to int JNIHandleBlock::_top Reviewed-by: coleenp, kvn
author goetz
date Thu, 03 Apr 2014 12:37:53 +0200
parents 62c54fcc0a35
children 0bf37f737702
comparison
equal deleted inserted replaced
17849:526acaf3626f 17850:2100bf712e2a
2507 } 2507 }
2508 2508
2509 if (!is_critical_native) { 2509 if (!is_critical_native) {
2510 // reset handle block 2510 // reset handle block
2511 __ movptr(rcx, Address(r15_thread, JavaThread::active_handles_offset())); 2511 __ movptr(rcx, Address(r15_thread, JavaThread::active_handles_offset()));
2512 __ movptr(Address(rcx, JNIHandleBlock::top_offset_in_bytes()), (int32_t)NULL_WORD); 2512 __ movl(Address(rcx, JNIHandleBlock::top_offset_in_bytes()), (int32_t)NULL_WORD);
2513 } 2513 }
2514 2514
2515 // pop our frame 2515 // pop our frame
2516 2516
2517 __ leave(); 2517 __ leave();