• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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
            • Vl-lintresult
              • Make-vl-lintresult
              • Change-vl-lintresult
              • Honsed-vl-lintresult
              • Make-honsed-vl-lintresult
              • Vl-lintresult->sd-probs
              • Vl-lintresult->reportcard
              • Vl-lintresult->design0
              • Vl-lintresult->design
            • Lint-warning-suppression
            • 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-lintresult-p

    Vl-lintresult

    Raw constructor for vl-lintresult-p structures.

    Syntax:

    (vl-lintresult design design0 reportcard sd-probs)

    This is the lowest-level constructor for vl-lintresult-p structures. It simply conses together a structure with the specified fields.

    Note: It's generally better to use macros like make-vl-lintresult or change-vl-lintresult instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.

    The vl-lintresult-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-lintresult instead.

    Definition

    This is an ordinary constructor function introduced by defaggregate.

    Function: vl-lintresult

    (defun vl-lintresult (design design0 reportcard sd-probs)
     (declare (xargs :guard (and (vl-design-p design)
                                 (vl-design-p design0)
                                 (vl-reportcard-p reportcard)
                                 (sd-problemlist-p sd-probs))))
     (cons
        :vl-lintresult (cons (cons 'design design)
                             (cons (cons 'design0 design0)
                                   (cons (cons 'reportcard reportcard)
                                         (cons (cons 'sd-probs sd-probs)
                                               nil))))))