LNSym is a symbolic simulator for Armv8 machine-code programs.
Please see the LICENSE file for LNSym's licensing and CONTRIBUTING.md for external contribution guidelines.
Install Lean4 and your preferred editor's plug-in on your machine by following these instructions.
Run make
at the top-level of LNSym to fetch the Lean4 dependencies,
build this library (including the proofs), and run conformance
testing. Note that if you are not on an Aarch64 machine, conformance
testing will be skipped.
The default make
command corresponds to the following invocation:
make all VERBOSE=--verbose NUM_TESTS=20
clean
: remove build outputs.
clean_all
: clean
plus remove Lean dependencies and
all benchmarking and profiling data.
specs
: [run under all
] builds only the specifications of
native-code programs of interest.
proofs
: [run under all
] builds only the proofs.
tests
: [run under all
] builds concrete tests.
cosim
: [run under all
] perform conformance testing.
awslc_elf
: perform ELF loading tests for AWS-LC.
benchmarks
: run benchmarks for the symbolic simulator.
profiler
: run a single round of each benchmark, with the profiler enabled
VERBOSE
: Verbose mode; prints disassembly of the instructions being
tested. Default: on.
NUM_TESTS
: Number of random tests/instruction class. Default: 20.
Arm
: Formalization of the Armv8 Aarch64 ISASpecs
: Specifications of algorithms of interestProofs
: Proofs of Arm native-code programsTests
: Concrete tests of Arm native-code programs