• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
          • Typo-detection
          • Vl-wireinfo-alistp
          • Vl-annotate-vardecllist-with-wireinfo
          • Vl-useset-report-entry-p
          • Vl-print-useset-report-entry
          • Vl-mark-wires-for-module
          • Vl-split-useset-report
          • Vl-annotate-vardecl-with-wireinfo
          • Vl-mark-wires-for-modinstlist
          • Vl-mark-wires-for-modinst
          • Vl-mark-wires-for-gateinstlist
          • Vl-mark-wires-for-gateinst
          • Vl-mark-wires-for-plainarg
          • Vl-wireinfo-p
            • Vl-wireinfo
              • Make-vl-wireinfo
              • Change-vl-wireinfo
              • Make-honsed-vl-wireinfo
              • Honsed-vl-wireinfo
              • Vl-wireinfo->usedp
              • Vl-wireinfo->setp
            • Vl-mark-wires-for-modulelist
            • Vl-vardecllist-impexp-names
            • Vl-report-totals
            • Vl-mark-wires-for-plainarglist
            • Vl-collect-unused-or-unset-wires
            • Vl-clean-up-warning-wires
            • Vl-print-useset-report-top
            • Vl-mark-wires-for-arguments
            • Vl-useset-report-p
            • Vl-star-names-of-warning-wires
            • Vl-design-use-set-report
            • Vl-module-impexp-names
            • Vl-make-initial-wireinfo-alist
            • Vl-mark-wire-used
            • Vl-mark-wire-set
            • Vl-mark-wires-used
            • Vl-mark-wires-for-assignment
            • Vl-mark-wires-for-assignlist
            • Vl-mark-wires-set
            • Vl-print-useset-report-full-aux
            • Vl-print-typo-alist
            • Vl-print-typo-possibilities
          • 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
    • Vl-wireinfo-p

    Vl-wireinfo

    Raw constructor for vl-wireinfo-p structures.

    Syntax:

    (vl-wireinfo usedp setp)

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

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

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

    Definition

    This is an ordinary constructor function introduced by defaggregate.

    Function: vl-wireinfo

    (defun vl-wireinfo (usedp setp)
      (declare (xargs :guard (and (booleanp usedp) (booleanp setp))))
      (cons :vl-wireinfo (cons (cons 'usedp usedp)
                               (cons (cons 'setp setp) nil))))