• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
      • X86isa
        • Program-execution
        • Sdm-instruction-set-summary
        • Tlb
          • Tlb-key
          • Tlbp
          • Tlb-entryp
          • Running-linux
          • Introduction
          • Asmtest
          • X86isa-build-instructions
          • Publications
          • Contributors
          • Machine
          • Implemented-opcodes
          • To-do
          • Proof-utilities
          • Peripherals
          • Model-validation
          • Modelcalls
          • Concrete-simulation-examples
          • Utils
          • Debugging-code-proofs
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Tlb

    Tlb-entryp

    Recognizer for TLB entries.

    Signature
    (tlb-entryp x) → *

    tlb-entryp recognizes TLB entries, i.e. elements of the the tlb field on the x86 stobj. Each entry is a cons, where the car is a good-tlb-key-p and the cdr is a physical page number.

    Definitions and Theorems

    Function: tlb-entryp

    (defun tlb-entryp (x)
      (declare (xargs :guard t))
      (let ((__function__ 'tlb-entryp))
        (declare (ignorable __function__))
        (b* (((unless (consp x)) nil)
             ((cons key val) x))
          (and (good-tlb-key-p key)
               (unsigned-byte-p (- 52 12) val)))))