libmwemu 0.24.4

x86 32/64bits and system internals emulator, for securely emulating malware and other stuff.
Documentation
use crate::color;
use crate::emu::Emu;
use iced_x86::Instruction;

pub fn execute(emu: &mut Emu, ins: &Instruction, instruction_sz: usize, _rep_step: bool) -> bool {
    emu.show_instruction(color!("Cyan"), &crate::emu::decoded_instruction::DecodedInstruction::X86(*ins));

    assert!(ins.op_count() == 2);

    let cf = emu.flags().f_cf as u64;

    let value0 = match emu.get_operand_value(ins, 0, true) {
        Some(v) => v,
        None => return false,
    };

    let value1 = match emu.get_operand_value(ins, 1, true) {
        Some(v) => v,
        None => return false,
    };

    let f_cf = emu.flags().f_cf;
    let res = match emu.get_operand_sz(ins, 1) {
        64 => emu.flags_mut().add64(value0, value1, f_cf, true),
        32 => emu.flags_mut().add32(
            (value0 & 0xffffffff) as u32,
            (value1 & 0xffffffff) as u32,
            f_cf,
            true,
        ),
        16 => emu.flags_mut().add16(
            (value0 & 0xffff) as u16,
            (value1 & 0xffff) as u16,
            f_cf,
            true,
        ),
        8 => emu
            .flags_mut()
            .add8((value0 & 0xff) as u8, (value1 & 0xff) as u8, f_cf, true),
        _ => unreachable!("weird size"),
    };

    if !emu.set_operand_value(ins, 0, res) {
        return false;
    }
    true
}