• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • 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
          • Clean-selects
          • Clean-params
          • Blankargs
          • Inline-mods
          • Expr-simp
          • Trunc
          • Always-top
            • Edgesynth
            • Stmtrewrite
            • Cblock
              • Vl-stmt-cblock-p
              • Cblock-path-checking
              • Cblock-expression-building
              • Vl-stmt-cblock-lvalexprs
              • Vl-stmt-cblock-rvalexprs
              • Vl-classic-control->exprs
              • Vl-classic-control-p
              • Vl-star-control-p
              • Vl-always-convert-regports
              • Vl-always-convert-regs
              • Stmttemps
              • Edgesplit
              • Vl-always-check-reg
              • Vl-convert-regs
              • Latchsynth
              • Vl-always-check-regs
              • Vl-match-always-at-some-edges
              • Unelse
              • Vl-always-convert-reg
              • Vl-design-always-backend
              • Vl-stmt-guts
              • Vl-always-convert-regport
              • Vl-always-scary-regs
              • Eliminitial
              • Ifmerge
              • Vl-edge-control-p
              • Elimalways
            • 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
    • Cblock

    Vl-star-control-p

    Recognize Verilog-2001 style @(*) sensitivity lists.

    Signature
    (vl-star-control-p x) → *
    Arguments
    x — Guard (vl-delayoreventcontrol-p x).

    Definitions and Theorems

    Function: vl-star-control-p$inline

    (defun vl-star-control-p$inline (x)
      (declare (xargs :guard (vl-delayoreventcontrol-p x)))
      (let ((__function__ 'vl-star-control-p))
        (declare (ignorable __function__))
        (mbe :logic (and (vl-eventcontrol-p x)
                         (if (vl-eventcontrol->starp x) t nil))
             :exec (and (eq (tag x) :vl-eventcontrol)
                        (vl-eventcontrol->starp x)))))