• 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
            • 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
              • *vl-2012-keyword-table*
              • *vl-2012-keyword-table-strict*
              • Vl-keyword-lookup
              • Vl-lex-simple-identifier-or-keyword
              • *vl-2005-keyword-table*
              • *vl-2005-keyword-table-strict*
              • Vl-keyword-table-p
              • *vl-2012-keywords*
              • Vl-full-keyword-table
              • Vl-make-keyword-table
                • *vl-extra-keywords*
                • *vl-2005-keywords*
              • Lexstate
              • Make-test-tokens
              • Lexer-utils
              • Lex-comments
              • Vl-typo-uppercase-list-p
              • Vl-typo-lowercase-list-p
              • Vl-typo-number-list-p
            • Vl-loadstate
            • Parser
            • 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
    • Lex-keywords

    Vl-make-keyword-table

    A keyword table binds the names of keywords (strings) to their corresponding :vl-kwd-xxx symbols.

    Signature
    (vl-make-keyword-table x) → fast-alist
    Arguments
    x — Guard (string-listp x).

    Definitions and Theorems

    Function: vl-make-keyword-table

    (defun vl-make-keyword-table (x)
     (declare (xargs :guard (string-listp x)))
     (let ((__function__ 'vl-make-keyword-table))
       (declare (ignorable __function__))
       (if
        (consp x)
        (hons-acons (car x)
                    (intern (cat "VL-KWD-" (str::upcase-string (car x)))
                            "KEYWORD")
                    (vl-make-keyword-table (cdr x)))
        nil)))