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
use crate::*;

/// grouping instructions with label
///
/// # Examples
///
/// ```rust
///
/// ```
#[derive(Eq, Ord, PartialOrd, PartialEq, Debug, Clone)]
pub struct Group {
    pub label: String,
    pub insts: Vec<Instruction>,
}

impl Default for Group {
    fn default() -> Self {
        Self {
            label: String::new(),
            insts: Vec::new(),
        }
    }
}

impl Group {
    pub fn to_intel_string(&self) -> String {
        let mut s = format!("{}:\n", self.label);

        for i in self.insts.iter() {
            s += format!("  {}\n", i.to_intel_string()).as_str();
        }

        s
    }

    pub fn to_at_string(&self) -> String {
        let mut s = format!("{}:\n", self.label);

        for i in self.insts.iter() {
            s += format!("  {}\n", i.to_at_string()).as_str();
        }

        s
    }
}