• 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
            • 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

    Vl-ppc-description

    Signature
    (vl-ppc-description x ss &key (ps 'ps)) → ps
    Arguments
    x — Guard (vl-description-p x).
    ss — Guard (vl-scopestack-p ss).

    Definitions and Theorems

    Function: vl-ppc-description-fn

    (defun vl-ppc-description-fn (x ss ps)
      (declare (xargs :stobjs (ps)))
      (declare (xargs :guard (and (vl-description-p x)
                                  (vl-scopestack-p ss))))
      (let ((__function__ 'vl-ppc-description))
        (declare (ignorable __function__))
        (b* ((x (vl-description-fix x)))
          (case (tag x)
                (:vl-module (vl-ppc-module x ss))
                (:vl-udp (vl-ppc-udp x))
                (:vl-interface (vl-ppc-interface x ss))
                (:vl-package (vl-ppc-package x ss))
                (:vl-program (vl-ppc-program x))
                (:vl-class (vl-ppc-class x))
                (:vl-config (vl-ppc-config x))
                (:vl-taskdecl (vl-pp-taskdecl x))
                (:vl-fundecl (vl-pp-fundecl x))
                (:vl-paramdecl (vl-pp-paramdecl x))
                (:vl-import (vl-pp-import x))
                (:vl-fwdtypedef (vl-pp-fwdtypedef x))
                (:vl-vardecl (vl-pp-vardecl x))
                (:vl-dpiimport (vl-pp-dpiimport x))
                (:vl-dpiexport (vl-pp-dpiexport x))
                (:vl-bind (vl-pp-bind x ss))
                (:vl-property (vl-pp-property x))
                (:vl-sequence (vl-pp-sequence x))
                (otherwise (vl-pp-typedef x))))))