comparison src/cpu/x86/vm/templateInterpreter_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 bd3237e0e18d
children 0bf37f737702
comparison
equal deleted inserted replaced
17849:526acaf3626f 17850:2100bf712e2a
1257 // reset_last_Java_frame 1257 // reset_last_Java_frame
1258 __ reset_last_Java_frame(true, true); 1258 __ reset_last_Java_frame(true, true);
1259 1259
1260 // reset handle block 1260 // reset handle block
1261 __ movptr(t, Address(r15_thread, JavaThread::active_handles_offset())); 1261 __ movptr(t, Address(r15_thread, JavaThread::active_handles_offset()));
1262 __ movptr(Address(t, JNIHandleBlock::top_offset_in_bytes()), (int32_t)NULL_WORD); 1262 __ movl(Address(t, JNIHandleBlock::top_offset_in_bytes()), (int32_t)NULL_WORD);
1263 1263
1264 // If result is an oop unbox and store it in frame where gc will see it 1264 // If result is an oop unbox and store it in frame where gc will see it
1265 // and result handler will pick it up 1265 // and result handler will pick it up
1266 1266
1267 { 1267 {