• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
        • Mlib
          • Scopestack
          • Hid-tools
            • Vl-follow-hidexpr
            • Vl-index-expr-typetrace
            • Vl-follow-scopeexpr
            • Vl-follow-hidexpr-dimscheck
            • Vl-datatype-resolve-selects
            • Vl-datatype-remove-dim
            • Vl-operandinfo
            • Vl-follow-hidexpr-dimcheck
            • Vl-follow-data-selects
            • Vl-follow-hidexpr-error
            • Vl-hidstep
            • Vl-scopestack-find-item/ss/path
            • Vl-follow-array-indices
            • Vl-scopecontext
            • Vl-datatype-set-unsigned
            • Vl-selstep
            • Vl-scopestack-find-elabpath
            • Vl-hid-prefix-for-subhid
            • Vl-find-structmember
            • Vl-select
            • Vl-scopeexpr-replace-hid
            • Vl-genblocklist-find-block
            • Vl-partselect-width
            • Vl-seltrace->indices
            • Vl-datatype->structmembers
            • Vl-hidexpr-resolved-p
            • Vl-operandinfo->indices
            • Vl-flatten-hidindex
            • Vl-subhid-p
            • Vl-seltrace-usertypes-ok
            • Vl-flatten-hidexpr
            • Vl-scopeexpr->hid
              • Vl-seltrace-index-count
              • Vl-operandinfo-usertypes-ok
              • Vl-operandinfo-index-count
              • Vl-datatype-dims-count
              • Vl-scopeexpr-index-count
              • Vl-hidexpr-index-count
              • Vl-usertype-lookup
              • Vl-hidindex-resolved-p
              • Vl-scopeexpr-resolved-p
              • Vl-selstep-usertypes-ok
              • Vl-hidtrace
              • Vl-seltrace
              • Vl-scopedef-interface-p
            • Filtering-by-name
            • Vl-interface-mocktype
            • Stripping-functions
            • Genblob
            • Expr-tools
            • Extract-vl-types
            • Hierarchy
            • Range-tools
            • Finding-by-name
            • Stmt-tools
            • Modnamespace
            • Flat-warnings
            • Reordering-by-name
            • Datatype-tools
            • Syscalls
            • Allexprs
            • Lvalues
            • Port-tools
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Hid-tools

    Vl-scopeexpr->hid

    Finds the hidexpr nested inside the scopeexpr.

    Signature
    (vl-scopeexpr->hid x) → hid
    Arguments
    x — Guard (vl-scopeexpr-p x).
    Returns
    hid — Type (vl-hidexpr-p hid).

    Definitions and Theorems

    Function: vl-scopeexpr->hid

    (defun vl-scopeexpr->hid (x)
      (declare (xargs :guard (vl-scopeexpr-p x)))
      (let ((__function__ 'vl-scopeexpr->hid))
        (declare (ignorable __function__))
        (vl-scopeexpr-case x
                           :end x.hid
                           :colon (vl-scopeexpr->hid x.rest))))

    Theorem: vl-hidexpr-p-of-vl-scopeexpr->hid

    (defthm vl-hidexpr-p-of-vl-scopeexpr->hid
      (b* ((hid (vl-scopeexpr->hid x)))
        (vl-hidexpr-p hid))
      :rule-classes :rewrite)

    Theorem: count-of-vl-scopeexpr->hid

    (defthm count-of-vl-scopeexpr->hid
      (b* ((?hid (vl-scopeexpr->hid x)))
        (< (vl-hidexpr-count hid)
           (vl-scopeexpr-count x)))
      :rule-classes :linear)

    Theorem: vl-scopeexpr->hid-of-vl-scopeexpr-fix-x

    (defthm vl-scopeexpr->hid-of-vl-scopeexpr-fix-x
      (equal (vl-scopeexpr->hid (vl-scopeexpr-fix x))
             (vl-scopeexpr->hid x)))

    Theorem: vl-scopeexpr->hid-vl-scopeexpr-equiv-congruence-on-x

    (defthm vl-scopeexpr->hid-vl-scopeexpr-equiv-congruence-on-x
      (implies (vl-scopeexpr-equiv x x-equiv)
               (equal (vl-scopeexpr->hid x)
                      (vl-scopeexpr->hid x-equiv)))
      :rule-classes :congruence)