Searched refs:source1 (Results 1 – 6 of 6) sorted by relevance
/qemu/target/riscv/insn_trans/ |
H A D | trans_rvm.c.inc | 176 static void gen_div(TCGv ret, TCGv source1, TCGv source2) 191 tcg_gen_setcond_tl(TCG_COND_EQ, temp1, source1, min); 200 tcg_gen_movcond_tl(TCG_COND_EQ, temp1, source2, zero, mone, source1); 219 static void gen_divu(TCGv ret, TCGv source1, TCGv source2) 233 tcg_gen_movcond_tl(TCG_COND_EQ, temp1, source2, zero, max, source1); 251 static void gen_rem(TCGv ret, TCGv source1, TCGv source2) 263 * If overflow, set temp1 to 0, else source1. 266 tcg_gen_setcond_tl(TCG_COND_EQ, temp1, source1, min); 269 tcg_gen_movcond_tl(TCG_COND_NE, temp1, temp1, zero, zero, source1); 280 tcg_gen_movcond_tl(TCG_COND_EQ, ret, source2, zero, source1, temp1); [all …]
|
H A D | trans_rvb.c.inc | 312 static void gen_orc_b(TCGv ret, TCGv source1) 318 tcg_gen_and_tl(tmp, source1, low7); 320 tcg_gen_or_tl(tmp, tmp, source1);
|
H A D | trans_xthead.c.inc | 243 static void gen_th_tstnbz(TCGv ret, TCGv source1) 245 gen_orc_b(ret, source1);
|
H A D | trans_rvv.c.inc | 565 * double-width result and double-width source1 and single-width
|
/qemu/include/hw/acpi/ |
H A D | aml-build.h | 412 Aml *aml_concatenate(Aml *source1, Aml *source2, Aml *target);
|
/qemu/hw/acpi/ |
H A D | aml-build.c | 1693 Aml *aml_concatenate(Aml *source1, Aml *source2, Aml *target) in aml_concatenate() argument 1695 return build_opcode_2arg_dst(0x73 /* ConcatOp */, source1, source2, in aml_concatenate()
|