• 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-nosplit-p

    Recognize an expression that is may as well be atomic for the purposes of split.

    Signature
    (vl-nosplit-p x) → *
    Arguments
    x — Guard (vl-expr-p x).

    This is almost just vl-expr-sliceable-p, except that there are some atomic expressions (e.g., real numbers, strings, etc.) that aren't sliceable, but that we still don't want to split up.

    Definitions and Theorems

    Function: vl-nosplit-p$inline

    (defun vl-nosplit-p$inline (x)
      (declare (xargs :guard (vl-expr-p x)))
      (let ((__function__ 'vl-nosplit-p))
        (declare (ignorable __function__))
        (if (vl-fast-atom-p x)
            t
          (vl-expr-sliceable-p x))))