• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
          • Vl-lintconfig-p
          • Lucid
          • Skip-detection
          • Vl-lintresult-p
          • Lint-warning-suppression
            • Vl-mash-warning-strings
            • Vl-design-lint-ignoreall
              • Vl-udplist-lint-ignoreall
              • Vl-programlist-lint-ignoreall
              • Vl-packagelist-lint-ignoreall
              • Vl-modulelist-lint-ignoreall
              • Vl-interfacelist-lint-ignoreall
              • Vl-configlist-lint-ignoreall
              • Vl-interface-lint-ignoreall
              • Vl-program-lint-ignoreall
              • Vl-package-lint-ignoreall
                • Vl-module-lint-ignoreall
                • Vl-config-lint-ignoreall
                • Vl-udp-lint-ignoreall
              • Vl-design-suppress-lint-warnings
              • Vl-warninglist-lint-ignoreall
              • Vl-lint-scan-for-ignore
              • Vl-mash-warning-string
              • Vl-lint-suppress-warnings
              • Vl-warning-type-mash
              • Vl-lint-ignore-att-p
              • Vl-lint-atts-say-ignore
              • Vl-lint-attname-says-ignore
              • Vl-lint-ignore-att-mash
            • Condcheck
            • Selfassigns
            • Leftright-check
            • Dupeinst-check
            • Oddexpr-check
            • Remove-toohard
            • Qmarksize-check
            • Portcheck
            • Duplicate-detect
            • Vl-print-certain-warnings
            • Duperhs-check
            • *vl-lint-help*
            • Lint-stmt-rewrite
            • Drop-missing-submodules
            • Check-case
            • Drop-user-submodules
            • Check-namespace
            • Vl-lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-design-lint-ignoreall

    Vl-package-lint-ignoreall

    Signature
    (vl-package-lint-ignoreall x mashed-ignore-list) → new-x
    Arguments
    x — Guard (vl-package-p x).
    mashed-ignore-list — Guard (string-listp mashed-ignore-list).
    Returns
    new-x — Type (vl-package-p new-x).

    Definitions and Theorems

    Function: vl-package-lint-ignoreall

    (defun vl-package-lint-ignoreall (x mashed-ignore-list)
     (declare (xargs :guard (and (vl-package-p x)
                                 (string-listp mashed-ignore-list))))
     (let ((__function__ 'vl-package-lint-ignoreall))
      (declare (ignorable __function__))
      (change-vl-package
       x
       :warnings (vl-warninglist-lint-ignoreall (vl-package->warnings x)
                                                mashed-ignore-list))))

    Theorem: vl-package-p-of-vl-package-lint-ignoreall

    (defthm vl-package-p-of-vl-package-lint-ignoreall
      (b* ((new-x (vl-package-lint-ignoreall x mashed-ignore-list)))
        (vl-package-p new-x))
      :rule-classes :rewrite)

    Theorem: vl-package-lint-ignoreall-of-vl-package-fix-x

    (defthm vl-package-lint-ignoreall-of-vl-package-fix-x
      (equal (vl-package-lint-ignoreall (vl-package-fix x)
                                        mashed-ignore-list)
             (vl-package-lint-ignoreall x mashed-ignore-list)))

    Theorem: vl-package-lint-ignoreall-vl-package-equiv-congruence-on-x

    (defthm vl-package-lint-ignoreall-vl-package-equiv-congruence-on-x
     (implies
         (vl-package-equiv x x-equiv)
         (equal (vl-package-lint-ignoreall x mashed-ignore-list)
                (vl-package-lint-ignoreall x-equiv mashed-ignore-list)))
     :rule-classes :congruence)

    Theorem: vl-package-lint-ignoreall-of-string-list-fix-mashed-ignore-list

    (defthm
        vl-package-lint-ignoreall-of-string-list-fix-mashed-ignore-list
     (equal
      (vl-package-lint-ignoreall x (string-list-fix mashed-ignore-list))
      (vl-package-lint-ignoreall x mashed-ignore-list)))

    Theorem: vl-package-lint-ignoreall-string-list-equiv-congruence-on-mashed-ignore-list

    (defthm
     vl-package-lint-ignoreall-string-list-equiv-congruence-on-mashed-ignore-list
     (implies
         (str::string-list-equiv mashed-ignore-list
                                 mashed-ignore-list-equiv)
         (equal (vl-package-lint-ignoreall x mashed-ignore-list)
                (vl-package-lint-ignoreall x mashed-ignore-list-equiv)))
     :rule-classes :congruence)