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

    Vl-lint-attname-says-ignore

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

    Definitions and Theorems

    Function: vl-lint-attname-says-ignore

    (defun vl-lint-attname-says-ignore (attname mashed-warning-type)
      (declare (xargs :guard (and (stringp attname)
                                  (stringp mashed-warning-type))))
      (let ((__function__ 'vl-lint-attname-says-ignore))
        (declare (ignorable __function__))
        (b* (((unless (vl-lint-ignore-att-p attname))
              nil)
             (mashed-att (vl-lint-ignore-att-mash attname))
             ((when (equal mashed-att "")) t))
          (str::istrprefixp mashed-att mashed-warning-type))))

    Theorem: booleanp-of-vl-lint-attname-says-ignore

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