• 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
        • Mlib
        • Server
          • Vls-commands
          • Vl-descriptionlist-summaries
          • Vls-transdb
          • File-layout
          • Vls-data-p
          • Ts-queue
          • Vls-showloc
          • Vls-get-plainsrc
          • Vl-description->warnings
          • Vl-describe
          • Vls-port-table
          • Vls-describe
          • Vls-data-from-translation
          • Vl-find-description-insensitive
          • Vls-get-warnings
          • Vls-get-summary
          • Vls-get-origsrc
          • Vls-data-origname-reportcard
          • Vls-get-parents
          • Vls-get-children
          • Vls-get-summaries
          • Vl-ppc-description
            • Vls-get-desctypes
            • Vl-description-summary
            • Start
            • Vl-descalist->descriptions/types
            • Stop
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • 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))
                (:vl-package (vl-ppc-package x))
                (:vl-program (vl-ppc-program 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))
                (otherwise (vl-pp-typedef x))))))