• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
          • Expression-sizing
          • Occform
          • Oprewrite
          • Expand-functions
          • Delayredux
          • Unparameterization
          • Caseelim
          • Split
          • Selresolve
          • Weirdint-elim
          • Vl-delta
          • Replicate-insts
          • Rangeresolve
          • Propagate
            • Vl-modulelist-propagate
            • Too-hard-to-propagate
            • Vl-maybe-driven-by-modinsts
            • Vl-maybe-driven-by-gateinsts
            • Vl-driven-by-assigns
            • Propagate-limits-p
            • Vl-maybe-driven-by-args
            • Candidates-for-propagation
            • Remove-simple-assigns-to
            • Propagation-sigma
            • Vl-propagation-round
            • Vl-propagation-fixpoint
              • Vl-maybe-driven-by-modinst
              • Vl-maybe-driven-by-gateinst
              • Vl-module-propagate
              • Propagate-expr-limits-okp
              • Vl-driven-by-assign
              • Vl-design-propagate
            • Clean-selects
            • Clean-params
            • Blankargs
            • Inline-mods
            • Expr-simp
            • Trunc
            • Always-top
            • Gatesplit
            • Gate-elim
            • Expression-optimization
            • Elim-supplies
            • Wildelim
            • Drop-blankports
            • Clean-warnings
            • Addinstnames
            • Custom-transform-hooks
            • Annotate
            • Latchcode
            • Elim-unused-vars
            • Problem-modules
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Propagate

    Vl-propagation-fixpoint

    Signature
    (vl-propagation-fixpoint x n limits) → new-x
    Arguments
    x — Guard (vl-module-p x).
    n — Guard (natp n).
    limits — Guard (propagate-limits-p limits).
    Returns
    new-x — Type (vl-module-p new-x), given (force (vl-module-p x)).

    Definitions and Theorems

    Function: vl-propagation-fixpoint

    (defun vl-propagation-fixpoint (x n limits)
     (declare (xargs :guard (and (vl-module-p x)
                                 (natp n)
                                 (propagate-limits-p limits))))
     (let ((__function__ 'vl-propagation-fixpoint))
      (declare (ignorable __function__))
      (b*
       (((when (zp n))
         (cw
          "Note: ran out of steps in vl-propagation-fixpoint for ~s0.~%"
          (vl-module->name x))
         x)
        (new-x (vl-propagation-round x limits))
        ((when (equal new-x x)) x))
       (vl-propagation-fixpoint new-x (- n 1)
                                limits))))

    Theorem: vl-module-p-of-vl-propagation-fixpoint

    (defthm vl-module-p-of-vl-propagation-fixpoint
      (implies (force (vl-module-p x))
               (b* ((new-x (vl-propagation-fixpoint x n limits)))
                 (vl-module-p new-x)))
      :rule-classes :rewrite)