• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
        • Mlib
        • Server
          • Vls-commands
          • Vl-descriptionlist-summaries
          • Vls-transdb
          • File-layout
          • Vls-data-p
          • Ts-queue
          • Vls-showloc
          • Vls-get-plainsrc
          • Vl-description->warnings
          • Vl-describe
          • Vls-port-table
          • Vls-describe
          • Vls-data-from-translation
          • Vl-find-description-insensitive
          • Vls-get-warnings
          • Vls-get-summary
          • Vls-get-origsrc
          • Vls-data-origname-reportcard
            • Vls-get-parents
            • Vls-get-children
            • Vls-get-summaries
            • Vl-ppc-description
            • Vls-get-desctypes
            • Vl-description-summary
            • Start
            • Vl-descalist->descriptions/types
            • Stop
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Server

    Vls-data-origname-reportcard

    Signature
    (vls-data-origname-reportcard data) → reportcard
    Arguments
    data — Guard (vls-data-p data).
    Returns
    reportcard — Type (vl-reportcard-p reportcard).

    Definitions and Theorems

    Function: vls-data-origname-reportcard

    (defun vls-data-origname-reportcard (data)
      (declare (xargs :guard (vls-data-p data)))
      (let ((__function__ 'vls-data-origname-reportcard))
        (declare (ignorable __function__))
        (b* (((vls-data data))
             (acc nil)
             (acc (vl-design-origname-reportcard-aux data.good acc))
             (acc (vl-design-origname-reportcard-aux data.bad acc))
             (ret (vl-clean-reportcard acc)))
          (fast-alist-free acc)
          ret)))

    Theorem: vl-reportcard-p-of-vls-data-origname-reportcard

    (defthm vl-reportcard-p-of-vls-data-origname-reportcard
      (b* ((reportcard (vls-data-origname-reportcard data)))
        (vl-reportcard-p reportcard))
      :rule-classes :rewrite)