Lines Matching refs:cond
603 static inline void tcg_gen_brcond_i32(TCGCond cond, TCGv_i32 arg1,
606 tcg_gen_op4ii_i32(INDEX_op_brcond_i32, arg1, arg2, cond, label_index);
609 static inline void tcg_gen_brcondi_i32(TCGCond cond, TCGv_i32 arg1,
613 tcg_gen_brcond_i32(cond, arg1, t0, label_index);
617 static inline void tcg_gen_setcond_i32(TCGCond cond, TCGv_i32 ret,
620 tcg_gen_op4i_i32(INDEX_op_setcond_i32, ret, arg1, arg2, cond);
623 static inline void tcg_gen_setcondi_i32(TCGCond cond, TCGv_i32 ret,
627 tcg_gen_setcond_i32(cond, ret, arg1, t0);
947 static inline void tcg_gen_brcond_i64(TCGCond cond, TCGv_i64 arg1,
952 TCGV_HIGH(arg2), cond, label_index);
955 static inline void tcg_gen_setcond_i64(TCGCond cond, TCGv_i64 ret,
960 TCGV_LOW(arg2), TCGV_HIGH(arg2), cond);
1212 static inline void tcg_gen_brcond_i64(TCGCond cond, TCGv_i64 arg1,
1215 tcg_gen_op4ii_i64(INDEX_op_brcond_i64, arg1, arg2, cond, label_index);
1218 static inline void tcg_gen_setcond_i64(TCGCond cond, TCGv_i64 ret,
1221 tcg_gen_op4i_i64(INDEX_op_setcond_i64, ret, arg1, arg2, cond);
1363 static inline void tcg_gen_brcondi_i64(TCGCond cond, TCGv_i64 arg1,
1367 tcg_gen_brcond_i64(cond, arg1, t0, label_index);
1371 static inline void tcg_gen_setcondi_i64(TCGCond cond, TCGv_i64 ret,
1375 tcg_gen_setcond_i64(cond, ret, arg1, t0);