Home
last modified time | relevance | path

Searched refs:is_unsigned (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/target/hexagon/idef-parser/
H A Dparser-helpers.c411 bool is_unsigned = (rvalue->signedness == UNSIGNED); in gen_rvalue_extend() local
412 const char *sign_suffix = is_unsigned ? "u" : ""; in gen_rvalue_extend()
807 bool is_unsigned; in gen_minmax_op() local
810 is_unsigned = res->signedness == UNSIGNED; in gen_minmax_op()
814 mm = is_unsigned ? "tcg_gen_umax" : "tcg_gen_smax"; in gen_minmax_op()
817 mm = is_unsigned ? "tcg_gen_umin" : "tcg_gen_smin"; in gen_minmax_op()
/openbmc/qemu/tcg/s390x/
H A Dtcg-target.c.inc1261 bool is_unsigned = is_unsigned_cond(c);
1297 if (!(is_unsigned && need_carry)) {
1308 if (!is_unsigned && c2 == (int16_t)c2) {
1315 op = (is_unsigned ? RIL_CLFI : RIL_CFI);
1348 op = (is_unsigned ? RR_CLR : RR_CR);
1351 op = (is_unsigned ? RRE_CLGR : RRE_CGR);
1622 bool is_unsigned = is_unsigned_cond(c);
1630 ? (is_unsigned ? RIEb_CLRJ : RIEb_CRJ)
1631 : (is_unsigned ? RIEb_CLGRJ : RIEb_CGRJ));
1643 if (is_unsigned) {
[all …]
/openbmc/qemu/target/xtensa/
H A Dtranslate.c544 static TCGv_i32 gen_mac16_m(TCGv_i32 v, bool hi, bool is_unsigned) in gen_mac16_m() argument
549 (is_unsigned ? tcg_gen_shri_i32 : tcg_gen_sari_i32)(m, v, 16); in gen_mac16_m()
551 (is_unsigned ? tcg_gen_ext16u_i32 : tcg_gen_ext16s_i32)(m, v); in gen_mac16_m()