Home
last modified time | relevance | path

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

/qemu/target/hexagon/
H A Dgenptr.h46 void gen_sat_i32_ovfl(TCGv ovfl, TCGv dest, TCGv source, int width);
48 void gen_satu_i32_ovfl(TCGv ovfl, TCGv dest, TCGv source, int width);
50 void gen_sat_i64_ovfl(TCGv ovfl, TCGv_i64 dest, TCGv_i64 source, int width);
52 void gen_satu_i64_ovfl(TCGv ovfl, TCGv_i64 dest, TCGv_i64 source, int width);
H A Dgenptr.c1353 void gen_sat_i32_ovfl(TCGv ovfl, TCGv dest, TCGv source, int width) in gen_sat_i32_ovfl() argument
1357 tcg_gen_setcond_tl(TCG_COND_NE, ovfl, source, tmp); in gen_sat_i32_ovfl()
1371 void gen_satu_i32_ovfl(TCGv ovfl, TCGv dest, TCGv source, int width) in gen_satu_i32_ovfl() argument
1375 tcg_gen_setcond_tl(TCG_COND_NE, ovfl, source, tmp); in gen_satu_i32_ovfl()
1387 void gen_sat_i64_ovfl(TCGv ovfl, TCGv_i64 dest, TCGv_i64 source, int width) in gen_sat_i64_ovfl() argument
1395 tcg_gen_trunc_i64_tl(ovfl, ovfl_64); in gen_sat_i64_ovfl()
1408 void gen_satu_i64_ovfl(TCGv ovfl, TCGv_i64 dest, TCGv_i64 source, int width) in gen_satu_i64_ovfl() argument
1416 tcg_gen_trunc_i64_tl(ovfl, ovfl_64); in gen_satu_i64_ovfl()
/qemu/target/hexagon/idef-parser/
H A Dparser-helpers.c1949 HexValue ovfl; in gen_rvalue_sat() local
1964 ovfl = gen_tmp(c, locp, 32, sat->signedness); in gen_rvalue_sat()
1966 OUT(c, locp, &ovfl, ", ", &res, ", ", value, ", ", &width->imm.value, in gen_rvalue_sat()
1968 OUT(c, locp, "gen_set_usr_field_if(ctx, USR_OVF,", &ovfl, ");\n"); in gen_rvalue_sat()