From e98b04b473465a161aefd8d6cf7213f08b54758f Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 6 Jul 2021 18:19:19 -0700 Subject: update yaxpeax-arch to 0.2.3, tag 0.1.0 --- src/lib.rs | 91 +++++++++++++++++--------------------------------------------- 1 file changed, 24 insertions(+), 67 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 8d3a257..71d9b4e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,23 +7,20 @@ extern crate serde; extern crate yaxpeax_arch; -use yaxpeax_arch::{Arch, AddressDiff, Decoder, LengthedInstruction}; +use yaxpeax_arch::{Arch, AddressDiff, Decoder, LengthedInstruction, Reader, StandardDecodeError, U16le}; mod display; pub use display::NoContext; -#[cfg(feature="use-serde")] -#[derive(Debug, Serialize, Deserialize)] -pub struct MSP430; - -#[cfg(not(feature="use-serde"))] +#[cfg_attr(feature="use-serde", derive(Serialize, Deserialize))] #[derive(Debug)] pub struct MSP430; impl Arch for MSP430 { type Address = u16; + type Word = U16le; type Instruction = Instruction; - type DecodeError = DecodeError; + type DecodeError = StandardDecodeError; type Decoder = InstDecoder; type Operand = Operand; } @@ -126,19 +123,6 @@ pub enum Operand { Nothing } -#[derive(Debug, PartialEq)] -pub enum DecodeError { - ExhaustedInput, - InvalidOpcode, - InvalidOperand, -} - -impl yaxpeax_arch::DecodeError for DecodeError { - fn data_exhausted(&self) -> bool { self == &DecodeError::ExhaustedInput } - fn bad_opcode(&self) -> bool { self == &DecodeError::InvalidOpcode } - fn bad_operand(&self) -> bool { self == &DecodeError::InvalidOperand } -} - impl yaxpeax_arch::Instruction for Instruction { // TODO: this is wrong!! fn well_defined(&self) -> bool { true } @@ -174,10 +158,7 @@ impl Default for InstDecoder { } } -impl Decoder for InstDecoder { - type Error = DecodeError; - - fn decode_into>(&self, inst: &mut Instruction, bytes: T) -> Result<(), Self::Error> { +/* let mut bytes_iter = bytes.into_iter(); let word: Vec = bytes_iter.by_ref().take(2).collect(); @@ -186,42 +167,32 @@ impl Decoder for InstDecoder { [low, high] => (high as u16) << 8 | (low as u16), _ => unreachable!() }; + */ - fn decode_operand>(bytes: &mut T, reg: u8, mode: u8, oper: &mut Operand) -> bool { +impl Decoder for InstDecoder { + fn decode_into::Address, ::Word>>(&self, inst: &mut Instruction, words: &mut T) -> Result<(), ::DecodeError> { + let fullword = words.next()?.0; + + fn decode_operand::Address, ::Word>>(words: &mut T, reg: u8, mode: u8, oper: &mut Operand) -> Result<(), StandardDecodeError> { *oper = match reg { 0 => { if mode == 0 { Operand::Register(reg) } else if mode == 1 { - let next = match bytes.take(2).collect::>()[..] { - [] | [_] => { return false; }, - [low, high] => { ((high as u16) << 8) | (low as u16) }, - _ => { unreachable!() } - }; - Operand::Symbolic(next) + Operand::Symbolic(words.next()?.0) } else if mode == 2 { Operand::RegisterIndirect(reg) } else if mode == 3 { - let next = match bytes.take(2).collect::>()[..] { - [] | [_] => { return false; }, - [low, high] => { ((high as u16) << 8) | (low as u16) }, - _ => { unreachable!() } - }; - Operand::Immediate(next) + Operand::Immediate(words.next()?.0) } else { - return false; + return Err(StandardDecodeError::InvalidOperand); } }, 2 => { match mode { 0 => { Operand::Register(reg) }, 1 => { - let next = match bytes.take(2).collect::>()[..] { - [] | [_] => { return false; }, - [low, high] => { ((high as u16) << 8) | (low as u16) }, - _ => { unreachable!() } - }; - Operand::Absolute(next) + Operand::Absolute(words.next()?.0) }, 2 => { Operand::Const8 }, 3 => { Operand::Const4 }, @@ -241,12 +212,7 @@ impl Decoder for InstDecoder { match mode { 0 => { Operand::Register(reg) }, 1 => { - let next = match bytes.take(2).collect::>()[..] { - [] | [_] => { return false; }, - [low, high] => { ((high as u16) << 8) | (low as u16) }, - _ => { unreachable!() } - }; - Operand::Indexed(reg, next) + Operand::Indexed(reg, words.next()?.0) }, 2 => { Operand::RegisterIndirect(reg) }, 3 => { Operand::IndirectAutoinc(reg) }, @@ -254,7 +220,7 @@ impl Decoder for InstDecoder { } } }; - return true; + return Ok(()); } inst.op_width = Width::W; @@ -271,7 +237,7 @@ impl Decoder for InstDecoder { instrword if instrword < 0x2000 => { // microcorruption msp430 is non-standard and accepts invalid instructions.. if !self.microcorruption_quirks() { - return Err(DecodeError::InvalidOpcode); + return Err(StandardDecodeError::InvalidOpcode); } let (opcode_idx, operands) = ((instrword & 0x0380) >> 7, instrword & 0x7f); @@ -290,7 +256,7 @@ impl Decoder for InstDecoder { } else { if x == 1 || x == 3 || x == 5 { inst.opcode = Opcode::Invalid(instrword); - return Err(DecodeError::InvalidOpcode); + return Err(StandardDecodeError::InvalidOpcode); } Width:: B }; @@ -299,10 +265,7 @@ impl Decoder for InstDecoder { ((instrword & 0x0030) >> 4) as u8, (instrword & 0x000f) as u8 ); - if !decode_operand(&mut bytes_iter, source, As, &mut inst.operands[0]) { - inst.opcode = Opcode::Invalid(instrword); - return Err(DecodeError::InvalidOperand); - }; + decode_operand(words, source, As, &mut inst.operands[0])?; inst.operands[1] = Operand::Nothing; Ok(()) }, @@ -314,12 +277,12 @@ impl Decoder for InstDecoder { Ok(()) } else { inst.opcode = Opcode::Invalid(instrword); - return Err(DecodeError::InvalidOperand); + return Err(StandardDecodeError::InvalidOperand); } } 7 => { inst.opcode = Opcode::Invalid(instrword); - return Err(DecodeError::InvalidOpcode); + return Err(StandardDecodeError::InvalidOpcode); } _ => { unreachable!(); @@ -366,14 +329,8 @@ impl Decoder for InstDecoder { ((instrword & 0x0030) >> 4) as u8, (instrword & 0x000f) as u8 ); - if !decode_operand(&mut bytes_iter, source, As, &mut inst.operands[0]) { - inst.opcode = Opcode::Invalid(instrword); - return Err(DecodeError::InvalidOperand); - } - if !decode_operand(&mut bytes_iter, dest, Ad, &mut inst.operands[1]) { - inst.opcode = Opcode::Invalid(instrword); - return Err(DecodeError::InvalidOperand); - } + decode_operand(words, source, As, &mut inst.operands[0])?; + decode_operand(words, dest, Ad, &mut inst.operands[1])?; Ok(()) } } -- cgit v1.1