• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
        • Symbolic-test-vectors
        • Esim-primitives
        • E-conversion
        • Esim-steps
        • Patterns
        • Mod-internal-paths
        • Defmodules
          • Vl-translation-p
            • Vl-translation
            • Make-vl-translation
            • Change-vl-translation
            • Vl-translation-has-module
            • Honsed-vl-translation
              • Make-honsed-vl-translation
              • Vl-translation-get-esim
              • Vl-translation->orig
              • Vl-translation->good
              • Vl-translation->filemap
              • Vl-translation->defines
              • Vl-translation->bad
            • Vl-simplify
            • Defmodules-fn
          • Esim-simplify-update-fns
          • Esim-tutorial
          • Esim-vl
        • Vl2014
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-translation-p

    Honsed-vl-translation

    Raw constructor for honsed vl-translation-p structures.

    Syntax:

    (honsed-vl-translation good bad orig filemap defines)

    This is identical to vl-translation, except that we hons the structure we are creating.

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-translation

    (defun honsed-vl-translation (good bad orig filemap defines)
     (declare (xargs :guard (and (vl-design-p good)
                                 (vl-design-p bad)
                                 (vl-design-p orig)
                                 (vl-filemap-p filemap)
                                 (vl-defines-p defines))))
     (mbe
       :logic (vl-translation good bad orig filemap defines)
       :exec (hons :vl-translation
                   (hons (hons 'good good)
                         (hons (hons 'bad bad)
                               (hons (hons 'orig orig)
                                     (hons (hons 'filemap filemap)
                                           (hons (hons 'defines defines)
                                                 nil))))))))