-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
172 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
macro(p4tools_obtain_z3) | ||
option(TOOLS_USE_PREINSTALLED_Z3 "Look for a preinstalled version of Z3 instead of installing a prebuilt binary using FetchContent." OFF) | ||
|
||
if(TOOLS_USE_PREINSTALLED_Z3) | ||
# We need a fairly recent version of Z3. | ||
set(Z3_MIN_VERSION "4.8.14") | ||
# But 4.12+ is currently broken with libGC | ||
set(Z3_MAX_VERSION_EXCL "4.12") | ||
find_package(Z3 ${Z3_MIN_VERSION} REQUIRED) | ||
|
||
if(NOT DEFINED Z3_VERSION_STRING OR ${Z3_VERSION_STRING} VERSION_LESS ${Z3_MIN_VERSION}) | ||
message(FATAL_ERROR "The minimum required Z3 version is ${Z3_MIN_VERSION}. Has ${Z3_VERSION_STRING}.") | ||
endif() | ||
if(${Z3_VERSION_STRING} VERSION_GREATER_EQUAL ${Z3_MAX_VERSION_EXCL}) | ||
message(FATAL_ERROR "The Z3 version has to be lower than ${Z3_MAX_VERSION_EXCL} (the latter currently does no work with libGC). Has ${Z3_VERSION_STRING}.") | ||
endif() | ||
# Set variables for later consumption. | ||
set(P4TOOLS_Z3_LIB z3::z3) | ||
set(P4TOOLS_Z3_INCLUDE_DIR ${Z3_INCLUDE_DIR}) | ||
else() | ||
# Pull in a specific version of Z3 and link against it. | ||
set(P4TOOLS_Z3_VERSION "4.13.0") | ||
message(STATUS "Fetching Z3 version ${P4TOOLS_Z3_VERSION} for P4Tools...") | ||
|
||
# Unity builds do not work for Protobuf... | ||
set(CMAKE_UNITY_BUILD_PREV ${CMAKE_UNITY_BUILD}) | ||
set(CMAKE_UNITY_BUILD OFF) | ||
# Print out download state while setting up Z3. | ||
set(FETCHCONTENT_QUIET_PREV ${FETCHCONTENT_QUIET}) | ||
set(FETCHCONTENT_QUIET OFF) | ||
|
||
set(Z3_BUILD_LIBZ3_SHARED OFF CACHE BOOL "Build libz3 as a shared library if true, otherwise build a static library") | ||
set(Z3_INCLUDE_GIT_HASH OFF CACHE BOOL "Include git hash in version output") | ||
set(Z3_INCLUDE_GIT_DESCRIBE OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_TEST_EXECUTABLES OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_SAVE_CLANG_OPTIMIZATION_RECORDS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_ENABLE_TRACING_FOR_NON_DEBUG OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_ENABLE_EXAMPLE_TARGETS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_DOTNET_BINDINGS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_PYTHON_BINDINGS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_JAVA_BINDINGS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_JULIA_BINDINGS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_DOCUMENTATION OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_ALWAYS_BUILD_DOCS OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_API_LOG_SYNC OFF CACHE BOOL "Include git describe output in version output") | ||
set(Z3_BUILD_EXECUTABLE OFF CACHE BOOL "Include git describe output in version output") | ||
fetchcontent_declare( | ||
z3 | ||
GIT_REPOSITORY https://github.com/Z3Prover/z3.git | ||
GIT_TAG z3-${P4TOOLS_Z3_VERSION} # 4.13.0 | ||
GIT_PROGRESS TRUE | ||
GIT_SHALLOW TRUE | ||
# We need to patch because the Z3 CMakeLists.txt also adds an uinstall target. | ||
# This leads to a namespace clash. | ||
PATCH_COMMAND | ||
git apply ${P4TOOLS_SOURCE_DIR}/cmake/z3.patch || git apply | ||
${P4TOOLS_SOURCE_DIR}/cmake/z3.patch -R --check && echo | ||
"Patch does not apply because the patch was already applied." | ||
) | ||
fetchcontent_makeavailable_but_exclude_install(z3) | ||
|
||
# Suppress warnings for all Z3 targets. | ||
get_all_targets(Z3_BUILD_TARGETS ${z3_SOURCE_DIR}) | ||
foreach(target ${Z3_BUILD_TARGETS}) | ||
# Do not suppress warnings for Z3 library targets that are aliased. | ||
get_target_property(target_type ${target} TYPE) | ||
if (NOT ${target_type} STREQUAL "INTERFACE_LIBRARY") | ||
target_compile_options(${target} PRIVATE "-Wno-error" "-w") | ||
# Z3 does not add its own include directories for compilation, which can lead to conflicts. | ||
target_include_directories(${target} BEFORE PRIVATE ${z3_SOURCE_DIR}/src) | ||
endif() | ||
endforeach() | ||
|
||
# Reset temporary variable modifications. | ||
set(CMAKE_UNITY_BUILD ${CMAKE_UNITY_BUILD_PREV}) | ||
set(FETCHCONTENT_QUIET ${FETCHCONTENT_QUIET_PREV}) | ||
|
||
# Other projects may also pull in Z3. | ||
# We have to make sure we only include our local version with P4Tools. | ||
set(P4TOOLS_Z3_LIB libz3) | ||
set(P4TOOLS_Z3_INCLUDE_DIR ${z3_SOURCE_DIR}/src/api ${z3_SOURCE_DIR}/src/api/c++) | ||
endif() | ||
|
||
message(STATUS "Done with setting up Z3 for P4Tools.") | ||
endmacro(p4tools_obtain_z3) |
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index ba3ec7bce..7ca1894fd 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -446,13 +446,13 @@ configure_file( | ||
|
||
# Target needs to be declared before the components so that they can add | ||
# dependencies to this target so they can run their own custom uninstall rules. | ||
-add_custom_target(uninstall | ||
- COMMAND | ||
- "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | ||
- COMMENT "Uninstalling..." | ||
- USES_TERMINAL | ||
- VERBATIM | ||
-) | ||
+# add_custom_target(uninstall | ||
+# COMMAND | ||
+# "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | ||
+# COMMENT "Uninstalling..." | ||
+# USES_TERMINAL | ||
+# VERBATIM | ||
+# ) | ||
|
||
################################################################################ | ||
# CMake build file locations | ||
diff --git a/src/math/lp/column_info.h b/src/math/lp/column_info.h | ||
index 1dc0c60c7..9cbeea66c 100644 | ||
--- a/src/math/lp/column_info.h | ||
+++ b/src/math/lp/column_info.h | ||
@@ -47,7 +47,7 @@ public: | ||
m_lower_bound_is_strict == c.m_lower_bound_is_strict && | ||
m_upper_bound_is_set == c.m_upper_bound_is_set&& | ||
m_upper_bound_is_strict == c.m_upper_bound_is_strict&& | ||
- (!m_lower_bound_is_set || m_lower_bound == c.m_low_bound) && | ||
+ (!m_lower_bound_is_set || m_lower_bound == c.m_lower_bound) && | ||
(!m_upper_bound_is_set || m_upper_bound == c.m_upper_bound) && | ||
m_cost == c.m_cost && | ||
m_is_fixed == c.m_is_fixed && | ||
diff --git a/src/math/lp/static_matrix.h b/src/math/lp/static_matrix.h | ||
index 9d6bb8599..42dd476b5 100644 | ||
--- a/src/math/lp/static_matrix.h | ||
+++ b/src/math/lp/static_matrix.h | ||
@@ -79,7 +79,7 @@ public: | ||
ref(static_matrix & m, unsigned row, unsigned col):m_matrix(m), m_row(row), m_col(col) {} | ||
ref & operator=(T const & v) { m_matrix.set( m_row, m_col, v); return *this; } | ||
|
||
- ref operator=(ref & v) { m_matrix.set(m_row, m_col, v.m_matrix.get(v.m_row, v.m_col)); return *this; } | ||
+ ref operator=(ref & v) { m_matrix.set(m_row, m_col, v.m_matrix.get_elem(v.m_row, v.m_col)); return *this; } | ||
|
||
operator T () const { return m_matrix.get_elem(m_row, m_col); } | ||
}; | ||
diff --git a/src/math/lp/static_matrix_def.h b/src/math/lp/static_matrix_def.h | ||
index 0370ee899..514b48703 100644 | ||
--- a/src/math/lp/static_matrix_def.h | ||
+++ b/src/math/lp/static_matrix_def.h | ||
@@ -92,7 +92,7 @@ static_matrix<T, X>::static_matrix(static_matrix const &A, unsigned * /* basis * | ||
init_row_columns(m, m); | ||
for (; m-- > 0; ) | ||
for (auto & col : A.m_columns[m]) | ||
- set(col.var(), m, A.get_value_of_column_cell(col)); | ||
+ set(col.var(), m, A.get_val(col)); | ||
} | ||
|
||
template <typename T, typename X> void static_matrix<T, X>::clear() { | ||
diff --git a/src/util/memory_manager.cpp b/src/util/memory_manager.cpp | ||
index 290881ba5..a3db94d7a 100644 | ||
--- a/src/util/memory_manager.cpp | ||
+++ b/src/util/memory_manager.cpp | ||
@@ -29,6 +29,8 @@ Copyright (c) 2015 Microsoft Corporation | ||
# define malloc_usable_size _msize | ||
#endif | ||
|
||
+#undef HAS_MALLOC_USABLE_SIZE | ||
+ | ||
// The following two function are automatically generated by the mk_make.py script. | ||
// The script collects ADD_INITIALIZER and ADD_FINALIZER commands in the .h files. | ||
// For example, rational.h contains |
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