• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • 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
          • Fmt
          • Msg
          • Cw
          • Set-evisc-tuple
          • Set-iprint
          • Print-control
          • Read-file-into-string
          • Std/io
            • Open-channel-lemmas
            • Std/io/read-char$
            • Std/io/read-object
            • Std/io/open-output-channel
            • Unsound-read
            • Read-string
            • Read-bytes$
            • File-measure
            • Read-bytes$-n
              • Read-64ule-n
              • Read-64ube-n
              • Read-64sle-n
              • Read-64sbe-n
                • Read-32ule-n
                • Read-32ube-n
                • Read-32sle-n
                • Read-32sbe-n
                • Read-16ule-n
                • Read-16ube-n
                • Read-16sle-n
                • Read-16sbe-n
                • Read-byte$-n
                • Read-8s-n
              • Std/io/read-byte$
              • Std/io/open-input-channel
              • Read-file-lines-no-newlines
              • Print-compressed
              • Nthcdr-bytes
              • Read-file-lines
              • Std/io/close-output-channel
              • Read-file-characters
              • Read-file-bytes
              • Print-legibly
              • Std/io/close-input-channel
              • Read-file-objects
              • Logical-story-of-io
              • Take-bytes
              • Std/io/peek-char$
              • Read-file-characters-rev
              • Read-file-as-string
              • Std/io/write-byte$
              • Std/io/set-serialize-character
              • Std/io/print-object$
              • Std/io/princ$
              • Std/io/read-file-into-string
              • *file-types*
            • Msgp
            • Printing-to-strings
            • Evisc-tuple
            • Output-controls
            • Observation
            • *standard-co*
            • Standard-co
            • Ppr-special-syms
            • Standard-oi
            • Without-evisc
            • Serialize
            • Fmt-to-comment-window
            • Output-to-file
            • Princ$
            • Character-encoding
            • Open-output-channel!
            • Cw-print-base-radix
            • Set-print-case
            • Set-print-base
            • Print-object$
            • Extend-pathname
            • Print-object$+
            • Fmx-cw
            • Set-print-radix
            • Set-fmt-hard-right-margin
            • File-write-date$
            • Proofs-co
            • Set-print-base-radix
            • Print-base-p
            • *standard-oi*
            • Wof
            • File-length$
            • Fms!-lst
            • Delete-file$
            • *standard-ci*
            • Write-list
            • Trace-co
            • Fmt!
            • Fms
            • Cw!
            • Fmt-to-comment-window!
            • Fms!
            • Eviscerate-hide-terms
            • Fmt1!
            • Fmt-to-comment-window!+
            • Read-file-into-byte-array-stobj
            • Fmt1
            • Fmt-to-comment-window+
            • Cw-print-base-radix!
            • Read-file-into-character-array-stobj
            • Fmx
            • Cw!+
            • Read-objects-from-book
            • Newline
            • Cw+
            • Probe-file
            • Write-objects-to-file!
            • Write-objects-to-file
            • Read-objects-from-file
            • Read-object-from-file
            • Read-file-into-byte-list
            • Set-fmt-soft-right-margin
            • Read-file-into-character-list
            • Io-utilities
          • Defpkg
          • Apply$
          • Loop$
          • Programming-with-state
          • Arrays
          • Characters
          • Time$
          • Defconst
          • Fast-alists
          • Defmacro
          • Loop$-primer
          • 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
          • 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
        • Miscellaneous
        • Output-controls
        • Bdd
        • Macros
        • Installation
        • Mailing-lists
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Read-bytes$-n

    Read-64sbe-n

    (read-64sbe-n n channel state) reads n 64-bit, signed, big-endian values from the input channel and returns them as a list.

    Definitions and Theorems

    Function: tr-read-64sbe-n

    (defun tr-read-64sbe-n (n channel state acc)
      (declare (xargs :guard (and (natp n)
                                  (state-p state)
                                  (symbolp channel)
                                  (open-input-channel-p channel
                                                        :byte state)
                                  (true-listp acc))))
      (if (mbe :logic (zp n) :exec (= 0 n))
          (mv (reverse acc) state)
        (mv-let (byte state)
                (read-64sbe channel state)
          (cond ((eq byte nil) (mv 'fail state))
                ((eq byte 'fail) (mv 'fail state))
                (t (tr-read-64sbe-n (1- n)
                                    channel state (cons byte acc)))))))

    Function: read-64sbe-n

    (defun read-64sbe-n (n channel state)
      (declare (xargs :guard (and (natp n)
                                  (state-p state)
                                  (symbolp channel)
                                  (open-input-channel-p channel
                                                        :byte state))))
      (mbe :logic
           (if (zp n)
               (mv nil state)
             (mv-let (byte state)
                     (read-64sbe channel state)
               (cond ((eq byte nil) (mv 'fail state))
                     ((eq byte 'fail) (mv 'fail state))
                     (t (mv-let (rest state)
                                (read-64sbe-n (1- n) channel state)
                          (mv (if (eq rest 'fail)
                                  'fail
                                (cons byte rest))
                              state))))))
           :exec (tr-read-64sbe-n n channel state nil)))

    Theorem: read-64sbe-n-state

    (defthm read-64sbe-n-state
      (implies (and (force (state-p1 state))
                    (force (symbolp channel))
                    (force (open-input-channel-p1 channel
                                                  :byte state)))
               (state-p1 (mv-nth 1 (read-64sbe-n n channel state)))))

    Theorem: read-64sbe-n-open-input-channel

    (defthm read-64sbe-n-open-input-channel
      (implies (and (force (state-p1 state))
                    (force (symbolp channel))
                    (force (open-input-channel-p1 channel
                                                  :byte state)))
               (open-input-channel-p1
                    channel
                    :byte (mv-nth 1 (read-64sbe-n n channel state)))))

    Theorem: read-64sbe-n-data

    (defthm read-64sbe-n-data
      (implies
           (not (equal (mv-nth 0 (read-64sbe-n n channel state))
                       'fail))
           (and (true-listp (mv-nth 0 (read-64sbe-n n channel state)))
                (equal (len (mv-nth 0 (read-64sbe-n n channel state)))
                       (nfix n)))))