• 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-server
            • Vls-scannedalist-p
            • Vls-loadedalist-p
            • Vls-commands
            • Vls-data-p
              • Vls-data
              • Make-vls-data
              • Change-vls-data
              • Honsed-vls-data
              • Make-honsed-vls-data
              • Vls-data->orig-descalist
              • Vls-data->orig
              • Vls-data->name
              • Vls-data->ltime
              • Vls-data->filemap
              • Vls-data->defs
              • Vls-data->date
            • Vl-server-opts-p
            • Vl-descriptionlist-summaries
            • Vls-transdb
            • Vl-describe
            • Ts-queue
            • Vls-get-plainsrc
            • Vl-description->warnings
            • Vls-showloc
            • File-layout
            • Vls-remove-from-scannedalist
            • Vls-describe
            • Vl-server-top
            • Vls-port-table
            • Vl-find-description-insensitive
            • Vls-get-warnings
            • Vls-get-summary
            • Vls-get-origsrc
            • Vl-ppc-description
            • Vls-get-parents
            • Vls-get-children
            • Vls-data-origname-reportcard
            • Vls-data-from-zip
            • Start
            • Vls-make-scannedalist
            • Vls-get-summaries
            • Vls-get-unloaded-json
            • Vls-get-desctypes
            • Vls-scannedalist-to-json
            • Vls-loadedalist-to-json
            • Vl-description-summary
            • *vl-server-help*
            • Vl-descalist->descriptions/types
            • Stop
          • Vl-gather
          • Vl-zip
          • Vl-main
          • Split-plusargs
          • Vl-shell
          • Vl-json
        • Mlib
        • Transforms
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • Vl-server

Vls-data-p

Data that is available to vls-commands.

(vls-data-p x) is a defaggregate of the following fields.

  • orig — The original design, as seen very shortly after parsing.
        Invariant (vl-design-p orig).
  • name — Project name for this design.
        Invariant (stringp name).
  • date — Date stamp for this zip file.
        Invariant (stringp date).
  • ltime — Lisp time stamp for this zip file.
        Invariant (natp ltime).
  • orig-descalist — A vl-descalist-p binding every description in the original design to its definition.
        Invariant (vl-descalist-okp orig orig-descalist).
  • filemap — Map of all files that were loaded for this translation, for jumping to particular locations.
        Invariant (vl-filemap-p filemap).
  • defs — Summary of all `defines encountered while parsing.
        Invariant (vl-defines-p defs).

Source link: vls-data-p

A vls-data-p structure just aggregates a bunch of data that is produced when we run the translator.

These structures are typically produced by the vl-server as part of its translation-loading scheme.

Subtopics

Vls-data
Raw constructor for vls-data-p structures.
Make-vls-data
Constructor macro for vls-data-p structures.
Change-vls-data
A copying macro that lets you create new vls-data-p structures, based on existing structures.
Honsed-vls-data
Raw constructor for honsed vls-data-p structures.
Make-honsed-vls-data
Constructor macro for honsed vls-data-p structures.
Vls-data->orig-descalist
Access the orig-descalist field of a vls-data-p structure.
Vls-data->orig
Access the orig field of a vls-data-p structure.
Vls-data->name
Access the name field of a vls-data-p structure.
Vls-data->ltime
Access the ltime field of a vls-data-p structure.
Vls-data->filemap
Access the filemap field of a vls-data-p structure.
Vls-data->defs
Access the defs field of a vls-data-p structure.
Vls-data->date
Access the date field of a vls-data-p structure.