• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • C
          • Syntax-for-tools
          • Atc
          • Transformation-tools
          • Language
            • Abstract-syntax
            • Integer-ranges
            • Implementation-environments
              • Integer-format-templates
              • Ienv
              • Integer-formats
              • Ienv-ushort-rangep
              • Ienv-ulong-rangep
              • Ienv-ullong-rangep
              • Ienv-uint-rangep
              • Ienv-uchar-rangep
              • Ienv-sshort-rangep
              • Ienv-slong-rangep
              • Ienv-sllong-rangep
              • Ienv-sint-rangep
              • Ienv-schar-rangep
              • Ienv-char-rangep
              • Ienv->schar-min
              • Ienv->schar-max
              • Ienv->char-size
              • Ienv->char-min
              • Ienv->char-max
              • Ienv->uchar-max
              • Ienv->short-bit-size
              • Ienv->long-bit-size
              • Ienv->llong-bit-size
              • Ienv->int-bit-size
              • Ienv->short-byte-size
              • Ienv->long-byte-size
              • Ienv->llong-byte-size
              • Ienv->int-byte-size
              • Versions
                • Version
                  • Version-fix
                  • Version-case
                    • Versionp
                    • Version-equiv
                    • Version-c23+gcc
                    • Version-c23
                    • Version-c17+gcc
                    • Version-c17
                    • Version-kind
                  • Version-std-c23p
                  • Version-std-c17p
                  • Version-gccp
                • Ienv->ushort-max
                • Ienv->ullong-max
                • Ienv->sshort-min
                • Ienv->sllong-min
                • Ienv->sllong-max
                • Ienv->bool-byte-size
                • Ienv->bool-bit-size
                • Ienv->ulong-max
                • Ienv->uint-max
                • Ienv->sshort-max
                • Ienv->slong-min
                • Ienv->slong-max
                • Ienv->sint-min
                • Ienv->sint-max
                • Schar-formats
                • Char-formats
                • Uchar-formats
                • Signed-formats
                • Bool-formats
              • Dynamic-semantics
              • Static-semantics
              • Grammar
              • Types
              • Integer-formats-definitions
              • Computation-states
              • Portable-ascii-identifiers
              • Values
              • Integer-operations
              • Object-designators
              • Operations
              • Errors
              • Tag-environments
              • Function-environments
              • Character-sets
              • Flexible-array-member-removal
              • Arithmetic-operations
              • Pointer-operations
              • Real-operations
              • Array-operations
              • Scalar-operations
              • Structure-operations
            • Representation
            • Insertion-sort
            • Pack
          • Soft
          • Bv
          • Imp-language
          • Ethereum
          • Event-macros
          • Java
          • Riscv
          • Bitcoin
          • Zcash
          • Yul
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Version

    Version-case

    Case macro for the different kinds of version structures.

    This is an ACL2::fty sum-type case macro, typically introduced by fty::defflexsum or fty::deftagsum. It allows you to safely check the type of a version structure, or to split into cases based on its type.

    Short Form

    In its short form, version-case allows you to safely check the type of a version structure. For example:

    (version-case x :c17)

    is essentially just a safer alternative to writing:

    (equal (version-kind x) :c17)

    Why is using version-case safer? When we directly inspect the kind with equal, there is no static checking being done to ensure that, e.g., :c17 is a valid kind of version structure. That means there is nothing to save you if, later, you change the kind keyword for this type from :c17 to something else. It also means you get no help if you just make a typo when writing the :c17 symbol. Over the course of developing VL, we found that such issues were very frequent sources of errors!

    Long Form

    In its longer form, version-case allows you to split into cases based on the kind of structure you are looking at. A typical example would be:

    (version-case x
      :c17 ...
      :c23 ...
      :c17+gcc ...
      :c23+gcc ...)

    It is also possible to consolidate ``uninteresting'' cases using :otherwise.

    For convenience, the case macro automatically binds the fields of x for you, as appropriate for each case. That is, in the :c17 case, you can use fty::defprod-style foo.bar style accessors for x without having to explicitly add a c17 b* binder.