Lines Matching defs:env

51 #define EXEC_2OP_FLAGS_CMD(env, decode, cmd, FLAGS_FUNC, save_res) \  argument
93 target_ulong read_reg(CPUX86State *env, int reg, int size) in read_reg()
110 void write_reg(CPUX86State *env, int reg, target_ulong val, int size) in write_reg()
173 static bool is_host_reg(CPUX86State *env, target_ulong ptr) in is_host_reg()
178 void write_val_ext(CPUX86State *env, target_ulong ptr, target_ulong val, int size) in write_val_ext()
187 uint8_t *read_mmio(CPUX86State *env, target_ulong ptr, int bytes) in read_mmio()
194 target_ulong read_val_ext(CPUX86State *env, target_ulong ptr, int size) in read_val_ext()
224 static void fetch_operands(CPUX86State *env, struct x86_decode *decode, in fetch_operands()
263 static void exec_mov(CPUX86State *env, struct x86_decode *decode) in exec_mov()
272 static void exec_add(CPUX86State *env, struct x86_decode *decode) in exec_add()
278 static void exec_or(CPUX86State *env, struct x86_decode *decode) in exec_or()
284 static void exec_adc(CPUX86State *env, struct x86_decode *decode) in exec_adc()
290 static void exec_sbb(CPUX86State *env, struct x86_decode *decode) in exec_sbb()
296 static void exec_and(CPUX86State *env, struct x86_decode *decode) in exec_and()
302 static void exec_sub(CPUX86State *env, struct x86_decode *decode) in exec_sub()
308 static void exec_xor(CPUX86State *env, struct x86_decode *decode) in exec_xor()
314 static void exec_neg(CPUX86State *env, struct x86_decode *decode) in exec_neg()
337 static void exec_cmp(CPUX86State *env, struct x86_decode *decode) in exec_cmp()
343 static void exec_inc(CPUX86State *env, struct x86_decode *decode) in exec_inc()
353 static void exec_dec(CPUX86State *env, struct x86_decode *decode) in exec_dec()
362 static void exec_tst(CPUX86State *env, struct x86_decode *decode) in exec_tst()
368 static void exec_not(CPUX86State *env, struct x86_decode *decode) in exec_not()
377 void exec_movzx(CPUX86State *env, struct x86_decode *decode) in exec_movzx()
397 static void exec_out(CPUX86State *env, struct x86_decode *decode) in exec_out()
421 static void exec_in(CPUX86State *env, struct x86_decode *decode) in exec_in()
457 static inline void string_increment_reg(CPUX86State *env, int reg, in string_increment_reg()
469 static inline void string_rep(CPUX86State *env, struct x86_decode *decode, in string_rep()
470 void (*func)(CPUX86State *env, in string_rep()
486 static void exec_ins_single(CPUX86State *env, struct x86_decode *decode) in exec_ins_single()
499 static void exec_ins(CPUX86State *env, struct x86_decode *decode) in exec_ins()
510 static void exec_outs_single(CPUX86State *env, struct x86_decode *decode) in exec_outs_single()
522 static void exec_outs(CPUX86State *env, struct x86_decode *decode) in exec_outs()
533 static void exec_movs_single(CPUX86State *env, struct x86_decode *decode) in exec_movs_single()
550 static void exec_movs(CPUX86State *env, struct x86_decode *decode) in exec_movs()
561 static void exec_cmps_single(CPUX86State *env, struct x86_decode *decode) in exec_cmps_single()
581 static void exec_cmps(CPUX86State *env, struct x86_decode *decode) in exec_cmps()
592 static void exec_stos_single(CPUX86State *env, struct x86_decode *decode) in exec_stos_single()
606 static void exec_stos(CPUX86State *env, struct x86_decode *decode) in exec_stos()
617 static void exec_scas_single(CPUX86State *env, struct x86_decode *decode) in exec_scas_single()
630 static void exec_scas(CPUX86State *env, struct x86_decode *decode) in exec_scas()
643 static void exec_lods_single(CPUX86State *env, struct x86_decode *decode) in exec_lods_single()
655 static void exec_lods(CPUX86State *env, struct x86_decode *decode) in exec_lods()
666 void simulate_rdmsr(CPUX86State *env) in simulate_rdmsr()
761 static void exec_rdmsr(CPUX86State *env, struct x86_decode *decode) in exec_rdmsr()
767 void simulate_wrmsr(CPUX86State *env) in simulate_wrmsr()
856 static void exec_wrmsr(CPUX86State *env, struct x86_decode *decode) in exec_wrmsr()
866 static void do_bt(CPUX86State *env, struct x86_decode *decode, int flag) in do_bt()
912 static void exec_bt(CPUX86State *env, struct x86_decode *decode) in exec_bt()
918 static void exec_btc(CPUX86State *env, struct x86_decode *decode) in exec_btc()
924 static void exec_btr(CPUX86State *env, struct x86_decode *decode) in exec_btr()
930 static void exec_bts(CPUX86State *env, struct x86_decode *decode) in exec_bts()
936 void exec_shl(CPUX86State *env, struct x86_decode *decode) in exec_shl()
1000 void exec_movsx(CPUX86State *env, struct x86_decode *decode) in exec_movsx()
1023 void exec_ror(CPUX86State *env, struct x86_decode *decode) in exec_ror()
1101 void exec_rol(CPUX86State *env, struct x86_decode *decode) in exec_rol()
1183 void exec_rcl(CPUX86State *env, struct x86_decode *decode) in exec_rcl()
1268 void exec_rcr(CPUX86State *env, struct x86_decode *decode) in exec_rcr()
1343 static void exec_xchg(CPUX86State *env, struct x86_decode *decode) in exec_xchg()
1355 static void exec_xadd(CPUX86State *env, struct x86_decode *decode) in exec_xadd()
1423 CPUX86State *env = &cpu->env; in load_regs() local
1446 CPUX86State *env = &cpu->env; in store_regs() local
1466 bool exec_instruction(CPUX86State *env, struct x86_decode *ins) in exec_instruction()