< prev index next >

src/hotspot/cpu/aarch64/c2_MacroAssembler_aarch64.hpp

Print this page

 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef CPU_AARCH64_C2_MACROASSEMBLER_AARCH64_HPP
 26 #define CPU_AARCH64_C2_MACROASSEMBLER_AARCH64_HPP
 27 
 28 // C2_MacroAssembler contains high-level macros for C2
 29 
 30  private:
 31   // Return true if the phase output is in the scratch emit size mode.
 32   virtual bool in_scratch_emit_size() override;
 33 
 34   void neon_reduce_logical_helper(int opc, bool sf, Register Rd, Register Rn, Register Rm,
 35                                   enum shift_kind kind = Assembler::LSL, unsigned shift = 0);
 36 
 37  public:


 38   // Code used by cmpFastLock and cmpFastUnlock mach instructions in .ad file.
 39   // See full description in macroAssembler_aarch64.cpp.
 40   void fast_lock(Register object, Register box, Register tmp, Register tmp2, Register tmp3);
 41   void fast_unlock(Register object, Register box, Register tmp, Register tmp2);
 42 
 43   void string_compare(Register str1, Register str2,
 44                       Register cnt1, Register cnt2, Register result,
 45                       Register tmp1, Register tmp2, FloatRegister vtmp1,
 46                       FloatRegister vtmp2, FloatRegister vtmp3,
 47                       PRegister pgtmp1, PRegister pgtmp2, int ae);
 48 
 49   void string_indexof(Register str1, Register str2,
 50                       Register cnt1, Register cnt2,
 51                       Register tmp1, Register tmp2,
 52                       Register tmp3, Register tmp4,
 53                       Register tmp5, Register tmp6,
 54                       int int_cnt1, Register result, int ae);
 55 
 56   void string_indexof_char(Register str1, Register cnt1,
 57                            Register ch, Register result,

 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef CPU_AARCH64_C2_MACROASSEMBLER_AARCH64_HPP
 26 #define CPU_AARCH64_C2_MACROASSEMBLER_AARCH64_HPP
 27 
 28 // C2_MacroAssembler contains high-level macros for C2
 29 
 30  private:
 31   // Return true if the phase output is in the scratch emit size mode.
 32   virtual bool in_scratch_emit_size() override;
 33 
 34   void neon_reduce_logical_helper(int opc, bool sf, Register Rd, Register Rn, Register Rm,
 35                                   enum shift_kind kind = Assembler::LSL, unsigned shift = 0);
 36 
 37  public:
 38   void entry_barrier();
 39 
 40   // Code used by cmpFastLock and cmpFastUnlock mach instructions in .ad file.
 41   // See full description in macroAssembler_aarch64.cpp.
 42   void fast_lock(Register object, Register box, Register tmp, Register tmp2, Register tmp3);
 43   void fast_unlock(Register object, Register box, Register tmp, Register tmp2);
 44 
 45   void string_compare(Register str1, Register str2,
 46                       Register cnt1, Register cnt2, Register result,
 47                       Register tmp1, Register tmp2, FloatRegister vtmp1,
 48                       FloatRegister vtmp2, FloatRegister vtmp3,
 49                       PRegister pgtmp1, PRegister pgtmp2, int ae);
 50 
 51   void string_indexof(Register str1, Register str2,
 52                       Register cnt1, Register cnt2,
 53                       Register tmp1, Register tmp2,
 54                       Register tmp3, Register tmp4,
 55                       Register tmp5, Register tmp6,
 56                       int int_cnt1, Register result, int ae);
 57 
 58   void string_indexof_char(Register str1, Register cnt1,
 59                            Register ch, Register result,
< prev index next >