You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
interpreter_result is "Ok(0x100000000)", but expected_result is "Ok(0)".
Could the problem be here? "ebpf::MOV32_IMM => self.reg[dst] = insn.imm as u32 as u64,"
The text was updated successfully, but these errors were encountered:
mov64 reg, imm is what you want here to get i64 sign extension, not mov32 reg, imm as that is limited to u32.
The ISA docs were wrong, so thanks for reporting it.
The patch is in the new repository, as this one is no longer maintained: anza-xyz#10
In this test case, the expected value does not match the output value.
interpreter_result is "Ok(0x100000000)", but expected_result is "Ok(0)".
Could the problem be here? "ebpf::MOV32_IMM => self.reg[dst] = insn.imm as u32 as u64,"
The text was updated successfully, but these errors were encountered: