• 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
          • Preprocessor
          • Vl-loadconfig
          • Lexer
          • Vl-loadstate
          • Parser
            • Parse-expressions
            • Parse-udps
            • Vl-genelements
            • Parse-paramdecls
            • Parse-blockitems
            • Parse-utils
              • Defparser
              • Vl-endinfo-p
                • Vl-endinfo
                  • Make-vl-endinfo
                  • Change-vl-endinfo
                  • Make-honsed-vl-endinfo
                  • Honsed-vl-endinfo
                  • Vl-endinfo->name
                  • Vl-endinfo->loc
                • Vl-match-token
                • Vl-match-some-token
                • Vl-match-any-except
                • Vl-type-of-matched-token
                • Vl-maybe-match-token
                • Vl-tokstream-backup-p
                • Vl-parse-error
                • Vl-match
                • Vl-parse-warning
                • Vl-match-any
                • Vl-current-loc
                • Vl-parse-endblock-name
                • Vl-tokenlist-fix
                • Vl-lookahead-is-some-token?
                • Vl-is-some-token?
                • Vl-is-token?
                • Vl-tokstream-save
                • Vl-tokstream-restore
                • Vl-tokstream-fix
                • Vl-lookahead-is-token?
                • Vl-tokstream->tokens
                • Vl-tokstream-add-warning
                • Vl-tokstream->pstate
                • Expand-defparsers
                • *vl-default-token*
              • Parse-insts
              • Parse-datatype
              • Parse-functions
              • Parse-datatypes
              • Parse-strengths
              • Vl-parse-genvar-declaration
              • Vl-parse
              • Parse-ports
              • Seq
              • Parse-packages
            • Vl-load-merge-descriptions
            • Scope-of-defines
            • Vl-load-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-loadresult
            • Vl-read-file
            • Vl-find-basename/extension
            • Vl-find-file
            • Vl-read-files
            • Extended-characters
            • Vl-load
            • Vl-load-main
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-load-descriptions
            • Vl-load-files
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-descriptionlist
          • Transforms
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-endinfo-p

    Vl-endinfo

    Raw constructor for vl-endinfo-p structures.

    Syntax:

    (vl-endinfo name loc)

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

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

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

    Definition

    This is an ordinary constructor function introduced by defaggregate.

    Function: vl-endinfo

    (defun vl-endinfo (name loc)
      (declare (xargs :guard (and (maybe-stringp name)
                                  (vl-location-p loc))))
      (cons name loc))