generated from riscv-software-src/template-riscv-code
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update boost deps for core and mss, track Sparta PR397 (#42)
This fixes #35 and tracks the changes in Sparta [PR397(sparcians/map#397), which are merges into Sparta main already. --------- Signed-off-by: Peter Debacker <[email protected]> Signed-off-by: Knute Lingaard <[email protected]> Co-authored-by: Peter Debacker <[email protected]> Co-authored-by: Knute Lingaard <[email protected]> Co-authored-by: Knute Lingaard <[email protected]>
- Loading branch information
1 parent
af31204
commit 32fc79d
Showing
13 changed files
with
122 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule mavis
updated
18 files
+148 −0 | json/isa_rv64h.json | |
+2,350 −0 | json/isa_rv64v.json | |
+828 −0 | json/isa_rv64vf.json | |
+68 −0 | json/isa_rv64zba.json | |
+226 −0 | json/isa_rv64zbb.json | |
+26 −0 | json/isa_rv64zbc.json | |
+66 −0 | json/isa_rv64zbs.json | |
+2 −2 | mavis/DecodedInstInfo.h | |
+0 −2 | mavis/Extractor.h | |
+100 −0 | mavis/ExtractorDirectImplementations.hpp | |
+0 −2 | mavis/ExtractorTraceInfo.h | |
+1 −1 | mavis/IFactoryBuilder.h | |
+14 −5 | mavis/InstMetaData.h | |
+214 −2 | test/main.cpp | |
+4,052 −105 | test/out | |
+367 −0 | test/rv64.tset | |
+47 −0 | test/rv64_bits.tset | |
+15 −0 | test/rv64h.tset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
project(Dispatch_test) | ||
|
||
add_executable(Dispatch_test Dispatch_test.cpp) | ||
target_link_libraries(Dispatch_test core common_test ${STF_LINK_LIBS} ${Sparta_LIBS}) | ||
|
||
include(${SPARTA_BASE}/test/TestingMacros.cmake) | ||
target_link_libraries(Dispatch_test core common_test ${STF_LINK_LIBS} SPARTA::sparta) | ||
|
||
file(CREATE_LINK ${SIM_BASE}/mavis/json ${CMAKE_CURRENT_BINARY_DIR}/mavis_isa_files SYMBOLIC) | ||
file(CREATE_LINK ${SIM_BASE}/arches ${CMAKE_CURRENT_BINARY_DIR}/arches SYMBOLIC) | ||
file(CREATE_LINK ${CMAKE_CURRENT_SOURCE_DIR}/test_cores ${CMAKE_CURRENT_BINARY_DIR}/test_cores SYMBOLIC) | ||
file(CREATE_LINK ${CMAKE_CURRENT_SOURCE_DIR}/expected_output ${CMAKE_CURRENT_BINARY_DIR}/expected_output SYMBOLIC) | ||
|
||
# Single add per cycle | ||
# Note: these macros get defined when find_package(Sparta) is called | ||
sparta_named_test(Dispatch_test_Run_Small Dispatch_test small_core.out -c test_cores/test_small_core.yaml) | ||
sparta_named_test(Dispatch_test_Run_Medium Dispatch_test medium_core.out -c test_cores/test_medium_core.yaml) | ||
sparta_named_test(Dispatch_test_Run_Big Dispatch_test big_core.out -c test_cores/test_big_core.yaml) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters