debug_worker/gdb/arch/x86/
mod.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Implementations for various x86 architectures.

use gdbstub::arch::Arch;
use gdbstub::arch::SingleStepGdbBehavior;

pub mod reg;

/// Implements `Arch` for 64-bit x86 the same way QEMU does
#[allow(non_camel_case_types, clippy::upper_case_acronyms)]
pub enum X86_64_QEMU {}

impl Arch for X86_64_QEMU {
    type Usize = u64;
    type Registers = reg::X86_64CoreRegs;
    type RegId = reg::id::X86_64CoreRegId;
    type BreakpointKind = usize;

    fn target_description_xml() -> Option<&'static str> {
        // ExdiGdbSrv expects something that looks like QEMU's response, and
        // QEMU uses <xi:include> tags, which cannot be modeled using the base
        // `Arch::target_description_xml` API.
        None
    }

    /// GDB clients unconditionally assume x86 targets support single-stepping.
    fn single_step_gdb_behavior() -> SingleStepGdbBehavior {
        SingleStepGdbBehavior::Required
    }
}

pub enum I8086 {}

impl Arch for I8086 {
    type Usize = u32;
    type Registers = reg::X86CoreRegs;
    type RegId = ();
    type BreakpointKind = usize;

    fn target_description_xml() -> Option<&'static str> {
        Some(include_str!("./i8086.xml").trim())
    }

    /// GDB clients unconditionally assume x86 targets support single-stepping.
    fn single_step_gdb_behavior() -> SingleStepGdbBehavior {
        SingleStepGdbBehavior::Required
    }
}