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
use std::ops::Deref;

use crate::instruction::{Instruction, Mnemonic, LongMnemonic};
use crate::instruction::op_codes::OpCode;

/// A struct that get all instruction in bytes (used in the Interpreter).
#[derive(Debug, Clone)]
pub struct OpCodes(pub Vec<OpCode>);

/// A struct containing all mnemonic names of each instruction.
#[derive(Debug, Clone)]
pub struct Mnemonics(pub Vec<Mnemonic>);

/// A struct containing all long names of each instruction.
#[derive(Debug, Clone)]
pub struct LongMnemonics(pub Vec<LongMnemonic>);

impl Deref for OpCodes {
    type Target = Vec<OpCode>;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl Deref for Mnemonics {
    type Target = Vec<Mnemonic>;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl Deref for LongMnemonics {
    type Target = Vec<LongMnemonic>;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl From<Mnemonics> for OpCodes {
    fn from(mnemos: Mnemonics) -> Self {
        let Mnemonics(mnemos) = mnemos;
        let mut op_codes = Vec::with_capacity(mnemos.len());
        for instr in mnemos {
            op_codes.push(Into::<Instruction>::into(instr).into());
        }
        OpCodes(op_codes)
    }
}

impl<'a> From<&'a Mnemonics> for OpCodes {
    fn from(mnemos: &Mnemonics) -> Self {
        let &Mnemonics(ref mnemos) = mnemos;
        let mut op_codes = Vec::with_capacity(mnemos.len());
        for instr in mnemos.iter() {
            op_codes.push(Into::<Instruction>::into(*instr).into());
        }
        OpCodes(op_codes)
    }
}

impl From<OpCodes> for Mnemonics {
    fn from(op_codes: OpCodes) -> Self {
        let OpCodes(op_codes) = op_codes;
        let mut mnemos = Vec::with_capacity(op_codes.len());
        for instr in op_codes {
            mnemos.push(Into::<Instruction>::into(instr).into());
        }
        Mnemonics(mnemos)
    }
}

impl<'a> From<&'a OpCodes> for Mnemonics {
    fn from(op_codes: &OpCodes) -> Self {
        let &OpCodes(ref op_codes) = op_codes;
        let mut mnemos = Vec::with_capacity(op_codes.len());
        for instr in op_codes {
            let instr: Instruction = (*instr).into();
            mnemos.push(instr.into());
        }
        Mnemonics(mnemos)
    }
}

impl From<OpCodes> for LongMnemonics {
    fn from(op_codes: OpCodes) -> Self {
        let OpCodes(op_codes) = op_codes;
        let mut lmnemos = Vec::with_capacity(op_codes.len());
        for instr in op_codes {
            lmnemos.push(Into::<Instruction>::into(instr).into());
        }
        LongMnemonics(lmnemos)
    }
}

impl<'a> From<&'a OpCodes> for LongMnemonics {
    fn from(op_codes: &OpCodes) -> Self {
        let &OpCodes(ref op_codes) = op_codes;
        let mut lmnemos = Vec::with_capacity(op_codes.len());
        for instr in op_codes {
            lmnemos.push(Into::<Instruction>::into(*instr).into());
        }
        LongMnemonics(lmnemos)
    }
}

impl From<Mnemonics> for LongMnemonics {
    fn from(mnemos: Mnemonics) -> Self {
        let Mnemonics(mnemos) = mnemos;
        let mut lmnemos = Vec::with_capacity(mnemos.len());
        for instr in mnemos {
            lmnemos.push(Into::<Instruction>::into(instr).into());
        }
        LongMnemonics(lmnemos)
    }
}

impl<'a> From<&'a Mnemonics> for LongMnemonics {
    fn from(mnemos: &Mnemonics) -> Self {
        let &Mnemonics(ref mnemos) = mnemos;
        let mut lmnemos = Vec::with_capacity(mnemos.len());
        for instr in mnemos {
            lmnemos.push(Into::<Instruction>::into(*instr).into());
        }
        LongMnemonics(lmnemos)
    }
}