• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • 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
            • Parse-insts
            • Parse-datatype
            • Parse-functions
            • Parse-datatypes
            • Parse-strengths
            • Vl-parse-genvar-declaration
            • Vl-parse
            • Parse-ports
              • Parse-port-types
              • Sv-ansi-portdecls
              • Creating-portdecls/vardecls
              • Sv-non-ansi-portdecls
              • Verilog-2005-ports
                • Vl-parse-port-reference
                • Vl-parse-1+-ports-separated-by-commas
                • Vl-parse-1+-port-references-separated-by-commas
                • Vl-parse-nonnull-port
                • Vl-parse-port-expression
                • Sv-ansi-port-interpretation
                • Verilog-2005-portdecls
              • 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
    • Verilog-2005-ports

    Vl-parse-port-expression

    Matches port_expression.

    Signature
    (vl-parse-port-expression &key (tokstream 'tokstream) 
                              (config 'config)) 
     
      → 
    (mv errmsg? value new-tokstream)
    Arguments
    config — Guard (vl-loadconfig-p config).

    Definitions and Theorems

    Function: vl-parse-port-expression-fn

    (defun vl-parse-port-expression-fn (tokstream config)
     (declare (xargs :stobjs (tokstream)))
     (declare (xargs :guard (vl-loadconfig-p config)))
     (declare (ignorable config))
     (let ((__function__ 'vl-parse-port-expression))
      (declare (ignorable __function__))
      (seq
       tokstream
       (when (vl-is-token? :vl-lcurly)
             (:= (vl-match))
             (args := (vl-parse-1+-port-references-separated-by-commas))
             (:= (vl-match-token :vl-rcurly))
             (return (make-vl-nonatom :op :vl-concat
                                      :args args)))
       (ref := (vl-parse-port-reference))
       (return ref))))

    Theorem: vl-parse-port-expression-fails-gracefully

    (defthm vl-parse-port-expression-fails-gracefully
      (implies (mv-nth 0 (vl-parse-port-expression))
               (not (mv-nth 1 (vl-parse-port-expression)))))

    Theorem: vl-warning-p-of-vl-parse-port-expression

    (defthm vl-warning-p-of-vl-parse-port-expression
      (iff (vl-warning-p (mv-nth 0 (vl-parse-port-expression)))
           (mv-nth 0 (vl-parse-port-expression))))

    Theorem: vl-parse-port-expression-result

    (defthm vl-parse-port-expression-result
      (implies (and t)
               (equal (vl-expr-p (mv-nth 1 (vl-parse-port-expression)))
                      (not (mv-nth 0 (vl-parse-port-expression))))))

    Theorem: vl-parse-port-expression-count-strong

    (defthm vl-parse-port-expression-count-strong
     (and
      (<= (vl-tokstream-measure
               :tokstream (mv-nth 2 (vl-parse-port-expression)))
          (vl-tokstream-measure))
      (implies (not (mv-nth 0 (vl-parse-port-expression)))
               (< (vl-tokstream-measure
                       :tokstream (mv-nth 2 (vl-parse-port-expression)))
                  (vl-tokstream-measure))))
     :rule-classes ((:rewrite) (:linear)))