From 1bbd0ff2bc258863ce4921bb3bb35e1e69959612 Mon Sep 17 00:00:00 2001 From: Zhou Fang <33002388+zhou-w-fang@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:12:17 -0800 Subject: [PATCH] VAL_CNT_MASK: u64 = 0xff --- crates/interpreter/src/side_table.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/interpreter/src/side_table.rs b/crates/interpreter/src/side_table.rs index 6d775da1..c7be9e54 100644 --- a/crates/interpreter/src/side_table.rs +++ b/crates/interpreter/src/side_table.rs @@ -33,8 +33,8 @@ pub struct SideTableEntryView { impl SideTableEntry { const DELTA_IP_MASK: u64 = 0xffff; const DELTA_STP_MASK: u64 = 0x7fff << 16; - const VAL_CNT_MASK: u64 = 0xfff << 31; - const POP_CNT_MASK: u64 = 0xffff << 43; + const VAL_CNT_MASK: u64 = 0xff << 31; + const POP_CNT_MASK: u64 = 0xffff << 39; pub fn new(view: SideTableEntryView) -> Result { let mut fields = 0;