• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • 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
              • Vl-lexstate-p
              • Vl-plaintoken-alistp
              • *vl-2012-strict-lexstate*
              • Vl-lexstate->plainalist
              • Vl-lexstate-init
              • *vl-2005-strict-lexstate*
                • *vl-2012-lexstate*
                • *vl-2005-lexstate*
              • Make-test-tokens
              • Lexer-utils
              • 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
    • Lexstate

    *vl-2005-strict-lexstate*

    Configuration for strict Verilog-2005 mode.

    Definition: *vl-2005-strict-lexstate*

    (defconst *vl-2005-strict-lexstate*
      (make-vl-lexstate :kwdtable *vl-2005-keyword-table-strict*
                        :bangops '(("!==" . :vl-cne)
                                   ("!=" . :vl-neq)
                                   ("!" . :vl-lognot))
                        :poundops '(("#" . :vl-pound))
                        :remops '(("%" . :vl-rem))
                        :andops '(("&&&" . :vl-andandand)
                                  ("&&" . :vl-logand)
                                  ("&" . :vl-bitand))
                        :starops '(("**" . :vl-power)
                                   ("*)" . :vl-endattr)
                                   ("*" . :vl-times))
                        :plusops '(("+:" . :vl-pluscolon)
                                   ("+" . :vl-plus))
                        :dashops '(("->" . :vl-arrow)
                                   ("-:" . :vl-minuscolon)
                                   ("-" . :vl-minus))
                        :dotops '(("." . :vl-dot))
                        :divops '(("/" . :vl-div))
                        :colonops '((":" . :vl-colon))
                        :lessops '(("<<<" . :vl-ashl)
                                   ("<<" . :vl-shl)
                                   ("<=" . :vl-lte)
                                   ("<" . :vl-lt))
                        :gtops '((">>>" . :vl-ashr)
                                 (">>" . :vl-shr)
                                 (">=" . :vl-gte)
                                 (">" . :vl-gt))
                        :eqops '(("===" . :vl-ceq)
                                 ("==" . :vl-eq)
                                 ("=" . :vl-equalsign))
                        :xorops '(("^~" . :vl-xnor) ("^" . :vl-xor))
                        :barops '(("||" . :vl-logor) ("|" . :vl-bitor))
                        :dollarops nil
                        :quotesp nil
                        :strextsp nil
                        :timelitsp nil
                        :extintsp nil
                        :onestepp nil))