• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
          • Vl-lint
            • Vl-lintconfig-p
            • Condcheck
            • Lint-warning-suppression
            • Lucid
            • Lvaluecheck
            • Vl-interfacelist-alwaysstyle
            • Truncation-warnings
            • Vl-modulelist-alwaysstyle
            • Skip-detection
            • Vl-lint-report
            • Vl-lintresult
              • Vl-lintresult-fix
              • Make-vl-lintresult
                • Vl-lintresult-equiv
                • Vl-lintresult-p
                • Vl-lintresult->sv-modalist
                • Vl-lintresult->sd-probs
                • Vl-lintresult->reportcard
                • Vl-lintresult->design-orig
                • Change-vl-lintresult
                • Vl-lintresult->design0
                • Vl-lintresult->design
              • Vl::vl-design-sv-use-set
              • Oddexpr-check
              • Leftright-check
              • Duplicate-detect
              • Selfassigns
              • *vl-lint-help*
              • Arith-compare-check
              • Dupeinst-check
              • Qmarksize-check
              • Lint-whole-file-suppression
              • Run-vl-lint-main
              • Logicassign
              • Run-vl-lint
              • Vl-print-certain-warnings
              • Duperhs-check
              • Vl-lint-top
              • Sd-filter-problems
              • Vl-modulelist-add-svbad-warnings
              • Vl-module-add-svbad-warnings
              • Check-case
              • Vl-lint-extra-actions
              • Drop-lint-stubs
              • Vl-lint-print-warnings
              • Drop-user-submodules
              • Check-namespace
              • Vl-lintconfig-loadconfig
              • Vl-lint-design->svex-modalist-wrapper
              • Vl-delete-sd-problems-for-modnames-aux
              • Vl-collect-new-names-from-orignames
              • Vl-lint-print-all-warnings
              • Vl-design-remove-unnecessary-modules
              • Vl-delete-sd-problems-for-modnames
              • Vl-always-check-style
              • Vl-vardecllist-svbad-warnings
              • Vl-vardecl-svbad-warnings
              • Vl-reportcard-remove-suppressed
              • Vl-reportcard-keep-suppressed
              • Vl-alwayslist-check-style
              • Vl-remove-nameless-descriptions
              • Vl-lint-apply-quiet
              • Vl-warninglist-remove-suppressed
              • Vl-warninglist-keep-suppressed
              • Vl-print-eliminated-descs
              • Vl-module-alwaysstyle
              • Vl-jp-reportcard-aux
              • Vl-interface-alwaysstyle
              • Vl-design-alwaysstyle
              • Vl-jp-description-locations
              • Vl-jp-reportcard
              • Vl-pp-stringlist-lines
              • Vl-jp-design-locations
              • Vl-datatype-svbad-p
              • Unpacked-range-check
              • Sd-problem-major-p
              • Vl-alwaysstyle
            • Vl-server
            • Vl-gather
            • Vl-zip
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-lintresult

    Make-vl-lintresult

    Basic constructor macro for vl-lintresult structures.

    Syntax
    (make-vl-lintresult [:design <design>] 
                        [:design0 <design0>] 
                        [:design-orig <design-orig>] 
                        [:sv-modalist <sv-modalist>] 
                        [:reportcard <reportcard>] 
                        [:sd-probs <sd-probs>]) 
    

    This is the usual way to construct vl-lintresult structures. It simply conses together a structure with the specified fields.

    This macro generates a new vl-lintresult structure from scratch. See also change-vl-lintresult, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-vl-lintresult

    (defmacro make-vl-lintresult (&rest args)
      (std::make-aggregate 'vl-lintresult
                           args
                           '((:design)
                             (:design0)
                             (:design-orig)
                             (:sv-modalist)
                             (:reportcard)
                             (:sd-probs))
                           'make-vl-lintresult
                           nil))

    Function: vl-lintresult

    (defun vl-lintresult (design design0 design-orig
                                 sv-modalist reportcard sd-probs)
      (declare (xargs :guard (and (vl-design-p design)
                                  (vl-design-p design0)
                                  (vl-design-p design-orig)
                                  (sv::modalist-p sv-modalist)
                                  (vl-reportcard-p reportcard)
                                  (sd-problemlist-p sd-probs))))
      (declare (xargs :guard t))
      (let ((__function__ 'vl-lintresult))
        (declare (ignorable __function__))
        (b* ((design (mbe :logic (vl-design-fix design)
                          :exec design))
             (design0 (mbe :logic (vl-design-fix design0)
                           :exec design0))
             (design-orig (mbe :logic (vl-design-fix design-orig)
                               :exec design-orig))
             (sv-modalist (mbe :logic (sv::modalist-fix sv-modalist)
                               :exec sv-modalist))
             (reportcard (mbe :logic (vl-reportcard-fix reportcard)
                              :exec reportcard))
             (sd-probs (mbe :logic (sd-problemlist-fix sd-probs)
                            :exec sd-probs)))
          (cons :vl-lintresult (list (cons 'design design)
                                     (cons 'design0 design0)
                                     (cons 'design-orig design-orig)
                                     (cons 'sv-modalist sv-modalist)
                                     (cons 'reportcard reportcard)
                                     (cons 'sd-probs sd-probs))))))