(&self, stack: &mut StackTracker)
| 52 | } |
| 53 | |
| 54 | pub(crate) fn drop(&self, stack: &mut StackTracker) { |
| 55 | stack.drop(self.quotient); |
| 56 | stack.drop(self.modulo); |
| 57 | stack.drop(self.shift_tables); |
| 58 | stack.drop(self.xor_table); |
| 59 | stack.drop(self.depth_lookup); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | /// Calculates the bitwise XOR of two u32 numbers (x, y) and cyclically shifts them to right by the given value, which should be a multiple of 4. Consumes x and leaves y on the stack. |
no outgoing calls