The project presents the most complete and thoroughly tested formal semantics of x86-64 to date. Our semantics faithfully formalizes all the non-deprecated, sequential user-level instructions of the x86-64 Haswell instruction set architecture. This totals 3155 instruction variants, corresponding to 774 mnemonics. The semantics is fully executable and has been tested against more than 7,000 instruction-level test cases and the GCC torture test suite.
- Download X86 semantics defined in K.
git clone https://github.com/kframework/X86-64-semantics.git
- Download & Install K tool README
NOTE Due to polymorphic sort support, the syntax of machine integers aka MInt has changed a bit and the current x86-64 semantics is not responsive to that. Hence compiling x86-64 semantics using the master k will issue compilation error. Before the x86-64 semantics is ported to the new MInt syntax, it is recommended to
- Either check out a revision
45a4243af6e4cd42a4212e5c7575e876898ec38b
of of the master https://github.com/kframework/k.git branch. The commit hash is just before the aforementioned change. - Or use the forked repository of k, which is currently in use and hence recommended.
cd X86-semantics/semantics
../scripts/kompile.pl --backend java
../scripts/run-single-c-file.sh ../tests/program-tests/bubblesort/test.c java |& tee /tmp/run.log
Empowered by the fact that we can directly execute the semantics using the K framework, we validated our model by co-simulating it against a real machine. During co-simulation, we execute a machine program on the processor as well as on our K model and compare the execution results after every instruction. The co-simulation experiments are done in the following two phases:
- Instruction level validation: Testing individual instructions
- Batch testing: All the tests in a directory are fired in parallel. The
test-cases are specified in a file named
filelist.txt
cd tests/single-instruction-tests ./run-tests.sh --all [--jobs 5] // Which subsumes the following sequence of commands // ./run-tests.sh --cleankstate // Remove the old krun output logs. // ./run-tests.sh --cleanxstate // Remove the old gdb script output logs. // ./run-tests.sh --cleancstate // Remove the old compare logs // ./run-tests.sh --kstate // Collect the semantics of all the // instructions composing all the // test-cases, Compile the X86 semantics // using the collected instruction // semnatics, and Execute krun on each of // the test-case. // ./run-tests.sh --xstate // Execute dn script and generate logs. // ./run-tests.sh --compare // Compare the krun ad gdb script logs.
- Individual testing: Running each test in isolation.
cd tests/single-instruction-tests/adc make collect // Collect semantic rules of all the instructions composing // the test-case make kompile // Compile the X86 semantics using the collected instruction // semnatics. make cleanktest // Remove the old krun output logs. make cleanxstate // Remove the old gdb script output logs. make cleancstate // Remove the old compare logs make ktest // Execute krun on the test-case and generate krun logs. make xstate // Execute dn script and generate logs. make comapre // Compare the krun ad gdb script logs.
- Program level validation: Testing combination of instructions as a part of real-world programs.
cd tests/program-tests
./run-tests.sh --cleankstate
./run-tests.sh --kstate
- docs: Hosts miscellaneous documents.
- program-verification: Hosts few applications of our formal semantics.
- tests: Hosts test-cases for testing the semantics.
- scripts: Hosts scripts used for compiling/executing/testing he semantics.
- semantics: Hosts the semantics of individual instruction and execution
environment.
- Following are the K-definition files specifying the semantics of execution environment.
- float-conversions.k
- x86-builtin.k
- x86-env-init.k
- x86-flag-checks-syntax.k
- x86-memory.k
- x86-syntax.k
- x86-abstract-semantics.k
- x86-c-library.k
- x86-fetch-execute.k
- x86-mint-wrapper.k
- x86-verification-lemmas.k
- x86-abstract-syntax.k
- x86-configuration.k
- x86-flag-checks.k
- x86-loader.k
- x86-semantics.k
- Following are the K-definition files specifying the semantics of individual instructions.
- registerInstructions/*.k: Semantics of register only instructions
- immediateInstructions/*.k: Semantics of immediate instructions
- memoryInstructions/*.k: Semantics of memory instructions
- systemInstructions/*.k: Semantics of system & control flow instructions.
- extras/*.k: Semantics of instruction having multiple possible
representations. For example,
movabsq movabsq:Opcode Imm64:Imm, R2:R64
is semantically equivalent tomovq Imm64, R2
.
- Following are the K-definition files specifying the semantics of execution environment.