• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vl
        • Syntax
        • Loader
          • Preprocessor
          • Vl-loadconfig
          • Vl-loadstate
          • Lexer
          • Parser
          • Vl-load-merge-descriptions
          • Vl-find-basename/extension
          • Vl-load-file
          • Vl-loadresult
          • Vl-find-file
          • Scope-of-defines
          • Vl-flush-out-descriptions
          • Vl-description
          • Vl-read-file
          • Vl-includeskips-report-gather
          • Vl-load-main
          • Extended-characters
          • Vl-load
          • Vl-load-description
          • Vl-preprocess-debug
          • Vl-descriptions-left-to-load
          • Inject-warnings
          • Vl-read-file-report-gather
          • Vl-write-preprocessor-debug-file
          • Vl-load-descriptions
          • Vl-load-files
          • Translate-off
          • Vl-load-read-file-hook
          • Vl-loadstate-pad
          • Vl-read-file-report
          • Vl-load-summary
          • Vl-collect-modules-from-descriptions
          • Vl-loadstate->warnings
          • Vl-iskips-report
            • Vl-descriptionlist
          • Warnings
          • Getting-started
          • Utilities
          • Printer
          • Kit
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Testing-utilities
      • Math
    • Loader

    Vl-iskips-report

    Signature
    (vl-iskips-report iskips) → *
    Arguments
    iskips — Guard (vl-includeskips-p iskips).

    Definitions and Theorems

    Function: vl-iskips-report

    (defun
     vl-iskips-report (iskips)
     (declare (xargs :guard (vl-includeskips-p iskips)))
     (let
      ((__function__ 'vl-iskips-report))
      (declare (ignorable __function__))
      (b*
       (((mv lines totalbytes
             totalsavings totalmisses totalhits)
         (vl-includeskips-report-gather
              (fast-alist-free (fast-alist-clean iskips))
              nil 0 0 0 0))
        (lines (rev (mergesort lines))))
       (cw "Included files report:~%")
       (cw "  - Bytes read due to includes: ~x0~%"
           totalbytes)
       (cw "  - Bytes saved due to multi-include optimization: ~x0~%"
           totalsavings)
       (cw
        "  - MI stats: ~x0 hits, ~x1 misses (including first-time reads).~%"
        totalhits totalmisses)
       (cw "Details:~%   ~x0~%~%" lines))))