< prev index next >

src/hotspot/cpu/sparc/templateTable_sparc.cpp

Print this page
rev 49665 : 8201326: Renaming ThreadLocalAllocationBuffer end to current_end
Summary: Rename the TLAB end field to a better name
Contributed-by: jcbeyler@google.com
rev 49666 : [mq]: renaming2

@@ -3290,11 +3290,11 @@
     Register RendValue = Rscratch;
     Register RfreeValue = RnewTopValue;
 
     // check if we can allocate in the TLAB
     __ ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), RoldTopValue); // sets up RalocatedObject
-    __ ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), RendValue);
+    __ ld_ptr(G2_thread, in_bytes(JavaThread::tlab_fast_path_end_offset()), RendValue);
     __ add(RoldTopValue, Roffset, RnewTopValue);
 
     // if there is enough space, we do not CAS and do not clear
     __ cmp(RnewTopValue, RendValue);
     if(ZeroTLAB) {
< prev index next >