• 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

    Make-vl-lintresult

    Constructor macro for vl-lintresult-p structures.

    Syntax:

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

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

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

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

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-lintresult

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