• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
          • Preprocessor
            • Vl-iframe-p
              • Vl-iframe
                • Make-vl-iframe
                • Change-vl-iframe
                • Honsed-vl-iframe
                • Make-honsed-vl-iframe
                • Vl-iframe->some-thing-satisfiedp
                • Vl-iframe->initially-activep
                • Vl-iframe->already-saw-elsep
              • Preprocessor-ifdef-minutia
              • Vl-preprocess-loop
              • Vl-read-until-end-of-define
              • Vl-expand-define
              • Vl-read-include
              • Vl-process-ifdef
              • Vl-substitute-into-macro-text
              • Vl-preprocess
              • Vl-define
              • Vl-process-define
              • Vl-process-undef
              • Preprocessor-include-minutia
              • Vl-split-define-text
              • Vl-read-timescale
              • Vl-line-up-define-formals-and-actuals
              • Vl-process-else
              • Vl-process-endif
              • Vl-istack-p
              • Vl-is-compiler-directive-p
              • Vl-check-remaining-formals-all-have-defaults
              • Vl-safe-previous-n
              • Vl-safe-next-n
              • Vl-defines
              • *vl-preprocess-clock*
            • Vl-loadconfig
            • Lexer
            • Vl-loadstate
            • Parser
            • Vl-load-merge-descriptions
            • Scope-of-defines
            • Vl-load-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-loadresult
            • Vl-read-file
            • Vl-find-basename/extension
            • Vl-find-file
            • Vl-read-files
            • Extended-characters
            • Vl-load
            • Vl-load-main
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-load-descriptions
            • Vl-load-files
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-descriptionlist
          • Transforms
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-iframe-p

    Vl-iframe

    Raw constructor for vl-iframe-p structures.

    Syntax:

    (vl-iframe initially-activep 
               some-thing-satisfiedp already-saw-elsep)

    This is the lowest-level constructor for vl-iframe-p structures. It simply conses together a structure with the specified fields.

    Note: It's generally better to use macros like make-vl-iframe or change-vl-iframe instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.

    The vl-iframe-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-iframe instead.

    Definition

    This is an ordinary constructor function introduced by defaggregate.

    Function: vl-iframe

    (defun vl-iframe
           (initially-activep some-thing-satisfiedp already-saw-elsep)
      (declare (xargs :guard (and (booleanp initially-activep)
                                  (booleanp some-thing-satisfiedp)
                                  (booleanp already-saw-elsep))))
      (cons :vl-iframe (cons (cons 'initially-activep
                                   initially-activep)
                             (cons (cons 'some-thing-satisfiedp
                                         some-thing-satisfiedp)
                                   (cons (cons 'already-saw-elsep
                                               already-saw-elsep)
                                         nil)))))