< prev index next >

src/hotspot/cpu/ppc/c2_MacroAssembler_ppc.cpp

Print this page
@@ -34,10 +34,21 @@
  #else
  #define BLOCK_COMMENT(str) block_comment(str)
  #endif
  #define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
  
+ 
+ void C2_MacroAssembler::fast_lock_lightweight(ConditionRegister flag, Register obj, Register box,
+                                               Register tmp1, Register tmp2, Register tmp3) {
+   compiler_fast_lock_lightweight_object(flag, obj, tmp1, tmp2, tmp3);
+ }
+ 
+ void C2_MacroAssembler::fast_unlock_lightweight(ConditionRegister flag, Register obj, Register box,
+                                                 Register tmp1, Register tmp2, Register tmp3) {
+   compiler_fast_unlock_lightweight_object(flag, obj, tmp1, tmp2, tmp3);
+ }
+ 
  // Intrinsics for CompactStrings
  
  // Compress char[] to byte[] by compressing 16 bytes at once.
  void C2_MacroAssembler::string_compress_16(Register src, Register dst, Register cnt,
                                             Register tmp1, Register tmp2, Register tmp3, Register tmp4, Register tmp5,
< prev index next >