• 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
          • 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
            • Lexstate
              • Vl-lexstate-p
                • Vl-lexstate
                • Make-vl-lexstate
                • Change-vl-lexstate
                • Honsed-vl-lexstate
                • Make-honsed-vl-lexstate
                • Vl-lexstate->xorops
                • Vl-lexstate->timelitsp
                • Vl-lexstate->strextsp
                • Vl-lexstate->starops
                • Vl-lexstate->remops
                • Vl-lexstate->quotesp
                • Vl-lexstate->poundops
                • Vl-lexstate->plusops
                • Vl-lexstate->lessops
                • Vl-lexstate->kwdtable
                • Vl-lexstate->gtops
                • Vl-lexstate->extintsp
                • Vl-lexstate->eqops
                • Vl-lexstate->dotops
                • Vl-lexstate->dollarops
                • Vl-lexstate->divops
                • Vl-lexstate->dashops
                • Vl-lexstate->colonops
                • Vl-lexstate->barops
                • Vl-lexstate->bangops
                • Vl-lexstate->andops
              • 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
          • 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
  • Lexstate

Vl-lexstate-p

Internal representation of the lexer's configuration.

(vl-lexstate-p x) is a defaggregate of the following fields.

  • kwdtable — The set of lex-keywords that are currently supported; this could be, e.g., the Verilog 2005 keywords or the SystemVerilog 2012 keywords, and might or might not include VL extensions.
        Invariant (vl-keyword-table-p kwdtable).
  • bangops — Operators starting with !.
        Invariant (vl-plaintoken-alistp bangops).
  • poundops — Operators starting with #.
        Invariant (vl-plaintoken-alistp poundops).
  • remops — Operators starting with %.
        Invariant (vl-plaintoken-alistp remops).
  • andops — Operators starting with &.
        Invariant (vl-plaintoken-alistp andops).
  • starops — Operators starting with *.
        Invariant (vl-plaintoken-alistp starops).
  • plusops — Operators starting with +.
        Invariant (vl-plaintoken-alistp plusops).
  • dashops — Operators starting with -.
        Invariant (vl-plaintoken-alistp dashops).
  • dotops — Operators starting with ..
        Invariant (vl-plaintoken-alistp dotops).
  • divops — Operators starting with /.
        Invariant (vl-plaintoken-alistp divops).
  • colonops — Operators starting with :.
        Invariant (vl-plaintoken-alistp colonops).
  • lessops — Operators starting with <.
        Invariant (vl-plaintoken-alistp lessops).
  • gtops — Operators starting with >.
        Invariant (vl-plaintoken-alistp gtops).
  • eqops — Operators starting with =.
        Invariant (vl-plaintoken-alistp eqops).
  • xorops — Operators starting with ^.
        Invariant (vl-plaintoken-alistp xorops).
  • barops — Operators starting with |.
        Invariant (vl-plaintoken-alistp barops).
  • dollarops — Special tokens starting with $.
        Invariant (vl-plaintoken-alistp dollarops).
  • quotesp — Enable SystemVerilog 2012 ' tokens?.
        Invariant (booleanp quotesp).
  • strextsp — Enable SystemVerilog 2012 string literal extensions?.
        Invariant (booleanp strextsp).
  • timelitsp — Enable SystemVerilog 2012 time literals?.
        Invariant (booleanp timelitsp).
  • extintsp — Enable SystemVerilog 2012 '0/'1/'x/'z integers?.
        Invariant (booleanp extintsp).

Source link: vl-lexstate-p

Subtopics

Vl-lexstate
Raw constructor for vl-lexstate-p structures.
Make-vl-lexstate
Constructor macro for vl-lexstate-p structures.
Change-vl-lexstate
A copying macro that lets you create new vl-lexstate-p structures, based on existing structures.
Honsed-vl-lexstate
Raw constructor for honsed vl-lexstate-p structures.
Make-honsed-vl-lexstate
Constructor macro for honsed vl-lexstate-p structures.
Vl-lexstate->xorops
Access the xorops field of a vl-lexstate-p structure.
Vl-lexstate->timelitsp
Access the timelitsp field of a vl-lexstate-p structure.
Vl-lexstate->strextsp
Access the strextsp field of a vl-lexstate-p structure.
Vl-lexstate->starops
Access the starops field of a vl-lexstate-p structure.
Vl-lexstate->remops
Access the remops field of a vl-lexstate-p structure.
Vl-lexstate->quotesp
Access the quotesp field of a vl-lexstate-p structure.
Vl-lexstate->poundops
Access the poundops field of a vl-lexstate-p structure.
Vl-lexstate->plusops
Access the plusops field of a vl-lexstate-p structure.
Vl-lexstate->lessops
Access the lessops field of a vl-lexstate-p structure.
Vl-lexstate->kwdtable
Access the kwdtable field of a vl-lexstate-p structure.
Vl-lexstate->gtops
Access the gtops field of a vl-lexstate-p structure.
Vl-lexstate->extintsp
Access the extintsp field of a vl-lexstate-p structure.
Vl-lexstate->eqops
Access the eqops field of a vl-lexstate-p structure.
Vl-lexstate->dotops
Access the dotops field of a vl-lexstate-p structure.
Vl-lexstate->dollarops
Access the dollarops field of a vl-lexstate-p structure.
Vl-lexstate->divops
Access the divops field of a vl-lexstate-p structure.
Vl-lexstate->dashops
Access the dashops field of a vl-lexstate-p structure.
Vl-lexstate->colonops
Access the colonops field of a vl-lexstate-p structure.
Vl-lexstate->barops
Access the barops field of a vl-lexstate-p structure.
Vl-lexstate->bangops
Access the bangops field of a vl-lexstate-p structure.
Vl-lexstate->andops
Access the andops field of a vl-lexstate-p structure.