macaw/.gitmodules

52 lines
1.8 KiB
Plaintext
Raw Normal View History

2017-11-10 02:00:23 +03:00
[submodule "x86/tests/submodules/dwarf"]
path = deps/dwarf
url = https://github.com/GaloisInc/dwarf.git
2017-11-10 02:00:23 +03:00
[submodule "x86/tests/submodules/elf-edit"]
path = deps/elf-edit
url = https://github.com/GaloisInc/elf-edit.git
2017-11-10 02:00:23 +03:00
[submodule "x86/tests/submodules/flexdis86"]
path = deps/flexdis86
url = https://github.com/GaloisInc/flexdis86.git
[submodule "deps/crucible"]
path = deps/crucible
2018-04-25 10:32:43 +03:00
url = https://github.com/GaloisInc/crucible.git
[submodule "deps/llvm-pretty"]
path = deps/llvm-pretty
2018-04-25 10:32:43 +03:00
url = https://github.com/elliottt/llvm-pretty.git
2017-08-29 01:48:55 +03:00
[submodule "submodules/semmc"]
path = deps/semmc
2017-08-29 01:48:55 +03:00
url = git@github.com:GaloisInc/semmc.git
[submodule "submodules/dismantle"]
path = deps/dismantle
2017-08-29 01:48:55 +03:00
url = git@github.com:travitch/dismantle.git
[submodule "submodules/macaw-loader"]
path = deps/macaw-loader
url = git@github.com:GaloisInc/macaw-loader.git
2019-02-22 09:21:51 +03:00
[submodule "deps/llvm-pretty-bc-parser"]
path = deps/llvm-pretty-bc-parser
url = https://github.com/GaloisInc/llvm-pretty-bc-parser
2020-02-25 02:39:41 +03:00
[submodule "deps/asl-translator"]
path = deps/asl-translator
url = https://github.com/GaloisInc/asl-translator.git
[submodule "deps/arm-asl-parser"]
path = deps/arm-asl-parser
url = https://github.com/GaloisInc/arm-asl-parser.git
2020-02-27 10:05:08 +03:00
[submodule "deps/what4-serialize"]
path = deps/what4-serialize
url = https://github.com/GaloisInc/what4-serialize.git
2020-03-11 00:26:55 +03:00
[submodule "deps/what4"]
path = deps/what4
url = git@github.com:GaloisInc/what4.git
Add RISC-V backend (#259) * riscv: added grift as submodule * added macaw-riscv project * make arch polykinded everywhere in macaw base * stubbed out riscv_info * update grift * started on RISCVReg * started on RISCVReg * RegisterInfo instance for RISCVReg (a few unimplemented fields) * filled out archRegSet * filled out withArchConstraints, archAddrWidth, and archEndianness * added Arch module * RISCV initialBlockRegs * preliminary work on disassembleFn * wip: disassembleFn * made things more lens-y * wip: disassemble instruction * finished disassembly of grift assignment statements * separated out DisInstM into separate module * disassembly wip * finished disassembleBlock * Finished riscvDisassembleFn * bump grift submodule * made macaw discovery poly-kinded * added risc-v test suite * added risc-v test suite * fixed macaw semantics to hardware x0 to constant value 0 * added riscvPreserveReg based on assembler's manual * riscvDemandContext * successfully disassembled a block! * enhanced tests to allow optional entry point spec * stubbed out identifyCall * stubbed out identifyReturn * passing initial test * added checkForReturnAddr stub * fleshed out identifyCall and identifyReturn * update grift submodule * bug fix and exception handling * added EXC register, which tracks whether or not we've attempted to read from/write to any system registers. * Replaced custom CSR type with GRIFT's (but we're not using it currently) * added better show instance for GPRs we should migrate this to a GRIFT pretty printer at some point) * Fixed a vicious bug in the semantics; unsigned and signed LT were getting swapped in translation * added pattern synonyms for GPRs * improved docs and fixed RISCVReg bug (GP was 3 instead of 4) * changed undefineds to errors * changed RISCV class to RISCVConstraints * wrapped GRIFT's "RV" parameter in a type to remove the need to make macaw architecture parameter polykinded * rolled back all changes to macaw base that made things poly-kinded * reverted two more macaw core changes, updated license, removed old PPC test * macaw: update to upstream changes in bv-sized and grift * address code review comments * macaw-riscv: expose fewer modules * Update RISCVTermStmt definition * Update riscv_info. macaw-riscv now builds against master * Update bv-sized and cabal freeze files * Update cabal freeze files with satisfying lens version * Get tests building * Fix printf runtime error * Add simpler tests * Change RISCV target version and update grift pointer [skip ci] * Compressed branch test passes [skip ci] * Add additional small tests [skip ci] * Introduce a syscall PrimFn * Syscalls now correctly classified * Fix return regs from syscall * Extract syscall arguments * Update expected riscv test results * Add macaw-riscv build + test to CI * Get building with GHC 9.0.2 * Revert "Update cabal freeze files with satisfying lens version" This reverts commit 4aa95c19c374ce4874af5fd9350bb20a56a872f2. * Install softfloat in CI * Update Grift * Some initial cleanup * More cleanup * Resolve FIXME on getReg * Detect and only accept rv64gc rvreprs * Address Tristan's PR comments * Update Grift pointer * Add info on installing Softfloat to README for macaw-riscv * Add missing submodule step to softfloat build instructions Co-authored-by: Ben Selfridge <benselfridge@000279.local> Co-authored-by: Valentin Robert <val@galois.com>
2022-03-04 23:44:46 +03:00
[submodule "deps/grift"]
path = deps/grift
url = https://github.com/GaloisInc/grift.git
[submodule "deps/bv-sized"]
path = deps/bv-sized
url = https://github.com/GaloisInc/bv-sized
[submodule "deps/bv-sized-float"]
path = deps/bv-sized-float
url = https://github.com/GaloisInc/bv-sized-float
[submodule "deps/softfloat-hs"]
path = deps/softfloat-hs
url = https://github.com/GaloisInc/softfloat-hs