< prev index next >

src/hotspot/cpu/riscv/macroAssembler_riscv.hpp

Print this page
*** 782,12 ***
    }
  
    void push_CPU_state(bool save_vectors = false, int vector_size_in_bytes = 0);
    void pop_CPU_state(bool restore_vectors = false, int vector_size_in_bytes = 0);
  
!   void push_cont_fastpath(Register java_thread);
!   void pop_cont_fastpath(Register java_thread);
  
    // if heap base register is used - reinit it with the correct value
    void reinit_heapbase();
  
    void bind(Label& L) {
--- 782,15 ---
    }
  
    void push_CPU_state(bool save_vectors = false, int vector_size_in_bytes = 0);
    void pop_CPU_state(bool restore_vectors = false, int vector_size_in_bytes = 0);
  
!   void push_cont_fastpath(Register java_thread = xthread);
!   void pop_cont_fastpath(Register java_thread = xthread);
+ 
+   void inc_held_monitor_count(Register tmp = t0);
+   void dec_held_monitor_count(Register tmp = t0);
  
    // if heap base register is used - reinit it with the correct value
    void reinit_heapbase();
  
    void bind(Label& L) {
< prev index next >