• 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
        • Lint
        • Mlib
          • Scopestack
            • Vl-interfaceportlist->ifnames
            • Vl-scope-find-item
            • Vl-blockscope
            • Vl-importlist-find-explicit-item
            • Vl-scopestack-find-item/context
            • Vl-importlist-find-implicit-item
            • Vl-import-stars-find-item
            • Vl-importlist->explicit-item-alist
            • Vl-scopestack-find-definition/ss
            • Vl-scopeitem
            • Vl-scopestack-find-package/ss
            • Vl-scopeinfo-find-item
            • Vl-scopestack-find-item/ss
            • Vl-scopestack
            • Vl-scopeinfo
            • Scopestack-constants
            • Vl-scopestack-push
            • Vl-scope->scopeinfo
            • Vl-scope-find-item-fast
            • Vl-module-scope-find-item
            • Vl-importresult
            • Vl-genblob-scope-find-item
            • Vl-design-scope-find-definition
            • Vl-scopestack-find-item
            • Vl-scopestack-find-definition
            • Vl-scope-find-portdecl
            • Vl-scope-find-definition
            • Vl-package-scope-find-item
            • Vl-interface-scope-find-portdecl
            • Vl-interface-scope-find-item
            • Vl-genblob-scope-find-portdecl
            • Vl-design-scope-find-item
            • Vl-blockscope-scope-find-item
            • Vl-scopestack-find-package
            • Vl-scope-find-package
            • Vl-module-scope-find-portdecl
            • Vl-design-scope-find-package
            • Vl-scope-find-portdecl-fast
            • Vl-package-scope-item-alist-top
            • Vl-scopedef
            • Vl-scope-portdecl-alist
            • Vl-scope-package-alist
            • Vl-scope-find-definition-fast
            • Vl-scope-definition-alist
            • Vl-scope-find-package-fast
            • Vl-scopestack->path-aux
            • Vl-scopestack->path
            • Vl-scopestack->design
            • Vl-scopestack-init
            • Vl-scopeitem->name
              • Vl-importlist->star-packages
              • Vl-scopestack-pop
              • Vl-scopestack-nesting-level
              • Vl-scope
              • Vl-design-scope-package-alist-top
              • Vl-scopestack-toplevel-p
              • Vl-scope->name
              • Vl-scopestacks-free
              • Vl-importresult-alist
            • Filtering-by-name
            • Vl-namefactory
            • Substitution
            • Allexprs
            • Hid-tools
            • Vl-consteval
            • Range-tools
            • Lvalexprs
            • Hierarchy
            • Finding-by-name
            • Expr-tools
            • Expr-slicing
            • Stripping-functions
            • Stmt-tools
            • Modnamespace
            • Vl-parse-expr-from-str
            • Welltyped
            • Reordering-by-name
            • Flat-warnings
            • Genblob
            • Expr-building
            • Datatype-tools
            • Syscalls
            • Relocate
            • Expr-cleaning
            • Namemangle
            • Caremask
            • Port-tools
            • Lvalues
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Scopestack

    Vl-scopeitem->name

    Signature
    (vl-scopeitem->name x) → name
    Arguments
    x — Guard (vl-scopeitem-p x).
    Returns
    name — Type (maybe-stringp name).

    Definitions and Theorems

    Function: vl-scopeitem->name

    (defun vl-scopeitem->name (x)
      (declare (xargs :guard (vl-scopeitem-p x)))
      (let ((__function__ 'vl-scopeitem->name))
        (declare (ignorable __function__))
        (b* ((x (vl-scopeitem-fix x)))
          (case (tag x)
                (:vl-modport (vl-modport->name x))
                (:vl-modinst (vl-modinst->instname x))
                (:vl-gateinst (vl-gateinst->name x))
                (:vl-genblock (vl-genblock->name x))
                (:vl-genarray (vl-genarray->name x))
                ((:vl-genloop :vl-genif
                              :vl-gencase :vl-genbase)
                 nil)
                (:vl-interfaceport (vl-interfaceport->name x))
                (:vl-paramdecl (vl-paramdecl->name x))
                (:vl-vardecl (vl-vardecl->name x))
                (:vl-fundecl (vl-fundecl->name x))
                (:vl-taskdecl (vl-taskdecl->name x))
                (otherwise (vl-typedef->name x))))))

    Theorem: maybe-stringp-of-vl-scopeitem->name

    (defthm maybe-stringp-of-vl-scopeitem->name
      (b* ((name (vl-scopeitem->name x)))
        (maybe-stringp name))
      :rule-classes :type-prescription)

    Theorem: vl-scopeitem->name-of-vl-scopeitem-fix-x

    (defthm vl-scopeitem->name-of-vl-scopeitem-fix-x
      (equal (vl-scopeitem->name (vl-scopeitem-fix x))
             (vl-scopeitem->name x)))

    Theorem: vl-scopeitem->name-vl-scopeitem-equiv-congruence-on-x

    (defthm vl-scopeitem->name-vl-scopeitem-equiv-congruence-on-x
      (implies (vl-scopeitem-equiv x x-equiv)
               (equal (vl-scopeitem->name x)
                      (vl-scopeitem->name x-equiv)))
      :rule-classes :congruence)