< prev index next >

src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.hpp

Print this page
rev 50637 : [mq]: JDK-8205336.patch
rev 50638 : [mq]: JDK-8205336-01.patch

@@ -29,11 +29,11 @@
 #include "memory/allocation.hpp"
 #include "oops/access.hpp"
 
 class BarrierSetAssembler: public CHeapObj<mtGC> {
 private:
-  void incr_allocated_bytes(MacroAssembler* masm, Register thread,
+  void incr_allocated_bytes(MacroAssembler* masm,
                             Register var_size_in_bytes, int con_size_in_bytes,
                             Register t1 = noreg);
 
 public:
   virtual void arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, bool is_oop,

@@ -59,11 +59,10 @@
     Register t2,                       // temp register
     Label&   slow_case                 // continuation point if fast allocation fails
   );
 
   void eden_allocate(MacroAssembler* masm,
-    Register thread,
     Register obj,                      // result: pointer to object after successful allocation
     Register var_size_in_bytes,        // object size in bytes if unknown at compile time; invalid otherwise
     int      con_size_in_bytes,        // object size in bytes if   known at compile time
     Register t1,                       // temp register
     Label&   slow_case                 // continuation point if fast allocation fails
< prev index next >