< prev index next >

src/hotspot/cpu/ppc/templateTable_ppc_64.cpp

Print this page
rev 49244 : [mq]: event-only

@@ -3818,11 +3818,11 @@
     Register RnewTopValue = R6_ARG4;
     Register RendValue    = R7_ARG5;
 
     // Check if we can allocate in the TLAB.
     __ ld(RoldTopValue, in_bytes(JavaThread::tlab_top_offset()), R16_thread);
-    __ ld(RendValue,    in_bytes(JavaThread::tlab_end_offset()), R16_thread);
+    __ ld(RendValue,    in_bytes(JavaThread::tlab_current_end_offset()), R16_thread);
 
     __ add(RnewTopValue, Rinstance_size, RoldTopValue);
 
     // If there is enough space, we do not CAS and do not clear.
     __ cmpld(CCR0, RnewTopValue, RendValue);
< prev index next >