Skip to content

Commit

Permalink
Merge pull request #2796 from o1-labs/dw/riscv32/impl-mulhu
Browse files Browse the repository at this point in the history
o1vm/riscv32: implement Mulhu
  • Loading branch information
dannywillems authored Dec 2, 2024
2 parents c75ef56 + e752cac commit da64dcc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion o1vm/src/interpreters/riscv32im/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2255,7 +2255,17 @@ pub fn interpret_mtype<Env: InterpreterEnv>(env: &mut Env, instr: MInstruction)
unimplemented!("Mulhsu")
}
MInstruction::Mulhu => {
unimplemented!("Mulhu")
let rs1 = env.read_register(&rs1);
let rs2 = env.read_register(&rs2);
// FIXME: constrain
let res = {
let pos = env.alloc_scratch();
unsafe { env.mul_hi(&rs1, &rs2, pos) }
};
env.write_register(&rd, res);

env.set_instruction_pointer(next_instruction_pointer.clone());
env.set_next_instruction_pointer(next_instruction_pointer + Env::constant(4u32));
}
MInstruction::Div => {
unimplemented!("Div")
Expand Down

0 comments on commit da64dcc

Please sign in to comment.