• 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-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
    • Lint-warning-suppression

    Vl-lint-atts-say-ignore

    Signature
    (vl-lint-atts-say-ignore atts mashed-warning-type) → ignorep
    Arguments
    atts — Guard (vl-atts-p atts).
    mashed-warning-type — Guard (stringp mashed-warning-type).
    Returns
    ignorep — Type (booleanp ignorep).

    Definitions and Theorems

    Function: vl-lint-atts-say-ignore

    (defun vl-lint-atts-say-ignore (atts mashed-warning-type)
      (declare (xargs :guard (and (vl-atts-p atts)
                                  (stringp mashed-warning-type))))
      (let ((__function__ 'vl-lint-atts-say-ignore))
        (declare (ignorable __function__))
        (if (atom atts)
            nil
          (or (vl-lint-attname-says-ignore (caar atts)
                                           mashed-warning-type)
              (vl-lint-atts-say-ignore (cdr atts)
                                       mashed-warning-type)))))

    Theorem: booleanp-of-vl-lint-atts-say-ignore

    (defthm booleanp-of-vl-lint-atts-say-ignore
      (b* ((ignorep (vl-lint-atts-say-ignore atts mashed-warning-type)))
        (booleanp ignorep))
      :rule-classes :type-prescription)