• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
        • Fgl-rewrite-rules
        • Fgl-function-mode
        • Fgl-object
          • Fgl-object-eval
          • Fgl-object-p
          • G-map
          • G-ite
          • G-cons
            • Make-g-cons
              • G-cons->cdr
              • G-cons->car
              • Change-g-cons
            • G-concrete
            • G-apply
            • G-integer
            • Fgl-object-equiv
            • G-boolean
            • G-var
            • Fgl-bitvector
            • Fgl-object-kind
            • Summarize-fgl-object
            • Fgl-make-isomorphic
            • Fgl-object-alist
            • Fgl-objectlist
            • Fgl-object-fix
            • Fgl-object-count
          • Fgl-solving
          • Fgl-handling-if-then-elses
          • Fgl-getting-bits-from-objects
          • Fgl-primitive-and-meta-rules
          • Fgl-counterexamples
          • Fgl-interpreter-overview
          • Fgl-correctness-of-binding-free-variables
          • Fgl-debugging
          • Fgl-testbenches
          • Def-fgl-boolean-constraint
          • Fgl-stack
          • Fgl-rewrite-tracing
          • Def-fgl-param-thm
          • Def-fgl-thm
          • Fgl-fast-alist-support
          • Fgl-array-support
          • Advanced-equivalence-checking-with-fgl
          • Fgl-fty-support
          • Fgl-internals
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • G-cons

    Make-g-cons

    Basic constructor macro for g-cons structures.

    Syntax
    (make-g-cons [:car <car>] 
                 [:cdr <cdr>]) 
    

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

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

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-g-cons

    (defmacro make-g-cons (&rest args)
      (std::make-aggregate 'g-cons
                           args '((:car) (:cdr))
                           'make-g-cons
                           nil))

    Function: g-cons

    (defun g-cons (car cdr)
      (declare (xargs :guard (and (fgl-object-p car)
                                  (fgl-object-p cdr))))
      (declare (xargs :guard t))
      (let ((__function__ 'g-cons))
        (declare (ignorable __function__))
        (b* ((car (mbe :logic (fgl-object-fix car)
                       :exec car))
             (cdr (mbe :logic (fgl-object-fix cdr)
                       :exec cdr)))
          (cons car cdr))))