-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial state for Hippocrates (ASPLOS'21) Artifact
- Loading branch information
0 parents
commit c0b97e8
Showing
121 changed files
with
14,456 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
*.bc | ||
*.ll | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
# CMake | ||
build/ | ||
|
||
# VSCode | ||
.vscode/ | ||
*.code-workspace | ||
|
||
# Force add results | ||
results/ | ||
build_old |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[submodule "deps/yaml-cpp"] | ||
path = deps/yaml-cpp | ||
url = https://github.com/jbeder/yaml-cpp.git | ||
[submodule "deps/andersen"] | ||
path = deps/andersen | ||
url = https://github.com/efeslab/andersen.git | ||
[submodule "deps/pmtest"] | ||
path = deps/pmtest | ||
url = https://github.com/efeslab/pmtest.git | ||
[submodule "deps/pmdk"] | ||
path = deps/pmdk | ||
url = https://github.com/efeslab/pmdk.git | ||
[submodule "deps/valgrind-pmem"] | ||
path = deps/valgrind-pmem | ||
url = https://github.com/efeslab/valgrind.git | ||
[submodule "deps/RECIPE"] | ||
path = deps/RECIPE | ||
url = https://github.com/efeslab/RECIPE.git | ||
[submodule "deps/whole-program-llvm"] | ||
path = deps/whole-program-llvm | ||
url = https://github.com/efeslab/whole-program-llvm.git | ||
[submodule "deps/redis"] | ||
path = deps/redis | ||
url = https://github.com/efeslab/redis-pmem.git | ||
[submodule "deps/memcached-pmem"] | ||
path = deps/memcached-pmem | ||
url = https://github.com/efeslab/memcached-pmem | ||
[submodule "deps/YCSB"] | ||
path = deps/YCSB | ||
url = https://github.com/brianfrankcooper/YCSB.git |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
cmake_minimum_required(VERSION 3.4.3) | ||
project(PMFixer) | ||
|
||
set(CMAKE_BUILD_TYPE "RelWithDebInfo") | ||
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g") | ||
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g") | ||
|
||
# This will find the shared LLVM build. | ||
find_package(LLVM 8.0 REQUIRED CONFIG) | ||
# You don't need to change ${LLVM_CMAKE_DIR} since it is already defined. | ||
list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_DIR}") | ||
include(AddLLVM) | ||
|
||
# You don't need to change ${LLVM_DEFINITIONS} since it is already defined. | ||
add_definitions(${LLVM_DEFINITIONS}) | ||
# You don't need to change ${LLVM_INCLUDE_DIRS} since it is already defined. | ||
include_directories(${LLVM_INCLUDE_DIRS}) | ||
|
||
include("${CMAKE_SOURCE_DIR}/cmake/functions.cmake") | ||
|
||
add_subdirectory(deps) | ||
|
||
# -- This sets these variables so that they're available in the lower scope. | ||
get_property(YAMLCPP_LIBS GLOBAL PROPERTY yaml_cpp_lib_dir) | ||
get_property(YAMLCPP_INCLUDE GLOBAL PROPERTY yaml_cpp_include_dir) | ||
|
||
add_subdirectory(src) | ||
add_subdirectory(tests) | ||
add_subdirectory(tools) |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Ian Neal, efeslab | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.