• 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
          • Preprocessor
          • Vl-loadconfig
          • Vl-loadstate
          • Lexer
            • Lex-strings
            • Lex-identifiers
            • Vl-typo-uppercase-p
            • Vl-typo-number-p
            • Vl-typo-lowercase-p
            • Lex-numbers
            • Chartypes
            • Vl-lex
            • Defchar
            • Tokens
            • Lex-keywords
            • Lexstate
            • Make-test-tokens
            • Lexer-utils
              • Def-prefix/remainder-thms
              • Def-token/remainder-thms
              • Vl-read-until-literal
              • Vl-read-through-literal
              • Vl-matches-string-p
              • Vl-read-literal
                • Vl-read-literal-prefix/remainder-thms
              • Vl-echarlist-kill-underscores
              • Vl-read-some-literal
            • Lex-comments
            • Vl-typo-uppercase-list-p
            • Vl-typo-lowercase-list-p
            • Vl-typo-number-list-p
          • Parser
          • Vl-load-merge-descriptions
          • Vl-find-basename/extension
          • Vl-load-file
          • Vl-loadresult
          • Scope-of-defines
          • Vl-find-file
          • Vl-flush-out-descriptions
          • Vl-description
          • Vl-read-file
          • Vl-includeskips-report-gather
          • Vl-load-main
          • Extended-characters
          • Vl-load
          • Vl-load-description
          • Vl-descriptions-left-to-load
          • Inject-warnings
          • Vl-preprocess-debug
          • Vl-write-preprocessor-debug-file
          • Vl-read-file-report-gather
          • Vl-load-descriptions
          • Vl-load-files
          • Translate-off
          • Vl-load-read-file-hook
          • Vl-read-file-report
          • Vl-loadstate-pad
          • Vl-load-summary
          • Vl-collect-modules-from-descriptions
          • Vl-loadstate->warnings
          • Vl-iskips-report
          • Vl-descriptionlist
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
        • Mlib
        • Transforms
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • Lexer-utils

Vl-read-literal

Match an exact literal string.

Signature
(vl-read-literal string echars) → (mv prefix remainder)
Arguments
string — The string we're looking for.
echars — The characters we're lexing.
    Guard (vl-echarlist-p echars).
Returns
prefix — nil on failure, or the matching prefix of echars on success.

Definitions and Theorems

Function: vl-read-literal$inline

(defun vl-read-literal$inline (string echars)
  (declare (type string string))
  (declare (xargs :guard (vl-echarlist-p echars)))
  (declare (xargs :guard (not (equal string ""))))
  (let ((__function__ 'vl-read-literal))
    (declare (ignorable __function__))
    (if (vl-matches-string-p string echars)
        (let ((strlen (length (string-fix string))))
          (mv (first-n strlen echars)
              (rest-n strlen echars)))
      (mv nil echars))))

Theorem: vl-echarlist->chars-of-prefix-of-vl-read-literal

(defthm vl-echarlist->chars-of-prefix-of-vl-read-literal
  (b* (((mv prefix ?remainder)
        (vl-read-literal string echars)))
    (implies prefix
             (equal (vl-echarlist->chars prefix)
                    (explode string)))))

Theorem: vl-echarlist->string-of-prefix-of-vl-read-literal

(defthm vl-echarlist->string-of-prefix-of-vl-read-literal
  (b* (((mv prefix ?remainder)
        (vl-read-literal string echars)))
    (implies prefix
             (equal (vl-echarlist->string prefix)
                    (string-fix string)))))

Subtopics

Vl-read-literal-prefix/remainder-thms
Prefix and remainder theorems for vl-read-literal, automatically generated by def-prefix/remainder-thms.