Files
revng-revng/lib/StackAnalysis/ABIAnalyses/CMakeLists.txt
Qian Matteo Chen 12c3ce2dba Introduce ABIAnalyses2
Architecture-agnostic and ABI-independent data-flow analyses that
traverse the recovered functions in order to detect arguments and
return values registers.
2021-12-14 10:59:56 +01:00

25 lines
631 B
CMake

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
add_subdirectory(MFIGraphs)
revng_add_analyses_library_internal(revngABIAnalyses
ABIAnalysis.cpp
DeadRegisterArgumentsOfFunction.cpp
DeadReturnValuesOfFunctionCall.cpp
RegisterArgumentsOfFunctionCall.cpp
UsedArgumentsOfFunction.cpp
UsedReturnValuesOfFunction.cpp
UsedReturnValuesOfFunctionCall.cpp)
target_link_libraries(revngABIAnalyses
revngSupport
revngBasicAnalyses
revngModel)
target_include_directories(revngABIAnalyses
PRIVATE
"${CMAKE_CURRENT_BINARY_DIR}")
add_dependencies(revngABIAnalyses abi-analyses-headers)