• 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
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
        • Java
        • Riscv
        • Bitcoin
        • Zcash
        • Yul
        • ACL2-programming-language
        • Prime-fields
        • Json
        • Syntheto
          • Process-syntheto-toplevel-fn
          • Translation
          • Language
            • Static-semantics
            • Abstract-syntax
            • Outcome
            • Abstract-syntax-operations
              • Subst-expression-fns
              • Field-list-to-typed-variable-list
              • Negate-expression
              • Get-function-definition-in-function-definitions
                • Get-function-definition
                • Get-type-definition-in-type-definitions
                • Get-type-definition
                • Get-function-specification
                • Get-type-subset
                • Get-alternative-product
                • Direct-supertype
                • Get-function-header-in-list
                • Equate-expression-lists
                • Get-field-type
                • Get-theorem
                • Get-defined-type-names-in-type-definitions
                • Disjoin-expressions
                • Conjoin-expressions
                • Get-type-product
                • Binary-op-nonstrictp
                • Get-type-sum
                • Get-defined-type-names
                • Equate-expressions
                • Field-to-typed-variable
                • Subst-expression
                • Binary-op-strictp
                • Initializer-list-from-flds-vals
                • Typed-variable-list->-expression-variable-list
                • Typed-variable-list->-expression
                • Variable-substitution
                • Local-variables
                • Identifier-list-names
                • Functions-called
                • Subst-expression-list
                • Subst-branch-list
                • Subst-branch
              • Outcome-list
              • Outcomes
            • Process-syntheto-toplevel
            • Shallow-embedding
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Abstract-syntax-operations

    Get-function-definition-in-function-definitions

    Find the definition of a function with a given name in a list of function definitions.

    Signature
    (get-function-definition-in-function-definitions name fundefs) 
      → 
    fundef?
    Arguments
    name — Guard (identifierp name).
    fundefs — Guard (function-definition-listp fundefs).
    Returns
    fundef? — Type (maybe-function-definitionp fundef?).

    This is used when looking up a function definition in a function recursion.

    We return nil if the function definition is not found.

    We look up the definitions in order. In well-formed lists of function definitions, the function names are unique, so any order would yield the same result.

    Definitions and Theorems

    Function: get-function-definition-in-function-definitions

    (defun get-function-definition-in-function-definitions
           (name fundefs)
      (declare (xargs :guard (and (identifierp name)
                                  (function-definition-listp fundefs))))
      (let
       ((__function__ 'get-function-definition-in-function-definitions))
       (declare (ignorable __function__))
       (b*
        (((when (endp fundefs)) nil)
         ((when (identifier-equiv
                     name
                     (function-header->name
                          (function-definition->header (car fundefs)))))
          (function-definition-fix (car fundefs))))
        (get-function-definition-in-function-definitions
             name (cdr fundefs)))))

    Theorem: maybe-function-definitionp-of-get-function-definition-in-function-definitions

    (defthm
     maybe-function-definitionp-of-get-function-definition-in-function-definitions
     (b*
      ((fundef?
        (get-function-definition-in-function-definitions name fundefs)))
      (maybe-function-definitionp fundef?))
     :rule-classes :rewrite)

    Theorem: get-function-definition-in-function-definitions-of-identifier-fix-name

    (defthm
     get-function-definition-in-function-definitions-of-identifier-fix-name
     (equal
        (get-function-definition-in-function-definitions
             (identifier-fix name)
             fundefs)
        (get-function-definition-in-function-definitions name fundefs)))

    Theorem: get-function-definition-in-function-definitions-identifier-equiv-congruence-on-name

    (defthm
     get-function-definition-in-function-definitions-identifier-equiv-congruence-on-name
     (implies
      (identifier-equiv name name-equiv)
      (equal
          (get-function-definition-in-function-definitions name fundefs)
          (get-function-definition-in-function-definitions
               name-equiv fundefs)))
     :rule-classes :congruence)

    Theorem: get-function-definition-in-function-definitions-of-function-definition-list-fix-fundefs

    (defthm
     get-function-definition-in-function-definitions-of-function-definition-list-fix-fundefs
     (equal
        (get-function-definition-in-function-definitions
             name
             (function-definition-list-fix fundefs))
        (get-function-definition-in-function-definitions name fundefs)))

    Theorem: get-function-definition-in-function-definitions-function-definition-list-equiv-congruence-on-fundefs

    (defthm
     get-function-definition-in-function-definitions-function-definition-list-equiv-congruence-on-fundefs
     (implies
      (function-definition-list-equiv fundefs fundefs-equiv)
      (equal
          (get-function-definition-in-function-definitions name fundefs)
          (get-function-definition-in-function-definitions
               name fundefs-equiv)))
     :rule-classes :congruence)