• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
      • Std/lists
      • Std/alists
      • Obags
      • Std/util
      • Std/strings
      • Std/io
      • Std/osets
      • Std/system
        • Fresh-logical-name-with-$s-suffix
        • Irrelevant-formals-info
        • Std/system/function-queries
        • Std/system/term-queries
          • Check-mv-let-call
          • Term-possible-numbers-of-results
          • Check-user-term
          • Check-nary-lambda-call
          • Check-lambda-call
          • All-vars-open
          • Dumb-occur-var-open
          • Check-user-lambda
          • Check-if-call
          • Check-unary-lambda-call
          • One-way-unify$
          • Guard-verified-fnsp
          • All-non-gv-ffn-symbs
          • All-non-gv-exec-ffn-symbs
            • Check-fn-call
            • Guard-verified-exec-fnsp
            • Check-list-call
            • Check-or-call
            • Check-and-call
            • All-program-ffn-symbs
            • Lambda-guard-verified-fnsp
            • All-free/bound-vars
            • Check-mbt$-call
            • Check-mbt-call
            • If-tree-leaf-terms
            • Check-not-call
            • Term-guard-obligation
            • All-pkg-names
            • All-vars-in-untranslated-term
            • Std/system/all-fnnames
            • Lambda-logic-fnsp
            • Lambda-guard-verified-exec-fnsp
            • All-lambdas
            • Lambda-closedp
            • Std/system/all-vars
          • Std/system/term-transformations
          • Std/system/enhanced-utilities
          • Install-not-normalized-event-lst
          • Install-not-normalized-event
          • Std/system/term-function-recognizers
          • Pseudo-tests-and-call-listp
          • Genvar$
          • Std/system/event-name-queries
          • Maybe-pseudo-event-formp
          • Add-suffix-to-fn-or-const
          • Chk-irrelevant-formals-ok
          • Std/system/good-atom-listp
          • Pseudo-tests-and-callp
          • Table-alist+
          • Add-suffix-to-fn-or-const-lst
          • Known-packages+
          • Add-suffix-to-fn-lst
          • Unquote-term
          • Event-landmark-names
          • Add-suffix-lst
          • Std/system/theorem-queries
          • Unquote-term-list
          • Std/system/macro-queries
          • Pseudo-event-landmark-listp
          • Pseudo-command-landmark-listp
          • Install-not-normalized$
          • Rune-disabledp
          • Known-packages
          • Std/system/partition-rest-and-keyword-args
          • Rune-enabledp
          • Included-books
          • Std/system/pseudo-event-formp
          • Std/system/plist-worldp-with-formals
          • Std/system/w
          • Std/system/geprops
          • Std/system/arglistp
          • Std/system-extensions
          • Std/system/constant-queries
        • Std/basic
        • Std/typed-lists
        • Std/bitsets
        • Std/testing
        • Std/typed-alists
        • Std/stobjs
        • Std-extensions
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Testing-utilities
      • Math
    • Std/system/term-queries

    All-non-gv-exec-ffn-symbs

    Non-guard-verified functions called by a term for execution.

    Signature
    (all-non-gv-exec-ffn-symbs term wrld) → final-ans
    Arguments
    term — Guard (pseudo-termp term).
    wrld — Guard (plist-worldp wrld).
    Returns
    final-ans — A symbol-listp.

    These are all the non-guard-verified functions that occur in the term, except those that occur in the :logic subterms of mbes and those called via ec-call. This is because, in order for a function to be guard-verified, the functions that occurs in such subterms do not have to be guard-verified. If this function returns nil, the term could be potentially guard-verified.

    The name of this function is consistent with the name of all-ffn-symbs in the ACL2 source code.

    The all-fnnames-exec built-in system utility returns all the function symbols except the ones in the :logic subterms of mbes and the ones called via ec-call (see the ACL2 source code). The collect-non-common-lisp-compliants built-in system utility returns all the ones that are not guard-verified (see the ACL2 source code).

    Definitions and Theorems

    Function: all-non-gv-exec-ffn-symbs

    (defun
        all-non-gv-exec-ffn-symbs (term wrld)
        (declare (xargs :guard (and (pseudo-termp term)
                                    (plist-worldp wrld))))
        (let ((__function__ 'all-non-gv-exec-ffn-symbs))
             (declare (ignorable __function__))
             (collect-non-common-lisp-compliants (all-fnnames-exec term)
                                                 wrld)))