gbf_core/decompiler/handlers/
general.rs#![deny(missing_docs)]
use crate::{
decompiler::{
function_decompiler::FunctionDecompilerError,
function_decompiler_context::FunctionDecompilerContext, ProcessedInstruction,
ProcessedInstructionBuilder,
},
instruction::Instruction,
opcode::Opcode,
};
use super::OpcodeHandler;
pub struct GeneralHandler;
impl OpcodeHandler for GeneralHandler {
fn handle_instruction(
&self,
context: &mut FunctionDecompilerContext,
instruction: &Instruction,
) -> Result<ProcessedInstruction, FunctionDecompilerError> {
match instruction.opcode {
Opcode::Pop => {
context.pop_one_node()?;
}
_ => {
return Err(FunctionDecompilerError::UnimplementedOpcode(
instruction.opcode,
context.current_block_id.unwrap(),
));
}
}
Ok(ProcessedInstructionBuilder::new().build())
}
}