• 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
            • Vl-modulelist-split
            • Vl-plainarg-split
            • Vl-assign-split
            • Vl-expr-split
            • Vl-arguments-split
            • Vl-plainarglist-split
            • Vl-gateinstlist-split
            • Vl-modinstlist-split
            • Vl-assignlist-split
            • Vl-module-split
            • Vl-modinst-split
            • Vl-gateinst-split
            • Vl-nosplitlist-p
            • Vl-nosplit-p
            • Vl-design-split
              • *vl-tmp-wire-atts*
            • Selresolve
            • Weirdint-elim
            • Vl-delta
            • Replicate-insts
            • Rangeresolve
            • 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
    • Split

    Vl-design-split

    Top-level split transform.

    Signature
    (vl-design-split x) → new-x
    Arguments
    x — Guard (vl-design-p x).
    Returns
    new-x — Type (vl-design-p new-x).

    Definitions and Theorems

    Function: vl-design-split

    (defun vl-design-split (x)
      (declare (xargs :guard (vl-design-p x)))
      (let ((__function__ 'vl-design-split))
        (declare (ignorable __function__))
        (b* ((x (vl-design-fix x))
             ((vl-design x) x))
          (change-vl-design x
                            :mods (vl-modulelist-split x.mods)))))

    Theorem: vl-design-p-of-vl-design-split

    (defthm vl-design-p-of-vl-design-split
      (b* ((new-x (vl-design-split x)))
        (vl-design-p new-x))
      :rule-classes :rewrite)