├── .gitignore ├── README.rest ├── _Sidebar.md ├── common-insts.rest ├── hail.rest ├── instruction-set.rest ├── irbuilder.rest ├── memory-model.rest ├── muapi.h ├── native-interface-x64-unix.rest ├── native-interface.rest ├── overview.rest ├── portability.rest ├── scripts ├── extract_comminst_macros.py └── muapiparser.py ├── threads-stacks.rest ├── type-system.rest ├── uvm-client-interface.rest ├── uvm-ir-binary.rest ├── uvm-ir.rest └── uvm-memory.rest /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.py[co] 3 | *.swp 4 | .DS_Store 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /README.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/README.rest -------------------------------------------------------------------------------- /_Sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/_Sidebar.md -------------------------------------------------------------------------------- /common-insts.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/common-insts.rest -------------------------------------------------------------------------------- /hail.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/hail.rest -------------------------------------------------------------------------------- /instruction-set.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/instruction-set.rest -------------------------------------------------------------------------------- /irbuilder.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/irbuilder.rest -------------------------------------------------------------------------------- /memory-model.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/memory-model.rest -------------------------------------------------------------------------------- /muapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/muapi.h -------------------------------------------------------------------------------- /native-interface-x64-unix.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/native-interface-x64-unix.rest -------------------------------------------------------------------------------- /native-interface.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/native-interface.rest -------------------------------------------------------------------------------- /overview.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/overview.rest -------------------------------------------------------------------------------- /portability.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/portability.rest -------------------------------------------------------------------------------- /scripts/extract_comminst_macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/scripts/extract_comminst_macros.py -------------------------------------------------------------------------------- /scripts/muapiparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/scripts/muapiparser.py -------------------------------------------------------------------------------- /threads-stacks.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/threads-stacks.rest -------------------------------------------------------------------------------- /type-system.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/type-system.rest -------------------------------------------------------------------------------- /uvm-client-interface.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/uvm-client-interface.rest -------------------------------------------------------------------------------- /uvm-ir-binary.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/uvm-ir-binary.rest -------------------------------------------------------------------------------- /uvm-ir.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/uvm-ir.rest -------------------------------------------------------------------------------- /uvm-memory.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microvm/microvm-spec/HEAD/uvm-memory.rest --------------------------------------------------------------------------------