mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
6fa33f5dd9
DataFlowSanitizer is a generalised dynamic data flow analysis. Unlike other Sanitizer tools, this tool is not designed to detect a specific class of bugs on its own. Instead, it provides a generic dynamic data flow analysis framework to be used by clients to help detect application-specific issues within their own code. Differential Revision: http://llvm-reviews.chandlerc.com/D965 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187923 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
351 B
CMake
17 lines
351 B
CMake
add_llvm_library(LLVMInstrumentation
|
|
AddressSanitizer.cpp
|
|
BoundsChecking.cpp
|
|
DataFlowSanitizer.cpp
|
|
DebugIR.cpp
|
|
EdgeProfiling.cpp
|
|
GCOVProfiling.cpp
|
|
MemorySanitizer.cpp
|
|
Instrumentation.cpp
|
|
OptimalEdgeProfiling.cpp
|
|
PathProfiling.cpp
|
|
ProfilingUtils.cpp
|
|
ThreadSanitizer.cpp
|
|
)
|
|
|
|
add_dependencies(LLVMInstrumentation intrinsics_gen)
|