• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
      • Io
      • Defttag
      • Sys-call
      • Save-exec
      • Quicklisp
      • Std/io
        • Open-channel-lemmas
        • Std/io/read-char$
        • Std/io/read-object
        • Std/io/open-output-channel
        • Unsound-read
        • Read-string
        • Read-bytes$
          • Read-64ule
          • Read-64ube
            • Read-64sle
            • Read-64sbe
            • Read-32ule
            • Read-32sle
            • Read-32sbe
            • Read-32ube
            • Read-16sle
            • Read-16sbe
            • Read-16ule
            • Read-16ube
            • Read-8s
            • Combine-functions
          • File-measure
          • Read-bytes$-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*
        • Oslib
        • Bridge
        • Clex
        • Tshell
        • Unsound-eval
        • Hacker
        • ACL2s-interface
        • Startup-banner
        • Command-line
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Read-bytes$

    Read-64ube

    (read-64ube channel state) reads a 64-bit, unsigned, big-endian value from the input channel.

    Definitions and Theorems

    Function: read-64ube

    (defun read-64ube (channel state)
      (declare (xargs :guard (and (state-p state)
                                  (symbolp channel)
                                  (open-input-channel-p channel
                                                        :byte state))))
      (b* (((mv x1 state)
            (read-byte$ channel state))
           ((mv x2 state)
            (read-byte$ channel state))
           ((mv x3 state)
            (read-byte$ channel state))
           ((mv x4 state)
            (read-byte$ channel state))
           ((mv x5 state)
            (read-byte$ channel state))
           ((mv x6 state)
            (read-byte$ channel state))
           ((mv x7 state)
            (read-byte$ channel state))
           ((mv x8 state)
            (read-byte$ channel state))
           ((unless x1) (mv nil state))
           ((unless x8) (mv 'fail state)))
        (mv (combine64u x1 x2 x3 x4 x5 x6 x7 x8)
            state)))

    Theorem: read-64ube-unsigned-byte

    (defthm read-64ube-unsigned-byte
      (implies (and (force (state-p1 state))
                    (force (open-input-channel-p1 channel
                                                  :byte state))
                    (force (symbolp channel))
                    (mv-nth 0 (read-64ube channel state))
                    (not (equal (mv-nth 0 (read-64ube channel state))
                                'fail)))
               (unsigned-byte-p 64
                                (mv-nth 0 (read-64ube channel state)))))

    Theorem: read-64ube-integer

    (defthm read-64ube-integer
      (implies (and (mv-nth 0 (read-64ube channel state))
                    (not (equal (mv-nth 0 (read-64ube channel state))
                                'fail)))
               (integerp (mv-nth 0 (read-64ube channel state)))))

    Theorem: read-64ube-range

    (defthm read-64ube-range
      (implies (and (force (state-p1 state))
                    (force (open-input-channel-p1 channel
                                                  :byte state))
                    (force (symbolp channel))
                    (mv-nth 0 (read-64ube channel state))
                    (not (equal (mv-nth 0 (read-64ube channel state))
                                'fail)))
               (and (<= 0 (mv-nth 0 (read-64ube channel state)))
                    (< (mv-nth 0 (read-64ube channel state))
                       18446744073709551616)
                    (< (mv-nth 0 (read-64ube channel state))
                       (expt 2 64))))
      :rule-classes :linear)

    Theorem: read-64ube-state

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

    Theorem: read-64ube-open-input-channel-p1

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