libmwemu 0.24.3

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!("LightCyan"), &crate::emu::decoded_instruction::DecodedInstruction::X86(*ins));

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

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

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

    let low_val1 = (val1 & 0xFFFFFFFF) as u32;
    let low_val2 = (val2 & 0xFFFFFFFF) as u32;

    let f1 = f32::from_bits(low_val1);
    let f2 = f32::from_bits(low_val2);

    emu.flags_mut().f_zf = false;
    emu.flags_mut().f_pf = false;
    emu.flags_mut().f_cf = false;

    if f1.is_nan() || f2.is_nan() {
        emu.flags_mut().f_pf = true;
    } else if f1 == f2 {
        emu.flags_mut().f_zf = true;
    } else if f1 < f2 {
        emu.flags_mut().f_cf = true;
    }
    true
}