Lines Matching refs:creg
478 static void tcg_out_vshd(TCGContext *s, int ret, int hi, int lo, int creg) in tcg_out_vshd() argument
480 tcg_out_mtctl_sar(s, creg); in tcg_out_vshd()
554 static void tcg_out_shl(TCGContext *s, int ret, int arg, int creg) in tcg_out_shl() argument
556 tcg_out_arithi(s, TCG_REG_R20, creg, 31, INSN_SUBI); in tcg_out_shl()
567 static void tcg_out_shr(TCGContext *s, int ret, int arg, int creg) in tcg_out_shr() argument
569 tcg_out_vshd(s, ret, TCG_REG_R0, arg, creg); in tcg_out_shr()
578 static void tcg_out_sar(TCGContext *s, int ret, int arg, int creg) in tcg_out_sar() argument
580 tcg_out_arithi(s, TCG_REG_R20, creg, 31, INSN_SUBI); in tcg_out_sar()
591 static void tcg_out_rotl(TCGContext *s, int ret, int arg, int creg) in tcg_out_rotl() argument
593 tcg_out_arithi(s, TCG_REG_R20, creg, 32, INSN_SUBI); in tcg_out_rotl()
603 static void tcg_out_rotr(TCGContext *s, int ret, int arg, int creg) in tcg_out_rotr() argument
605 tcg_out_vshd(s, ret, arg, arg, creg); in tcg_out_rotr()