/qemu/target/i386/ |
H A D | monitor.c | 73 unsigned int l1, l2; in tlb_info_32() local 77 for(l1 = 0; l1 < 1024; l1++) { in tlb_info_32() 78 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4); in tlb_info_32() 83 print_pte(mon, env, (l1 << 22), pde, ~((1 << 21) - 1)); in tlb_info_32() 89 print_pte(mon, env, (l1 << 22) + (l2 << 12), in tlb_info_32() 101 unsigned int l1, l2, l3; in tlb_info_pae32() local 106 for (l1 = 0; l1 < 4; l1++) { in tlb_info_pae32() 107 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8); in tlb_info_pae32() 117 print_pte(mon, env, (l1 << 30) + (l2 << 21), pde, in tlb_info_pae32() 125 print_pte(mon, env, (l1 << 30) + (l2 << 21) in tlb_info_pae32() [all …]
|
/qemu/target/mips/tcg/ |
H A D | loong_translate.c | 32 TCGLabel *l1, *l2, *l3; in gen_lext_DIV_G() local 41 l1 = gen_new_label(); in gen_lext_DIV_G() 52 tcg_gen_brcondi_tl(TCG_COND_NE, t1, 0, l1); in gen_lext_DIV_G() 55 gen_set_label(l1); in gen_lext_DIV_G() 86 TCGLabel *l1, *l2; in gen_lext_DIVU_G() local 95 l1 = gen_new_label(); in gen_lext_DIVU_G() 105 tcg_gen_brcondi_tl(TCG_COND_NE, t1, 0, l1); in gen_lext_DIVU_G() 109 gen_set_label(l1); in gen_lext_DIVU_G() 133 TCGLabel *l1, *l2, *l3; in gen_lext_MOD_G() local 142 l1 = gen_new_label(); in gen_lext_MOD_G() [all …]
|
H A D | translate.c | 2223 TCGLabel *l1 = gen_new_label(); in gen_st_cond() local 2230 tcg_gen_brcond_tl(TCG_COND_EQ, addr, cpu_lladdr, l1); in gen_st_cond() 2234 gen_set_label(l1); in gen_st_cond() 2334 TCGLabel *l1 = gen_new_label(); in gen_arith_imm() local 2343 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1); in gen_arith_imm() 2346 gen_set_label(l1); in gen_arith_imm() 2365 TCGLabel *l1 = gen_new_label(); in gen_arith_imm() local 2373 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1); in gen_arith_imm() 2376 gen_set_label(l1); in gen_arith_imm() 2555 TCGLabel *l1 = gen_new_label(); in gen_arith() local [all …]
|
/qemu/target/m68k/ |
H A D | op_helper.c | 762 int16_t l1, l2; in HELPER() local 765 l1 = cpu_lduw_data_ra(env, a1, ra); in HELPER() 767 if (l1 == c1 && l2 == c2) { in HELPER() 772 if (c1 != l1) { in HELPER() 773 env->cc_n = l1; in HELPER() 780 env->dregs[Dc1] = deposit32(env->dregs[Dc1], 0, 16, l1); in HELPER() 795 uint32_t l1, l2; in do_cas2l() local 810 l1 = l >> 32; in do_cas2l() 817 l1 = l; in do_cas2l() 826 l1 = cpu_ldl_data_ra(env, a1, ra); in do_cas2l() [all …]
|
H A D | translate.c | 1354 static void gen_jmpcc(DisasContext *s, int cond, TCGLabel *l1) in gen_jmpcc() argument 1360 tcg_gen_brcond_i32(c.tcond, c.v1, c.v2, l1); in gen_jmpcc() 1459 TCGLabel *l1; in DISAS_INSN() local 1468 l1 = gen_new_label(); in DISAS_INSN() 1469 gen_jmpcc(s, (insn >> 8) & 0xf, l1); in DISAS_INSN() 1475 tcg_gen_brcondi_i32(TCG_COND_EQ, tmp, -1, l1); in DISAS_INSN() 1477 gen_set_label(l1); in DISAS_INSN() 2998 TCGLabel *l1 = gen_new_label(); in DISAS_INSN() local 2999 gen_jmpcc(s, ((insn >> 8) & 0xf) ^ 1, l1); in DISAS_INSN() 3001 gen_set_label(l1); in DISAS_INSN() [all …]
|
/qemu/target/ppc/translate/ |
H A D | storage-ctrl-impl.c.inc | 134 TCGLabel *l1, *l2; 142 l1 = gen_new_label(); 145 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[a->rt], -1, l1); 148 gen_set_label(l1);
|
H A D | spe-impl.c.inc | 161 TCGLabel *l1 = gen_new_label(); 167 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1); 170 gen_set_label(l1); 177 TCGLabel *l1 = gen_new_label(); 183 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1); 186 gen_set_label(l1); 193 TCGLabel *l1 = gen_new_label(); 199 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1); 202 gen_set_label(l1); 260 TCGLabel *l1 = gen_new_label(); \ [all …]
|
/qemu/target/loongarch/tcg/insn_trans/ |
H A D | trans_atomic.c.inc | 28 TCGLabel *l1 = gen_new_label(); 32 tcg_gen_brcond_tl(TCG_COND_EQ, t0, cpu_lladdr, l1); 36 gen_set_label(l1);
|
/qemu/tests/image-fuzzer/qcow2/ |
H A D | layout.py | 296 l1 = [['>Q', l1_offset, 0, 'l1_entry']] 316 l1 = [] 326 l1.append(create_l1_entry(l2_clusters[-1], l1_offset, 331 self.l1_table = FieldsList(l1)
|
/qemu/target/riscv/insn_trans/ |
H A D | trans_rva.c.inc | 61 TCGLabel *l1 = gen_new_label(); 66 tcg_gen_brcond_tl(TCG_COND_NE, load_res, src1, l1); 80 gen_set_label(l1);
|
/qemu/target/sh4/ |
H A D | translate.c | 273 TCGLabel *l1 = gen_new_label(); in gen_conditional_jump() local 280 tcg_gen_brcondi_i32(cond_not_taken, cpu_sr_t, 0, l1); in gen_conditional_jump() 285 gen_set_label(l1); in gen_conditional_jump() 291 tcg_gen_brcondi_i32(cond_not_taken, cpu_sr_t, 0, l1); in gen_conditional_jump() 293 gen_set_label(l1); in gen_conditional_jump() 301 TCGLabel *l1 = gen_new_label(); in gen_delayed_conditional_jump() local 311 tcg_gen_brcondi_i32(TCG_COND_EQ, ds, 0, l1); in gen_delayed_conditional_jump() 317 gen_set_label(l1); in gen_delayed_conditional_jump() 322 tcg_gen_brcondi_i32(TCG_COND_NE, ds, 0, l1); in gen_delayed_conditional_jump() 324 gen_set_label(l1); in gen_delayed_conditional_jump()
|
/qemu/target/s390x/tcg/ |
H A D | translate.c | 1907 int l = get_field(s, l1); in op_clc() 3185 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_mvc() 3199 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_mvcin() 3273 int r1 = get_field(s, l1); in op_mvcp() 3282 int r1 = get_field(s, l1); in op_mvcs() 3292 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_mvn() 3300 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_mvo() 3328 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_mvz() 3441 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_nc() 3475 TCGv_i32 l = tcg_constant_i32(get_field(s, l1)); in op_oc() [all …]
|
H A D | vec_string_helper.c | 373 const uint32_t l1 = s390_vec_read_element(v3, j, es); in vstrc() local 379 if (element_compare(data, l1, c1) && in vstrc()
|
H A D | translate_vx.c.inc | 1957 TCGv_i64 l1, h1, l2, h2; 1964 l1 = tcg_temp_new_i64(); 1970 read_vec_element_i64(l1, get_field(s, v2), 0, ES_64); 1972 tcg_gen_mulu2_i64(l1, h1, l1, h1); 1975 tcg_gen_add2_i64(l1, h1, l1, h1, l1, h1); 1988 tcg_gen_add2_i64(l1, h1, l1, h1, l2, h2); 1992 tcg_gen_add2_i64(l1, h1, l1, h1, l2, h2); 1996 write_vec_element_i64(l1, get_field(s, v1), 1, ES_64);
|
/qemu/target/ppc/ |
H A D | translate.c | 3711 TCGLabel *l1; in gen_bcond() local 3735 l1 = gen_new_label(); in gen_bcond() 3766 tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1); in gen_bcond() 3768 tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1); in gen_bcond() 3779 tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1); in gen_bcond() 3781 tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1); in gen_bcond() 3794 tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1); in gen_bcond() 3797 tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1); in gen_bcond() 3821 gen_set_label(l1); in gen_bcond() 4883 TCGLabel *l1 = gen_new_label(); in gen_405_mulladd_insn() local [all …]
|
/qemu/tcg/ |
H A D | tci.c | 87 uint8_t *n0, void **l1) in tci_args_nl() argument 90 *l1 = sextract32(insn, 12, 20) + (void *)tb_ptr; in tci_args_nl() 94 TCGReg *r0, void **l1) in tci_args_rl() argument 97 *l1 = sextract32(insn, 12, 20) + (void *)tb_ptr; in tci_args_rl()
|
/qemu/block/ |
H A D | qcow2-refcount.c | 3000 uint64_t *l1; in qcow2_check_metadata_overlap() local 3009 l1 = g_try_malloc(l1_sz2); in qcow2_check_metadata_overlap() 3011 if (l1_sz2 && l1 == NULL) { in qcow2_check_metadata_overlap() 3015 ret = bdrv_pread(bs->file, l1_ofs, l1_sz2, l1, 0); in qcow2_check_metadata_overlap() 3017 g_free(l1); in qcow2_check_metadata_overlap() 3022 uint64_t l2_ofs = be64_to_cpu(l1[j]) & L1E_OFFSET_MASK; in qcow2_check_metadata_overlap() 3024 g_free(l1); in qcow2_check_metadata_overlap() 3029 g_free(l1); in qcow2_check_metadata_overlap()
|
H A D | vvfat.c | 2686 int l1 = strlen(mapping->path); in handle_renames_and_mkdirs() local 2688 int diff = l1 - l2; in handle_renames_and_mkdirs() 2713 pstrcpy(new_path + l1, l + diff + 1 - l1, in handle_renames_and_mkdirs()
|
/qemu/target/i386/tcg/ |
H A D | translate.c | 1231 static inline void gen_jcc_noeob(DisasContext *s, int b, TCGLabel *l1) in gen_jcc_noeob() argument 1236 tcg_gen_brcond_tl(cc.cond, cc.reg, cc.reg2, l1); in gen_jcc_noeob() 1238 tcg_gen_brcondi_tl(cc.cond, cc.reg, cc.imm, l1); in gen_jcc_noeob() 1246 static inline void gen_jcc(DisasContext *s, int b, TCGLabel *l1) in gen_jcc() argument 1257 tcg_gen_brcond_tl(cc.cond, cc.reg, cc.reg2, l1); in gen_jcc() 1259 tcg_gen_brcondi_tl(cc.cond, cc.reg, cc.imm, l1); in gen_jcc() 2978 TCGLabel *l1; in gen_x87() local 2990 l1 = gen_new_label(); in gen_x87() 2991 gen_jcc_noeob(s, op1, l1); in gen_x87() 2994 gen_set_label(l1); in gen_x87()
|
/qemu/tcg/s390x/ |
H A D | tcg-target.c.inc | 2129 TCGLabel *l1 = NULL, *l2 = NULL; 2150 l1 = gen_new_label(); 2154 tgen_branch(s, S390_TM_NE, l1); 2165 tcg_out_label(s, l1); 3535 TCGv_vec l1 = tcg_temp_new_vec(type); 3547 tcgv_vec_arg(l1), tcgv_vec_arg(v1)); 3554 vec_gen_3(add_sub_opc, type, vece + 1, tcgv_vec_arg(l1), 3555 tcgv_vec_arg(l1), tcgv_vec_arg(l2)); 3559 tcgv_vec_arg(v0), tcgv_vec_arg(h1), tcgv_vec_arg(l1)); 3563 tcg_temp_free_vec(l1);
|
/qemu/target/arm/tcg/ |
H A D | translate.c | 6132 TCGv_i64 l1, l2; in op_smlald() local 6145 l1 = tcg_temp_new_i64(); in op_smlald() 6147 tcg_gen_ext_i32_i64(l1, t1); in op_smlald() 6151 tcg_gen_sub_i64(l1, l1, l2); in op_smlald() 6153 tcg_gen_add_i64(l1, l1, l2); in op_smlald() 6156 gen_addq(s, l1, a->ra, a->rd); in op_smlald() 6157 gen_storeq_reg(s, a->ra, a->rd, l1); in op_smlald()
|
/qemu/target/tricore/ |
H A D | translate.c | 2863 TCGLabel *l1 = gen_new_label(); in gen_loop() local 2866 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr_a[r1], -1, l1); in gen_loop() 2868 gen_set_label(l1); in gen_loop() 7903 TCGLabel *l1; in decode_sys_interrupts() local 7959 l1 = gen_new_label(); in decode_sys_interrupts() 7963 tcg_gen_brcondi_tl(TCG_COND_NE, tmp, 1, l1); in decode_sys_interrupts() 7965 gen_set_label(l1); in decode_sys_interrupts() 7991 l1 = gen_new_label(); in decode_sys_interrupts() 7992 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_PSW_SV, 0, l1); in decode_sys_interrupts() 7994 gen_set_label(l1); in decode_sys_interrupts() [all …]
|
/qemu/target/sparc/ |
H A D | translate.c | 2532 TCGLabel *l1; in advance_pc() local 2547 l1 = gen_new_label(); in advance_pc() 2548 tcg_gen_brcondi_tl(dc->jump.cond, dc->jump.c1, dc->jump.c2, l1); in advance_pc() 2554 gen_set_label(l1); in advance_pc() 2612 TCGLabel *l1 = gen_new_label(); in advance_jump_cond() local 2614 tcg_gen_brcondi_tl(tcg_invert_cond(cmp->cond), cmp->c1, cmp->c2, l1); in advance_jump_cond() 2616 gen_set_label(l1); in advance_jump_cond()
|
/qemu/tcg/tci/ |
H A D | tcg-target.c.inc | 174 static void tcg_out_op_rl(TCGContext *s, TCGOpcode op, TCGReg r0, TCGLabel *l1) 178 tcg_out_reloc(s, s->code_ptr, 20, l1, 0);
|
/qemu/tcg/ppc/ |
H A D | tcg-target.c.inc | 1411 tcg_target_long orig = offset, l0, l1, extra = 0, align = 0; 1497 l1 = (int16_t)offset; 1499 if (l1 < 0 && orig >= 0) { 1501 l1 = (int16_t)(offset - 0x4000); 1503 if (l1) { 1504 tcg_out32(s, ADDIS | TAI(rs, base, l1));
|