Home | History | Annotate | Download | only in tcg

Lines Matching defs:val

505 TCGv_i32 tcg_const_i32(int32_t val)
509 tcg_gen_movi_i32(t0, val);
513 TCGv_i64 tcg_const_i64(int64_t val)
517 tcg_gen_movi_i64(t0, val);
521 TCGv_i32 tcg_const_local_i32(int32_t val)
525 tcg_gen_movi_i32(t0, val);
529 TCGv_i64 tcg_const_local_i64(int64_t val)
533 tcg_gen_movi_i64(t0, val);
746 static TCGHelperInfo *tcg_find_helper(TCGContext *s, tcg_target_ulong val)
765 if (v == val)
767 else if (val < v) {
857 tcg_target_ulong val;
865 val = args[1];
866 th = tcg_find_helper(s, val);
871 fprintf(outfile, "0x%x", (uint32_t)val);
873 fprintf(outfile, "0x%" PRIx64 , (uint64_t)val);
1301 printf("$0x%" TCG_PRIlx, ts->val);
1437 tcg_out_movi(s, ts->type, reg, ts->val);
1488 tcg_target_ulong val;
1491 val = args[1];
1496 tcg_out_movi(s, ots->type, ots->reg, val);
1502 ots->val = val;
1547 tcg_out_movi(s, ots->type, reg, ts->val);
1553 ots->val = ts->val;
1601 if (tcg_target_const_match(ts->val, arg_ct)) {
1604 new_args[i] = ts->val;
1609 tcg_out_movi(s, ts->type, reg, ts->val);
1786 tcg_out_movi(s, ts->type, reg, ts->val);
1813 tcg_out_movi(s, ts->type, reg, ts->val);
1825 func_addr = ts->val;