• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
      • Theories
      • Rule-classes
      • Proof-builder
      • Recursion-and-induction
      • Hons-and-memoization
      • Events
      • Parallelism
      • History
      • Programming
      • Operational-semantics
      • Real
      • Start-here
      • Debugging
      • Miscellaneous
      • Output-controls
      • Macros
        • Make-event
        • Defmacro
        • Untranslate-patterns
        • Tc
        • Trans*
        • Macro-aliases-table
        • Macro-args
        • Defabbrev
        • User-defined-functions-table
        • Trans
        • Untranslate-for-execution
        • Add-macro-fn
        • Check-vars-not-free
        • Safe-mode
        • Macro-libraries
          • B*
          • Defunc
          • Fty
          • Apt
            • Simplify-defun
            • Isodata
            • Tailrec
              • Tailrec-implementation
                • Tailrec-event-generation
                • Tailrec-fn
                • Tailrec-macro-definition
                  • Tailrec-input-processing
              • Schemalg
              • Restrict
              • Expdata
              • Casesplit
              • Simplify-term
              • Simplify-defun-sk
              • Parteval
              • Solve
              • Wrap-output
              • Propagate-iso
              • Simplify
              • Finite-difference
              • Drop-irrelevant-params
              • Copy-function
              • Lift-iso
              • Rename-params
              • Utilities
              • Simplify-term-programmatic
              • Simplify-defun-sk-programmatic
              • Simplify-defun-programmatic
              • Simplify-defun+
              • Common-options
              • Common-concepts
            • Std/util
            • Defdata
            • Defrstobj
            • Seq
            • Match-tree
            • Defrstobj
            • With-supporters
            • Def-partial-measure
            • Template-subst
            • Soft
            • Defthm-domain
            • Event-macros
            • Def-universal-equiv
            • Def-saved-obligs
            • With-supporters-after
            • Definec
            • Sig
            • Outer-local
            • Data-structures
          • Trans1
          • Defmacro-untouchable
          • Set-duplicate-keys-action
          • Add-macro-alias
          • Magic-macroexpand
          • Defmacroq
          • Trans!
          • Remove-macro-fn
          • Remove-macro-alias
          • Add-binop
          • Untrans-table
          • Trans*-
          • Remove-binop
          • Tcp
          • Tca
        • Mailing-lists
        • Interfacing-tools
      • Macro-libraries
        • B*
        • Defunc
        • Fty
        • Apt
          • Simplify-defun
          • Isodata
          • Tailrec
            • Tailrec-implementation
              • Tailrec-event-generation
              • Tailrec-fn
              • Tailrec-macro-definition
                • Tailrec-input-processing
            • Schemalg
            • Restrict
            • Expdata
            • Casesplit
            • Simplify-term
            • Simplify-defun-sk
            • Parteval
            • Solve
            • Wrap-output
            • Propagate-iso
            • Simplify
            • Finite-difference
            • Drop-irrelevant-params
            • Copy-function
            • Lift-iso
            • Rename-params
            • Utilities
            • Simplify-term-programmatic
            • Simplify-defun-sk-programmatic
            • Simplify-defun-programmatic
            • Simplify-defun+
            • Common-options
            • Common-concepts
          • Std/util
          • Defdata
          • Defrstobj
          • Seq
          • Match-tree
          • Defrstobj
          • With-supporters
          • Def-partial-measure
          • Template-subst
          • Soft
          • Defthm-domain
          • Event-macros
          • Def-universal-equiv
          • Def-saved-obligs
          • With-supporters-after
          • Definec
          • Sig
          • Outer-local
          • Data-structures
        • Interfacing-tools
        • Hardware-verification
        • Software-verification
        • Math
        • Testing-utilities
      • Tailrec-implementation

      Tailrec-macro-definition

      Definition of the tailrec macro.

      Submit the event form generated by tailrec-fn.

      Macro: tailrec

      (defmacro tailrec
            (&whole call old &key (variant ':monoid)
                    (domain ':auto)
                    (new-name ':auto)
                    (new-enable ':auto)
                    (accumulator ':auto)
                    (wrapper 'nil)
                    (wrapper-name ':auto
                                  wrapper-name-present)
                    (wrapper-enable ':irrelevant
                                    wrapper-enable-present)
                    (old-to-new-name ':irrelevant
                                     old-to-new-name-present)
                    (old-to-new-enable ':irrelevant
                                       old-to-new-enable-present)
                    (new-to-old-name ':irrelevant
                                     new-to-old-name-present)
                    (new-to-old-enable ':irrelevant
                                       new-to-old-enable-present)
                    (old-to-wrapper-name ':irrelevant
                                         old-to-wrapper-name-present)
                    (old-to-wrapper-enable ':irrelevant
                                           old-to-wrapper-enable-present)
                    (wrapper-to-old-name ':irrelevant
                                         wrapper-to-old-name-present)
                    (wrapper-to-old-enable ':irrelevant
                                           wrapper-to-old-enable-present)
                    (verify-guards ':auto)
                    (hints 'nil)
                    (print ':result)
                    (show-only 'nil))
       (cons
        'make-event-terse
        (cons
         (cons
          'tailrec-fn
          (cons
           (cons 'quote (cons old 'nil))
           (cons
            (cons 'quote (cons variant 'nil))
            (cons
             (cons 'quote (cons domain 'nil))
             (cons
              (cons 'quote (cons new-name 'nil))
              (cons
               (cons 'quote (cons new-enable 'nil))
               (cons
                (cons 'quote (cons accumulator 'nil))
                (cons
                 (cons 'quote (cons wrapper 'nil))
                 (cons
                  (cons 'quote (cons wrapper-name 'nil))
                  (cons
                   (cons 'quote
                         (cons wrapper-name-present 'nil))
                   (cons
                    (cons 'quote (cons wrapper-enable 'nil))
                    (cons
                     (cons 'quote
                           (cons wrapper-enable-present 'nil))
                     (cons
                      (cons 'quote
                            (cons old-to-new-name 'nil))
                      (cons
                       (cons 'quote
                             (cons old-to-new-name-present 'nil))
                       (cons
                        (cons 'quote
                              (cons old-to-new-enable 'nil))
                        (cons
                         (cons 'quote
                               (cons old-to-new-enable-present 'nil))
                         (cons
                          (cons 'quote
                                (cons new-to-old-name 'nil))
                          (cons
                           (cons 'quote
                                 (cons new-to-old-name-present 'nil))
                           (cons
                            (cons 'quote
                                  (cons new-to-old-enable 'nil))
                            (cons
                             (cons 'quote
                                   (cons new-to-old-enable-present 'nil))
                             (cons
                              (cons 'quote
                                    (cons old-to-wrapper-name 'nil))
                              (cons
                               (cons
                                  'quote
                                  (cons old-to-wrapper-name-present 'nil))
                               (cons
                                (cons 'quote
                                      (cons old-to-wrapper-enable 'nil))
                                (cons
                                 (cons
                                  'quote
                                  (cons
                                      old-to-wrapper-enable-present 'nil))
                                 (cons
                                  (cons 'quote
                                        (cons wrapper-to-old-name 'nil))
                                  (cons
                                   (cons
                                    'quote
                                    (cons
                                        wrapper-to-old-name-present 'nil))
                                   (cons
                                    (cons
                                        'quote
                                        (cons wrapper-to-old-enable 'nil))
                                    (cons
                                     (cons
                                       'quote
                                       (cons wrapper-to-old-enable-present
                                             'nil))
                                     (cons
                                      (cons 'quote
                                            (cons verify-guards 'nil))
                                      (cons
                                       (cons 'quote (cons hints 'nil))
                                       (cons
                                        (cons 'quote (cons print 'nil))
                                        (cons
                                         (cons 'quote
                                               (cons show-only 'nil))
                                         (cons
                                          (cons 'quote (cons call 'nil))
                                          (cons
                                           (cons
                                            'cons
                                            (cons
                                              ''tailrec
                                              (cons (cons 'quote
                                                          (cons old 'nil))
                                                    'nil)))
                                           '(state)))))))))))))))))))))))))))))))))))
         (cons ':suppress-errors
               (cons (not print) 'nil)))))