• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
          • Vl-lint
            • Vl-lintconfig-p
            • Condcheck
            • Lint-warning-suppression
            • Lucid
            • Lvaluecheck
            • Vl-interfacelist-alwaysstyle
            • Truncation-warnings
              • Vl-maybe-warn-about-implicit-truncation
              • Vl-struct-assignpat-keyval-type-err-warn
              • Vl-maybe-warn-about-implicit-extension
              • Vl-check-datatype-compatibility
              • Vl-subexpr-type-error-list-combine
              • Vl-datatype-compatibility-type-error
              • Vl-type-error-qmark-combine
              • Vl-type-error
              • Vl-subexpr-type-error-list-warn
              • Vl-assignpat-cast-type-error-warn
              • Vl-typecast-type-error-warn
              • Vl-check-datatype-assignment-compatibility
              • Vl-okay-to-truncate-expr
              • Vl-check-datatype-equivalence
              • Vl-maybe-type-error
              • Vl-classify-extension-warning-hook
              • Vl-subexpr-type-error
              • Vl-collect-toobig-constant-atoms
              • Vl-dimensionlist-compare-sizes
              • Vl-dimension-compare-sizes
              • Vl-unsized-atom-p
              • Vl-toobig-constant-atom-p
              • Vl-some-unsized-atom-p
                • Vl-expr-is-{'0, ...}-p
                • Vl-expr-is-{n{0}}-p
                • Vl-subexpr-type-error-list
                • Vl-typecompat-p
              • Vl-modulelist-alwaysstyle
              • Skip-detection
              • Vl-lint-report
              • Vl-lintresult
              • Vl::vl-design-sv-use-set
              • Oddexpr-check
              • Leftright-check
              • Duplicate-detect
              • Selfassigns
              • *vl-lint-help*
              • Arith-compare-check
              • Dupeinst-check
              • Qmarksize-check
              • Lint-whole-file-suppression
              • Run-vl-lint-main
              • Logicassign
              • Run-vl-lint
              • Vl-print-certain-warnings
              • Duperhs-check
              • Vl-lint-top
              • Sd-filter-problems
              • Vl-modulelist-add-svbad-warnings
              • Vl-module-add-svbad-warnings
              • Check-case
              • Vl-lint-extra-actions
              • Drop-lint-stubs
              • Vl-lint-print-warnings
              • Drop-user-submodules
              • Check-namespace
              • Vl-lintconfig-loadconfig
              • Vl-lint-design->svex-modalist-wrapper
              • Vl-delete-sd-problems-for-modnames-aux
              • Vl-collect-new-names-from-orignames
              • Vl-lint-print-all-warnings
              • Vl-design-remove-unnecessary-modules
              • Vl-delete-sd-problems-for-modnames
              • Vl-always-check-style
              • Vl-vardecllist-svbad-warnings
              • Vl-vardecl-svbad-warnings
              • Vl-reportcard-remove-suppressed
              • Vl-reportcard-keep-suppressed
              • Vl-alwayslist-check-style
              • Vl-remove-nameless-descriptions
              • Vl-lint-apply-quiet
              • Vl-warninglist-remove-suppressed
              • Vl-warninglist-keep-suppressed
              • Vl-print-eliminated-descs
              • Vl-module-alwaysstyle
              • Vl-jp-reportcard-aux
              • Vl-interface-alwaysstyle
              • Vl-design-alwaysstyle
              • Vl-jp-description-locations
              • Vl-jp-reportcard
              • Vl-pp-stringlist-lines
              • Vl-jp-design-locations
              • Vl-datatype-svbad-p
              • Unpacked-range-check
              • Sd-problem-major-p
              • Vl-alwaysstyle
            • Vl-server
            • Vl-gather
            • Vl-zip
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Truncation-warnings

    Vl-some-unsized-atom-p

    Signature
    (vl-some-unsized-atom-p x ss) → *
    Arguments
    x — Guard (vl-exprlist-p x).
    ss — Guard (vl-scopestack-p ss).

    Definitions and Theorems

    Function: vl-some-unsized-atom-p

    (defun vl-some-unsized-atom-p (x ss)
      (declare (xargs :guard (and (vl-exprlist-p x)
                                  (vl-scopestack-p ss))))
      (let ((__function__ 'vl-some-unsized-atom-p))
        (declare (ignorable __function__))
        (if (atom x)
            nil
          (or (vl-unsized-atom-p (car x) ss)
              (vl-some-unsized-atom-p (cdr x) ss)))))

    Theorem: vl-some-unsized-atom-p-of-vl-exprlist-fix-x

    (defthm vl-some-unsized-atom-p-of-vl-exprlist-fix-x
      (equal (vl-some-unsized-atom-p (vl-exprlist-fix x)
                                     ss)
             (vl-some-unsized-atom-p x ss)))

    Theorem: vl-some-unsized-atom-p-vl-exprlist-equiv-congruence-on-x

    (defthm vl-some-unsized-atom-p-vl-exprlist-equiv-congruence-on-x
      (implies (vl-exprlist-equiv x x-equiv)
               (equal (vl-some-unsized-atom-p x ss)
                      (vl-some-unsized-atom-p x-equiv ss)))
      :rule-classes :congruence)

    Theorem: vl-some-unsized-atom-p-of-vl-scopestack-fix-ss

    (defthm vl-some-unsized-atom-p-of-vl-scopestack-fix-ss
      (equal (vl-some-unsized-atom-p x (vl-scopestack-fix ss))
             (vl-some-unsized-atom-p x ss)))

    Theorem: vl-some-unsized-atom-p-vl-scopestack-equiv-congruence-on-ss

    (defthm vl-some-unsized-atom-p-vl-scopestack-equiv-congruence-on-ss
      (implies (vl-scopestack-equiv ss ss-equiv)
               (equal (vl-some-unsized-atom-p x ss)
                      (vl-some-unsized-atom-p x ss-equiv)))
      :rule-classes :congruence)