|
8 | 8 |
|
9 | 9 | mod frame;
|
10 | 10 |
|
| 11 | +use std::collections::HashSet; |
11 | 12 | use std::error;
|
12 | 13 | use std::fmt;
|
13 | 14 | use std::sync::Arc;
|
14 | 15 |
|
15 |
| -use crate::analysis; |
16 | 16 | use crate::jet::{Jet, JetFailed};
|
17 | 17 | use crate::node::{self, RedeemNode};
|
18 | 18 | use crate::types::Final;
|
| 19 | +use crate::{analysis, Imr}; |
19 | 20 | use crate::{Cmr, FailEntropy, Value};
|
20 | 21 | use frame::Frame;
|
21 | 22 |
|
@@ -204,13 +205,44 @@ impl BitMachine {
|
204 | 205 | Ok(())
|
205 | 206 | }
|
206 | 207 |
|
207 |
| - /// Execute the given program on the Bit Machine, using the given environment. |
| 208 | + /// Execute the given `program` on the Bit Machine, using the given environment. |
208 | 209 | ///
|
209 |
| - /// Make sure the Bit Machine has enough space by constructing it via [`Self::for_program()`]. |
210 |
| - pub fn exec<J: Jet + std::fmt::Debug>( |
| 210 | + /// ## Precondition |
| 211 | + /// |
| 212 | + /// The Bit Machine is constructed via [`Self::for_program()`] to ensure enough space. |
| 213 | + pub fn exec<J: Jet>( |
211 | 214 | &mut self,
|
212 | 215 | program: &RedeemNode<J>,
|
213 | 216 | env: &J::Environment,
|
| 217 | + ) -> Result<Value, ExecutionError> { |
| 218 | + self.exec_with_tracker(program, env, &mut NoTracker) |
| 219 | + } |
| 220 | + |
| 221 | + /// Execute the given `program` on the Bit Machine and track executed case branches. |
| 222 | + /// |
| 223 | + /// If the program runs successfully, then two sets of IMRs are returned: |
| 224 | + /// |
| 225 | + /// 1) The IMRs of case nodes whose _left_ branch was executed. |
| 226 | + /// 2) The IMRs of case nodes whose _right_ branch was executed. |
| 227 | + /// |
| 228 | + /// ## Precondition |
| 229 | + /// |
| 230 | + /// The Bit Machine is constructed via [`Self::for_program()`] to ensure enough space. |
| 231 | + pub(crate) fn exec_prune<J: Jet>( |
| 232 | + &mut self, |
| 233 | + program: &RedeemNode<J>, |
| 234 | + env: &J::Environment, |
| 235 | + ) -> Result<SetTracker, ExecutionError> { |
| 236 | + let mut tracker = SetTracker::default(); |
| 237 | + self.exec_with_tracker(program, env, &mut tracker)?; |
| 238 | + Ok(tracker) |
| 239 | + } |
| 240 | + |
| 241 | + fn exec_with_tracker<J: Jet, T: CaseTracker>( |
| 242 | + &mut self, |
| 243 | + program: &RedeemNode<J>, |
| 244 | + env: &J::Environment, |
| 245 | + tracker: &mut T, |
214 | 246 | ) -> Result<Value, ExecutionError> {
|
215 | 247 | enum CallStack<'a, J: Jet> {
|
216 | 248 | Goto(&'a RedeemNode<J>),
|
@@ -316,12 +348,14 @@ impl BitMachine {
|
316 | 348 | self.fwd(1 + a.pad_right(b));
|
317 | 349 | call_stack.push(CallStack::Back(1 + a.pad_right(b)));
|
318 | 350 | call_stack.push(CallStack::Goto(right));
|
| 351 | + tracker.track_right(ip.imr()); |
319 | 352 | }
|
320 | 353 | (node::Inner::Case(left, _), false)
|
321 | 354 | | (node::Inner::AssertL(left, _), false) => {
|
322 | 355 | self.fwd(1 + a.pad_left(b));
|
323 | 356 | call_stack.push(CallStack::Back(1 + a.pad_left(b)));
|
324 | 357 | call_stack.push(CallStack::Goto(left));
|
| 358 | + tracker.track_left(ip.imr()); |
325 | 359 | }
|
326 | 360 | (node::Inner::AssertL(_, r_cmr), true) => {
|
327 | 361 | return Err(ExecutionError::ReachedPrunedBranch(*r_cmr))
|
@@ -472,6 +506,60 @@ impl BitMachine {
|
472 | 506 | }
|
473 | 507 | }
|
474 | 508 |
|
| 509 | +/// A type that keeps track of which case branches were executed |
| 510 | +/// during the execution of the Bit Machine. |
| 511 | +/// |
| 512 | +/// The trait is implemented for [`SetTracker`], which does the actual tracking, |
| 513 | +/// and it is implemented for [`NoTracker`], which is a dummy tracker that is |
| 514 | +/// optimized out by the compiler. |
| 515 | +/// |
| 516 | +/// The trait enables us to turn tracking on or off depending on a generic parameter. |
| 517 | +trait CaseTracker { |
| 518 | + /// Track the execution of the left branch of the case node with the given `imr`. |
| 519 | + fn track_left(&mut self, imr: Imr); |
| 520 | + |
| 521 | + /// Track the execution of the right branch of the case node with the given `imr`. |
| 522 | + fn track_right(&mut self, imr: Imr); |
| 523 | +} |
| 524 | + |
| 525 | +/// Tracker of executed left and right branches for each case node. |
| 526 | +#[derive(Clone, Debug, Default)] |
| 527 | +pub(crate) struct SetTracker { |
| 528 | + left: HashSet<Imr>, |
| 529 | + right: HashSet<Imr>, |
| 530 | +} |
| 531 | + |
| 532 | +impl SetTracker { |
| 533 | + /// Access the set of IMRs of case nodes whose left branch was executed. |
| 534 | + pub fn left(&self) -> &HashSet<Imr> { |
| 535 | + &self.left |
| 536 | + } |
| 537 | + |
| 538 | + /// Access the set of IMRs of case nodes whose right branch was executed. |
| 539 | + pub fn right(&self) -> &HashSet<Imr> { |
| 540 | + &self.right |
| 541 | + } |
| 542 | +} |
| 543 | + |
| 544 | +#[derive(Copy, Clone, Debug)] |
| 545 | +struct NoTracker; |
| 546 | + |
| 547 | +impl CaseTracker for SetTracker { |
| 548 | + fn track_left(&mut self, imr: Imr) { |
| 549 | + self.left.insert(imr); |
| 550 | + } |
| 551 | + |
| 552 | + fn track_right(&mut self, imr: Imr) { |
| 553 | + self.right.insert(imr); |
| 554 | + } |
| 555 | +} |
| 556 | + |
| 557 | +impl CaseTracker for NoTracker { |
| 558 | + fn track_left(&mut self, _: Imr) {} |
| 559 | + |
| 560 | + fn track_right(&mut self, _: Imr) {} |
| 561 | +} |
| 562 | + |
475 | 563 | /// Errors related to simplicity Execution
|
476 | 564 | #[derive(Debug)]
|
477 | 565 | pub enum ExecutionError {
|
|
0 commit comments