• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
          • Syntax-for-tools
          • Atc
            • Atc-implementation
              • Atc-abstract-syntax
              • Atc-pretty-printer
              • Atc-event-and-code-generation
              • Fty-pseudo-term-utilities
              • Atc-term-recognizers
              • Atc-input-processing
              • Atc-shallow-embedding
              • Atc-process-inputs-and-gen-everything
              • Atc-table
                • Atc-call-infop
                  • Atc-call-info
                  • Make-atc-call-info
                    • Change-atc-call-info
                    • Make-honsed-atc-call-info
                    • Honsed-atc-call-info
                    • Atc-call-info->encapsulate
                  • Atc-table-record-event
                  • Atc-table-lookup
                  • Atc-maybe-call-infop
                  • Atc-table-definition
                  • *atc-table*
                • Atc-fn
                • Atc-pretty-printing-options
                • Atc-types
                • Atc-macro-definition
              • Atc-tutorial
            • Language
            • Representation
            • Transformation-tools
            • Insertion-sort
            • Pack
          • Bv
          • Imp-language
          • Event-macros
          • Java
          • Bitcoin
          • Ethereum
          • Yul
          • Zcash
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Atc-call-infop

    Make-atc-call-info

    Constructor macro for atc-call-infop structures.

    Syntax:

    (make-atc-call-info [:encapsulate <encapsulate>]) 
    

    This is our preferred way to construct atc-call-infop structures. It simply conses together a structure with the specified fields.

    This macro generates a new atc-call-infop structure from scratch. See also change-atc-call-info, which can "change" an existing structure, instead.

    The atc-call-infop structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-atc-call-info instead.

    Definition

    This is an ordinary make- macro introduced by std::defaggregate.

    Macro: make-atc-call-info

    (defmacro make-atc-call-info (&rest args)
      (std::make-aggregate 'atc-call-info
                           args '((:encapsulate))
                           'make-atc-call-info
                           nil))