• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
      • Theories
      • Rule-classes
      • Proof-builder
      • Recursion-and-induction
      • Hons-and-memoization
      • Events
      • Parallelism
      • History
      • Programming
        • Defun
        • Declare
        • System-utilities
        • Stobj
        • State
        • Mutual-recursion
        • Memoize
        • Mbe
        • Io
        • Defpkg
        • Apply$
        • Loop$
        • Programming-with-state
        • Arrays
        • Characters
        • Time$
        • Defmacro
        • Loop$-primer
        • Fast-alists
        • Defconst
        • Evaluation
        • Guard
        • Equality-variants
        • Compilation
        • Hons
        • ACL2-built-ins
        • Developers-guide
        • System-attachments
        • Advanced-features
        • Set-check-invariant-risk
        • Numbers
        • Efficiency
        • Irrelevant-formals
        • Introduction-to-programming-in-ACL2-for-those-who-know-lisp
        • Redefining-programs
        • Lists
        • Invariant-risk
        • Errors
        • Defabbrev
        • Conses
        • Alists
        • Set-register-invariant-risk
        • Strings
        • Program-wrapper
        • Get-internal-time
        • Basics
          • Let
          • Return-last
          • Mv-let
          • Flet
          • Or
          • Mv
          • And
          • Booleanp
          • If
          • Not
          • Equal
          • Implies
          • Iff
          • Macrolet
          • Quote
            • Opcode
            • Select-insts
            • Inst
              • Inst-fix
              • Make-inst
                • Inst-equiv
                • Inst-p
                • Change-inst
                • Inst->operands
                • Inst->opcode
                • Inst->mnemonic
                • Inst->excep
                • Inst->fn
              • Op/en-p
              • Operands
              • Inst-list-p
              • Operand-type-p
              • Strict-opcode-p
              • Opcode-extension-group-p
              • Superscripts-p
              • Maybe-operands-p
              • Exception-desc-p
              • Count-avx-pfx-cases
              • Mnemonic-p
              • Maybe-3bits-p
              • Op-pfx-p
              • Maybe-vex-p
              • Maybe-evex-p
              • Fn-desc-p
              • Chk-exc-fn
              • Remove-insts-with-feat
              • Op-mode-p
              • Keep-insts-with-feat
              • Rex-p
              • Mod-p
              • Avx-pfx-well-formed-p
              • Unquote
              • Any-present-in
              • Eval-pre-map
              • Superscripts-fix
              • Strict-opcode-fix
              • Operand-type-fix
              • Opcode-extension-group-fix
              • Maybe-operands-fix
              • Maybe-evex-fix
              • Maybe-3bits-fix
              • Keyword-list-fix
              • Exception-desc-fix
              • Rex-fix
              • Op-pfx-fix
              • Op-mode-fix
              • Mod-fix
              • Mnemonic-fix
              • Maybe-vex-fix
              • Fn-desc-fix
              • Vex-p
              • Evex-p
            • Let*
            • Case-match
            • ACL2-count
            • Case
            • Good-bye
            • Cond
            • Null
            • Progn$
            • Identity
            • Xor
          • Packages
          • Oracle-eval
          • Defmacro-untouchable
          • <<
          • Primitive
          • Revert-world
          • Unmemoize
          • Set-duplicate-keys-action
          • Symbols
          • Def-list-constructor
          • Easy-simplify-term
          • Defiteration
          • Fake-oracle-eval
          • Defopen
          • Sleep
        • Operational-semantics
        • Real
        • Start-here
        • Debugging
        • Miscellaneous
        • Output-controls
        • Macros
        • Interfacing-tools
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Inst

    Make-inst

    Basic constructor macro for inst structures.

    Syntax
    (make-inst [:mnemonic <mnemonic>] 
               [:opcode <opcode>] 
               [:operands <operands>] 
               [:fn <fn>] 
               [:excep <excep>]) 
    

    This is the usual way to construct inst structures. It simply conses together a structure with the specified fields.

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

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-inst

    (defmacro make-inst (&rest args)
      (std::make-aggregate 'inst
                           args
                           '((:mnemonic)
                             (:opcode)
                             (:operands quote nil)
                             (:fn quote nil)
                             (:excep quote nil))
                           'make-inst
                           nil))

    Function: inst

    (defun inst (mnemonic opcode operands fn excep)
      (declare (xargs :guard (and (mnemonic-p mnemonic)
                                  (strict-opcode-p opcode)
                                  (maybe-operands-p operands)
                                  (fn-desc-p fn)
                                  (exception-desc-p excep))))
      (declare (xargs :guard t))
      (let ((__function__ 'inst))
        (declare (ignorable __function__))
        (b* ((mnemonic (mbe :logic (mnemonic-fix mnemonic)
                            :exec mnemonic))
             (opcode (mbe :logic (strict-opcode-fix opcode)
                          :exec opcode))
             (operands (mbe :logic (maybe-operands-fix operands)
                            :exec operands))
             (fn (mbe :logic (fn-desc-fix fn) :exec fn))
             (excep (mbe :logic (exception-desc-fix excep)
                         :exec excep)))
          (std::prod-cons
               (std::prod-cons mnemonic opcode)
               (std::prod-cons operands (std::prod-cons fn excep))))))