• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
      • X86isa
      • Axe
      • Execloader
        • Elf-reader
        • Mach-o-reader
        • Merge-first-split-bytes
        • Split-bytes
        • Take-till-zero
        • Charlist->bytes
        • Merge-bytes
        • Bytes->charlist
        • String->bytes
        • Bytes->string
    • Math
    • Testing-utilities
  • Software-verification
  • Projects

Execloader

Read in some sections of ELF and Mach-O format files into stobjs

Subtopics

Elf-reader
Read in parts of ELF format files into fields of the elf stobj
Mach-o-reader
Read in parts of MACH-O format files into fields of the mach-o stobj
Merge-first-split-bytes
Merge first n bytes (least-significant byte first) from bytes; return remaining bytes
Split-bytes
Split bytes into two lists, where first part has n elements
Take-till-zero
Return all initial elements of bytes until a 0 element is encountered or the end of bytes is reached, whichever happens first.
Charlist->bytes
Convert a list of characters to a list of bytes.
Merge-bytes
Concatenates bytes (least-significant byte appears first) to form a single natural number
Bytes->charlist
Convert a list of bytes to a list of characters.
String->bytes
Convert a string to a list of bytes.
Bytes->string
Convert a list of bytes to a string.