x86emu/emulator/
shift_rotate.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use super::Emulator;
use super::InternalError;
use super::rflags::update_flags_szp;
use crate::Cpu;
use iced_x86::Instruction;
use x86defs::RFlags;

const LSB_MASK: u64 = 0x1;

impl<T: Cpu> Emulator<'_, T> {
    // shr/shl/sal/rol/ror/rcl/rcr rm, 1/imm/cl
    pub(super) async fn shift_sign_unextended<Op: ShiftingOp>(
        &mut self,
        instr: &Instruction,
    ) -> Result<(), InternalError<T::Error>> {
        let left = self.op_value(instr, 0).await?;
        self.shift::<Op>(instr, left, 1).await
    }

    // sar rm, 1/imm/cl
    pub(super) async fn shift_arithmetic_right(
        &mut self,
        instr: &Instruction,
    ) -> Result<(), InternalError<T::Error>> {
        let left = self.op_value_sign_extend(instr, 0).await?;
        self.shift::<SarOp>(instr, left as u64, 1).await
    }

    // shld rm, r, imm/cl
    pub(super) async fn shld(
        &mut self,
        instr: &Instruction,
    ) -> Result<(), InternalError<T::Error>> {
        let left = self.op_value(instr, 0).await?;
        self.shift::<ShldOp>(instr, left, 2).await
    }

    // shld rm, r, imm/cl
    pub(super) async fn shrd(
        &mut self,
        instr: &Instruction,
    ) -> Result<(), InternalError<T::Error>> {
        let left = self.op_value(instr, 0).await?;
        self.shift::<ShrdOp>(instr, left, 2).await
    }

    // performs a shift or rotate operation
    async fn shift<Op: ShiftingOp>(
        &mut self,
        instr: &Instruction,
        left: u64,
        count_op: u32,
    ) -> Result<(), InternalError<T::Error>> {
        let operand_size = instr.memory_size().size();
        let operand_bit_size = operand_size as u32 * 8;

        let masked_count = shift_count(self.op_value(instr, count_op).await?, operand_bit_size);
        let count = Op::mod_count(masked_count, operand_bit_size);

        let right = self.op_value(instr, 1).await?;
        let mut rflags = self.cpu.rflags();

        if count == 0 {
            if Op::ZERO_SHIFT_UPDATES_CARRY && masked_count != 0 {
                // left is unchanged, so left is the result
                rflags.set_carry(Op::carry_flag(left, right, left, count, operand_bit_size));
                self.cpu.set_rflags(rflags);
            }
            // flags unchanged
            return Ok(());
        }
        let result = Op::op(left, right, count, rflags, operand_bit_size);
        let carry = Op::carry_flag(left, right, result, count, operand_bit_size);

        self.write_op_0(instr, result).await?;

        if Op::UPDATE_SZP {
            update_flags_szp(&mut rflags, operand_size, result);
        }

        rflags.set_carry(carry);

        if (Op::MASKED_COUNT_UPDATES_OF && masked_count == 1)
            || (!Op::MASKED_COUNT_UPDATES_OF && count == 1)
        {
            rflags.set_overflow(Op::overflow_flag(left, result, carry, operand_bit_size));
        }

        self.cpu.set_rflags(rflags);

        Ok(())
    }
}

/// Trait for rotate and shift operations
pub(super) trait ShiftingOp {
    /// Whether sign, zero, and parity flags are updated
    const UPDATE_SZP: bool;
    /// Whether the carry flag may still be updated if no shift was performed,
    /// based on the masked count
    const ZERO_SHIFT_UPDATES_CARRY: bool;
    /// Whether the overflow flag is updated based on the masked count
    const MASKED_COUNT_UPDATES_OF: bool;
    /// Actual operation
    fn op(left: u64, right: u64, count: u32, flags: RFlags, operand_bit_size: u32) -> u64;
    /// Modulates the count
    fn mod_count(masked_count: u32, operand_bit_size: u32) -> u32;
    /// calculates the carry flag
    fn carry_flag(left: u64, right: u64, result: u64, count: u32, operand_bit_size: u32) -> bool;
    /// calculates the overflow flag
    fn overflow_flag(left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool;
}

pub(super) struct SxlOp {}
impl ShiftingOp for SxlOp {
    const UPDATE_SZP: bool = true;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = false;
    fn op(left: u64, _right: u64, count: u32, _flags: RFlags, _operand_bit_size: u32) -> u64 {
        left << count
    }

    fn mod_count(masked_count: u32, _operand_bit_size: u32) -> u32 {
        masked_count
    }

    fn carry_flag(left: u64, _right: u64, _result: u64, count: u32, operand_bit_size: u32) -> bool {
        ((left << (count - 1)) & msb_mask(operand_bit_size)) != 0
    }

    fn overflow_flag(_left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
        ((msb_mask(operand_bit_size) & result) != 0) ^ carry_flag
    }
}

struct SarOp {}
impl ShiftingOp for SarOp {
    const UPDATE_SZP: bool = true;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = false;
    fn op(left: u64, _right: u64, count: u32, _flags: RFlags, _operand_bit_size: u32) -> u64 {
        ((left as i64) >> count) as u64
    }

    fn mod_count(masked_count: u32, _operand_bit_size: u32) -> u32 {
        masked_count
    }

    fn carry_flag(
        left: u64,
        _right: u64,
        _result: u64,
        count: u32,
        _operand_bit_size: u32,
    ) -> bool {
        (left >> (count - 1) & LSB_MASK) != 0
    }

    fn overflow_flag(_left: u64, _result: u64, _carry_flag: bool, _operand_bit_size: u32) -> bool {
        false
    }
}

pub(super) struct ShrOp {}
impl ShiftingOp for ShrOp {
    const UPDATE_SZP: bool = true;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = false;
    fn op(left: u64, _right: u64, count: u32, _flags: RFlags, _operand_bit_size: u32) -> u64 {
        left >> count
    }

    fn mod_count(masked_count: u32, _operand_bit_size: u32) -> u32 {
        masked_count
    }

    fn carry_flag(
        left: u64,
        _right: u64,
        _result: u64,
        count: u32,
        _operand_bit_size: u32,
    ) -> bool {
        (left >> (count - 1) & LSB_MASK) != 0
    }

    fn overflow_flag(left: u64, _result: u64, _carry_flag: bool, operand_bit_size: u32) -> bool {
        (msb_mask(operand_bit_size) & left) != 0
    }
}

struct ShldOp {}
impl ShiftingOp for ShldOp {
    const UPDATE_SZP: bool = true;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = false;
    fn op(left: u64, right: u64, count: u32, _flags: RFlags, operand_bit_size: u32) -> u64 {
        // When operating on 16 bit operands it is possible for count to be greater than operand_bit_size.
        // The results in this case are undefined, but real hardware appears to treat this as an oversized rotate.
        if operand_bit_size == 16 && count > 16 {
            let combined: u32 = ((left as u32) << 16) | (right as u32);
            (combined.rotate_left(count - 16) as u16).into()
        } else {
            (left << count) | (right >> (operand_bit_size - count))
        }
    }

    fn mod_count(masked_count: u32, _operand_bit_size: u32) -> u32 {
        masked_count
    }

    fn carry_flag(left: u64, right: u64, _result: u64, count: u32, operand_bit_size: u32) -> bool {
        // When operating on 16 bit operands it is possible for count to be greater than operand_bit_size.
        // The results in this case are undefined, but real hardware appears to treat this as an oversized rotate.
        if operand_bit_size == 16 && count > 16 {
            ((right >> (operand_bit_size - (count - 16))) & LSB_MASK) != 0
        } else {
            ((left >> (operand_bit_size - count)) & LSB_MASK) != 0
        }
    }

    fn overflow_flag(left: u64, result: u64, _carry_flag: bool, operand_bit_size: u32) -> bool {
        (msb_mask(operand_bit_size) & (left ^ result)) != 0
    }
}

struct ShrdOp {}
impl ShiftingOp for ShrdOp {
    const UPDATE_SZP: bool = true;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = false;
    fn op(left: u64, right: u64, count: u32, _flags: RFlags, operand_bit_size: u32) -> u64 {
        // When operating on 16 bit operands it is possible for count to be greater than operand_bit_size.
        // The results in this case are undefined, but real hardware appears to treat this as an oversized rotate.
        if operand_bit_size == 16 && count > 16 {
            let combined: u32 = ((left as u32) << 16) | (right as u32);
            (combined.rotate_right(count - 16) as u16).into()
        } else {
            (left >> count) | (right << (operand_bit_size - count))
        }
    }

    fn mod_count(masked_count: u32, _operand_bit_size: u32) -> u32 {
        masked_count
    }

    fn carry_flag(left: u64, right: u64, _result: u64, count: u32, operand_bit_size: u32) -> bool {
        // When operating on 16 bit operands it is possible for count to be greater than operand_bit_size.
        // The results in this case are undefined, but real hardware appears to treat this as an oversized rotate.
        if operand_bit_size == 16 && count > 16 {
            ((right >> (count - 17)) & LSB_MASK) != 0
        } else {
            ((left >> (count - 1)) & LSB_MASK) != 0
        }
    }

    fn overflow_flag(_left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
        ((msb_mask(operand_bit_size) & result) != 0) ^ carry_flag
    }
}

pub(super) struct RolOp {}
impl ShiftingOp for RolOp {
    const UPDATE_SZP: bool = false;
    const ZERO_SHIFT_UPDATES_CARRY: bool = true;
    const MASKED_COUNT_UPDATES_OF: bool = true;
    fn op(left: u64, _right: u64, count: u32, _flags: RFlags, operand_bit_size: u32) -> u64 {
        let result = (left << count) | (left >> (operand_bit_size - count));
        sign_extend(result, operand_bit_size)
    }

    fn carry_flag(
        _left: u64,
        _right: u64,
        result: u64,
        _count: u32,
        _operand_bit_size: u32,
    ) -> bool {
        (result & LSB_MASK) != 0
    }

    fn mod_count(masked_count: u32, operand_bit_size: u32) -> u32 {
        rox_mod_count(masked_count, operand_bit_size)
    }

    fn overflow_flag(_left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
        rotate_left_overflow(result, carry_flag, operand_bit_size)
    }
}

pub(super) struct RorOp {}
impl ShiftingOp for RorOp {
    const UPDATE_SZP: bool = false;
    const ZERO_SHIFT_UPDATES_CARRY: bool = true;
    const MASKED_COUNT_UPDATES_OF: bool = true;
    fn op(left: u64, _right: u64, count: u32, _flags: RFlags, operand_bit_size: u32) -> u64 {
        let result = (left >> count) | (left << (operand_bit_size - count));
        sign_extend(result, operand_bit_size)
    }

    fn carry_flag(
        _left: u64,
        _right: u64,
        result: u64,
        _count: u32,
        operand_bit_size: u32,
    ) -> bool {
        (result & msb_mask(operand_bit_size)) != 0
    }

    fn mod_count(masked_count: u32, operand_bit_size: u32) -> u32 {
        rox_mod_count(masked_count, operand_bit_size)
    }

    fn overflow_flag(_left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
        rotate_right_overflow(result, carry_flag, operand_bit_size)
    }
}

pub(super) struct RclOp {}
impl ShiftingOp for RclOp {
    const UPDATE_SZP: bool = false;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = true;
    fn op(left: u64, _right: u64, count: u32, flags: RFlags, operand_bit_size: u32) -> u64 {
        let result = (left << count)
            | ((flags.carry() as u64) << (count - 1))
            | ((left as u128) >> ((operand_bit_size + 1) - count)) as u64; // add 1 for participation of cf
        sign_extend(result, operand_bit_size)
    }

    fn mod_count(masked_count: u32, operand_bit_size: u32) -> u32 {
        rcx_mod_count(masked_count, operand_bit_size)
    }

    fn carry_flag(left: u64, _right: u64, _result: u64, count: u32, operand_bit_size: u32) -> bool {
        ((left >> (operand_bit_size - count)) & LSB_MASK) != 0
    }

    fn overflow_flag(_left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
        rotate_left_overflow(result, carry_flag, operand_bit_size)
    }
}

pub(super) struct RcrOp {}
impl ShiftingOp for RcrOp {
    const UPDATE_SZP: bool = false;
    const ZERO_SHIFT_UPDATES_CARRY: bool = false;
    const MASKED_COUNT_UPDATES_OF: bool = true;
    fn op(left: u64, _right: u64, count: u32, flags: RFlags, operand_bit_size: u32) -> u64 {
        let result = (left >> count)
            | ((flags.carry() as u64) << (operand_bit_size - count))
            | ((left as u128) << ((operand_bit_size + 1) - count)) as u64; // add 1 for participation of cf
        sign_extend(result, operand_bit_size)
    }

    fn mod_count(masked_count: u32, operand_bit_size: u32) -> u32 {
        rcx_mod_count(masked_count, operand_bit_size)
    }

    fn carry_flag(
        left: u64,
        _right: u64,
        _result: u64,
        count: u32,
        _operand_bit_size: u32,
    ) -> bool {
        ((left >> (count - 1)) & LSB_MASK) != 0
    }

    fn overflow_flag(_left: u64, result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
        rotate_right_overflow(result, carry_flag, operand_bit_size)
    }
}

/// Returns the mask for getting the most significant bit
fn msb_mask(operand_bit_size: u32) -> u64 {
    match operand_bit_size {
        8 => 0x80,
        16 => 0x8000,
        32 => 0x80000000,
        64 => 0x8000000000000000,
        _ => unreachable!(),
    }
}

fn rcx_mod_count(masked_count: u32, operand_bit_size: u32) -> u32 {
    if operand_bit_size == 8 {
        masked_count % 9
    } else if operand_bit_size == 16 {
        masked_count % 17
    } else {
        masked_count
    }
}

fn rox_mod_count(masked_count: u32, operand_bit_size: u32) -> u32 {
    masked_count % operand_bit_size
}

/// Truncates and sign-extends the result to the correct operand size
fn sign_extend(value: u64, operand_bit_size: u32) -> u64 {
    let sign_shift = 64 - operand_bit_size;
    (((value as i64) << sign_shift) >> sign_shift) as u64
}

/// Adjusts the count for shift instructions
fn shift_count(right: u64, operand_bit_size: u32) -> u32 {
    (if operand_bit_size == 64 {
        right & 0x3f
    } else {
        right & 0x1f
    }) as u32
}

/// Calculates the overflow flag for a right rotation
fn rotate_right_overflow(result: u64, _carry_flag: bool, operand_bit_size: u32) -> bool {
    let mask = msb_mask(operand_bit_size);
    let msb = (result & mask) != 0;
    let second_msb = (result & (mask >> 1)) != 0;
    msb ^ second_msb
}

/// Calculates the overflow flag for a left rotation
fn rotate_left_overflow(result: u64, carry_flag: bool, operand_bit_size: u32) -> bool {
    ((msb_mask(operand_bit_size) & result) != 0) ^ carry_flag
}