• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
          • Vl-warninglist->types
          • Vl-warning
          • Propagating-errors
          • Vl-reportcard
          • Vl-warning-sort
          • 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
            • Clean-warnings
            • Warn
            • Vl-print-warnings-with-header
            • Vl-some-warning-fatalp
            • Vl-print-warnings-with-named-header
            • Flat-warnings
            • Vl-remove-warnings
            • Vl-keep-warnings
            • Vl-print-warnings
            • Vl-some-warning-of-type-p
            • Vl-clean-warnings
            • Vl-warnings-to-string
            • Vl-warninglist
            • Vl-print-warning
            • Ok
            • Vl-trace-warnings
            • Fatal
          • Primitives
          • Use-set
          • Syntax
          • Getting-started
          • Utilities
          • Loader
          • Transforms
          • 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-udp-lint-ignoreall

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

    Definitions and Theorems

    Function: vl-udp-lint-ignoreall

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

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

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

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

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

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

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

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

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

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

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