/qemu/target/loongarch/tcg/insn_trans/ |
H A D | trans_memory.c.inc | 6 static bool gen_load(DisasContext *ctx, arg_rr_i *a, MemOp mop) 153 TRANS(ld_b, ALL, gen_load, MO_SB) 154 TRANS(ld_h, ALL, gen_load, MO_TESW) 155 TRANS(ld_w, ALL, gen_load, MO_TESL) 156 TRANS(ld_d, 64, gen_load, MO_TEUQ) 161 TRANS(ld_bu, ALL, gen_load, MO_UB) 162 TRANS(ld_hu, ALL, gen_load, MO_TEUW) 163 TRANS(ld_wu, 64, gen_load, MO_TEUL)
|
/qemu/target/riscv/insn_trans/ |
H A D | trans_rvzce.c.inc | 85 return gen_load(ctx, a, MO_UB); 91 return gen_load(ctx, a, MO_UW); 97 return gen_load(ctx, a, MO_SW);
|
H A D | trans_rvi.c.inc | 401 static bool gen_load(DisasContext *ctx, arg_lb *a, MemOp memop) 424 return gen_load(ctx, a, MO_SB); 429 return gen_load(ctx, a, MO_TESW); 434 return gen_load(ctx, a, MO_TESL); 440 return gen_load(ctx, a, MO_TESQ); 446 return gen_load(ctx, a, MO_TEUO); 451 return gen_load(ctx, a, MO_UB); 456 return gen_load(ctx, a, MO_TEUW); 462 return gen_load(ctx, a, MO_TEUL); 468 return gen_load(ctx, a, MO_TEUQ);
|
/qemu/target/m68k/ |
H A D | translate.c | 303 static inline TCGv gen_load(DisasContext *s, int opsize, TCGv addr, in gen_load() function 353 return gen_load(s, opsize, addr, what == EA_LOADS, index); in gen_ldst() 477 base = gen_load(s, OS_LONG, add, 0, IS_USER(s)); in gen_lea_indexed() 1992 r[i] = gen_load(s, opsize, addr, 1, IS_USER(s)); in DISAS_INSN() 2853 tmp = gen_load(s, OS_LONG, src, 0, IS_USER(s)); in DISAS_INSN() 2879 tmp = gen_load(s, OS_LONG, QREG_SP, 0, IS_USER(s)); in DISAS_INSN() 2891 ccr = gen_load(s, OS_WORD, QREG_SP, 0, IS_USER(s)); in DISAS_INSN() 2893 tmp = gen_load(s, OS_LONG, sp, 0, IS_USER(s)); in DISAS_INSN() 2905 tmp = gen_load(s, OS_LONG, QREG_SP, 0, IS_USER(s)); in DISAS_INSN() 3126 src = gen_load(s, opsize, addr_src, 1, IS_USER(s)); in DISAS_INSN() [all …]
|
/qemu/target/hexagon/idef-parser/ |
H A D | parser-helpers.h | 298 void gen_load(Context *c, YYLTYPE *locp, HexValue *size,
|
H A D | idef-parser.y | 344 gen_load(c, &@1, &$5, $7, &$9, &$11);
|
H A D | parser-helpers.c | 1734 void gen_load(Context *c, YYLTYPE *locp, HexValue *width, in gen_load() function
|
/qemu/target/i386/tcg/ |
H A D | decode-new.c.inc | 2786 /* Handled in gen_load. */ 2852 gen_load(s, &decode, 2, s->T1); 2860 gen_load(s, &decode, 1, s->T0); 2861 gen_load(s, &decode, 2, s->T1);
|
H A D | emit.c.inc | 242 static void gen_load(DisasContext *s, X86DecodedInsn *decode, int opn, TCGv v)
|