| # ********************************************************** |
| # Copyright (c) 2015-2024 Google, Inc. All rights reserved. |
| # ********************************************************** |
| |
| # Redistribution and use in source and binary forms, with or without |
| # modification, are permitted provided that the following conditions are met: |
| # |
| # * Redistributions of source code must retain the above copyright notice, |
| # this list of conditions and the following disclaimer. |
| # |
| # * Redistributions in binary form must reproduce the above copyright notice, |
| # this list of conditions and the following disclaimer in the documentation |
| # and/or other materials provided with the distribution. |
| # |
| # * Neither the name of Google, Inc. nor the names of its contributors may be |
| # used to endorse or promote products derived from this software without |
| # specific prior written permission. |
| # |
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| # ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE |
| # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
| # DAMAGE. |
| |
| # 3.7 is DR's min as well, for VS2017, GREATER_EQUAL, etc. |
| cmake_minimum_required(VERSION 3.7) |
| |
| include(../../make/policies.cmake NO_POLICY_SCOPE) |
| |
| # We set a time limit on our unit tests here which do not go through suite/. |
| set(test_seconds 90) |
| |
| if (WIN32) |
| set(os_name "win") |
| # Our non-client files assume this is set, yet don't include headers that set it. |
| add_definitions(-DWINDOWS) |
| else () |
| set(os_name "unix") |
| # Ditto. |
| add_definitions(-DUNIX) |
| if (LINUX) |
| add_definitions(-DLINUX) |
| elseif (APPLE) |
| add_definitions(-DMACOS) |
| endif () |
| endif () |
| # Ditto here, in particular for options.cpp. |
| if (X86) |
| if (X64) |
| add_definitions(-DX86_64) |
| else () |
| add_definitions(-DX86_32) |
| endif () |
| elseif (AARCHXX) |
| if (X64) |
| add_definitions(-DARM_64) |
| else () |
| add_definitions(-DARM_32) |
| endif () |
| elseif (RISCV64) |
| add_definitions(-DRISCV_64) |
| endif () |
| |
| # GCC 6+ has a warning for an ABI change due to a bug introduced in GCC 5: |
| # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=77728. As we are building all of |
| # drcachesim and not linking to other C++ code, we can just ignore it. |
| if (ARM AND CMAKE_COMPILER_IS_GNUCC) |
| include(CheckCXXCompilerFlag) |
| CHECK_CXX_COMPILER_FLAG(-Wno-psabi GCC_HAS_NO_PSABI) |
| if (GCC_HAS_NO_PSABI) |
| set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-psabi") |
| endif (GCC_HAS_NO_PSABI) |
| endif () |
| |
| # i#2277: we use zlib if available to write and read compressed trace files, |
| # and now to write zipfiles for fast seeking. |
| if (ZLIB_FOUND) |
| add_definitions(-DHAS_ZLIB) |
| include_directories(${ZLIB_INCLUDE_DIRS}) |
| set(zlib_reader reader/compressed_file_reader.cpp) |
| |
| # We use minizip, supplied with zlib, to split offline traces into pieces |
| # inside zipfiles to support fast seeking. |
| set(minizip_dir "${PROJECT_SOURCE_DIR}/third_party/zlib/contrib/minizip") |
| if (NOT EXISTS "${minizip_dir}") |
| # XXX: Should we make this a fatal error, and build zlib on Windows, |
| # to eliminate having to support both .gz and .zip output? |
| # Maybe require zlib as well and stop supporting uncompressed output |
| # and remove HAS_ZLIB ifdefs from our code? |
| message(WARNING |
| "third_party/zlib submodule is not initialized: run 'git submodule init'; " |
| "until then, disabling zip output and fast seeking") |
| set(zip_reader "") |
| set(zlib_libs ${ZLIB_LIBRARIES}) |
| set(ZIP_FOUND OFF) |
| else () |
| file(GLOB minizip_srcs "${minizip_dir}/*.c") |
| if (NOT WIN32) |
| list(REMOVE_ITEM minizip_srcs "${minizip_dir}/iowin32.c") |
| endif () |
| add_library(minizip STATIC ${minizip_srcs}) |
| if (APPLE) |
| append_property_string(TARGET minizip |
| COMPILE_FLAGS "-mmacosx-version-min=${OLDEST_OSX_SUPPPORTED}") |
| endif () |
| add_definitions(-DHAS_ZIP) |
| set(ZIP_FOUND ON) |
| # We add "minizip/" to avoid collisions with system "zip.h" on Mac. |
| include_directories(${minizip_dir}/..) |
| DR_export_target(minizip) |
| install_exported_target(minizip ${INSTALL_CLIENTS_LIB}) |
| set(zip_reader reader/zipfile_file_reader.cpp) |
| set(zlib_libs ${ZLIB_LIBRARIES} minizip) |
| endif () |
| else () |
| # XXX: We could ship with a zlib for Windows, or build the third_party/zlib. |
| # Today we simply don't support compressed traces or fast seeking on Windows. |
| set(zlib_reader "") |
| set(zip_reader "") |
| set(zlib_libs "") |
| endif() |
| |
| if (libsnappy) |
| add_definitions(-DHAS_SNAPPY) |
| set(snappy_reader |
| reader/snappy_file_reader.cpp |
| common/snappy_consts.cpp |
| common/crc32c.cpp |
| ) |
| else () |
| set(snappy_reader "") |
| endif() |
| |
| if (liblz4) |
| add_definitions(-DHAS_LZ4) |
| set(lz4_reader reader/lz4_file_reader.cpp) |
| endif () |
| |
| set(client_and_sim_srcs |
| common/named_pipe_${os_name}.cpp |
| common/options.cpp |
| common/trace_entry.cpp) |
| |
| # i#2006: we split our tools into libraries for combining as desired in separate |
| # launchers. Since they are exported in the same dir as other tools like drcov, |
| # we use a drmemtrace_ prefix. |
| macro (add_exported_library name type) |
| add_library(${name} ${type} ${ARGN}) |
| DR_export_target(${name}) |
| install_exported_target(${name} ${INSTALL_CLIENTS_LIB}) |
| add_dependencies(${name} api_headers) |
| endmacro () |
| |
| add_exported_library(drmemtrace_reuse_distance STATIC tools/reuse_distance.cpp) |
| add_exported_library(drmemtrace_histogram STATIC tools/histogram.cpp) |
| add_exported_library(drmemtrace_reuse_time STATIC tools/reuse_time.cpp) |
| add_exported_library(drmemtrace_basic_counts STATIC tools/basic_counts.cpp) |
| add_exported_library(drmemtrace_opcode_mix STATIC tools/opcode_mix.cpp) |
| add_exported_library(drmemtrace_syscall_mix STATIC tools/syscall_mix.cpp) |
| add_exported_library(drmemtrace_view STATIC tools/view.cpp) |
| add_exported_library(drmemtrace_func_view STATIC tools/func_view.cpp) |
| add_exported_library(drmemtrace_invariant_checker STATIC tools/invariant_checker.cpp) |
| add_exported_library(drmemtrace_schedule_stats STATIC tools/schedule_stats.cpp) |
| |
| target_link_libraries(drmemtrace_invariant_checker drdecode) |
| |
| configure_DynamoRIO_standalone(drmemtrace_opcode_mix) |
| configure_DynamoRIO_standalone(drmemtrace_view) |
| configure_DynamoRIO_standalone(drmemtrace_invariant_checker) |
| |
| # We combine the cache and TLB simulators as they share code already. |
| add_exported_library(drmemtrace_simulator STATIC |
| simulator/simulator.cpp |
| simulator/cache.cpp |
| simulator/cache_lru.cpp |
| simulator/cache_fifo.cpp |
| simulator/cache_miss_analyzer.cpp |
| simulator/caching_device.cpp |
| simulator/caching_device_stats.cpp |
| simulator/cache_stats.cpp |
| simulator/prefetcher.cpp |
| simulator/cache_simulator.cpp |
| simulator/snoop_filter.cpp |
| simulator/tlb.cpp |
| simulator/tlb_simulator.cpp |
| ) |
| |
| add_exported_library(drmemtrace_record_filter STATIC |
| tools/filter/record_filter.h |
| tools/filter/record_filter.cpp |
| tools/filter/cache_filter.h |
| tools/filter/cache_filter.cpp |
| tools/filter/type_filter.h |
| tools/filter/encodings2regdeps_filter.h |
| tools/filter/func_id_filter.h |
| tools/filter/null_filter.h) |
| target_link_libraries(drmemtrace_record_filter drmemtrace_simulator) |
| configure_DynamoRIO_standalone(drmemtrace_record_filter) |
| |
| add_exported_library(directory_iterator STATIC common/directory_iterator.cpp) |
| add_dependencies(directory_iterator api_headers) |
| target_link_libraries(directory_iterator drfrontendlib) |
| |
| if (BUILD_PT_POST_PROCESSOR) |
| add_subdirectory(drpt2trace) |
| endif (BUILD_PT_POST_PROCESSOR) |
| |
| set(raw2trace_srcs |
| tracer/raw2trace.cpp |
| tracer/raw2trace_shared.cpp |
| tracer/raw2trace_directory.cpp |
| tracer/instru.cpp |
| tracer/instru_online.cpp |
| tracer/instru_offline.cpp |
| reader/reader.cpp |
| common/trace_entry.cpp |
| reader/record_file_reader.cpp |
| ${zlib_reader} |
| ) |
| if (libsnappy) |
| set(raw2trace_srcs ${raw2trace_srcs} |
| ${snappy_reader} |
| reader/file_reader.cpp |
| ) |
| endif () |
| add_exported_library(drmemtrace_raw2trace STATIC ${raw2trace_srcs}) |
| configure_DynamoRIO_standalone(drmemtrace_raw2trace) |
| target_link_libraries(drmemtrace_raw2trace directory_iterator drfrontendlib) |
| use_DynamoRIO_extension(drmemtrace_raw2trace drutil_static) |
| link_with_pthread(drmemtrace_raw2trace) |
| if (libsnappy) |
| target_link_libraries(drmemtrace_raw2trace snappy) |
| endif () |
| if (liblz4) |
| target_link_libraries(drmemtrace_raw2trace lz4) |
| endif () |
| |
| if (BUILD_PT_POST_PROCESSOR) |
| add_definitions(-DBUILD_PT_POST_PROCESSOR) |
| target_link_libraries(drmemtrace_raw2trace drpt2ir drir2trace) |
| endif (BUILD_PT_POST_PROCESSOR) |
| |
| set(loader_srcs |
| tools/loader/dynamic_lib.cpp |
| tools/loader/external_tool_creator.cpp |
| tools/loader/external_config_file.cpp) |
| |
| # XXX: We should link in drmemtrace_analyzer instead of re-building its |
| # source files. |
| set(drcachesim_srcs |
| launcher.cpp |
| scheduler/scheduler.cpp |
| scheduler/speculator.cpp |
| analyzer.cpp |
| analyzer_multi.cpp |
| ${client_and_sim_srcs} |
| reader/reader.cpp |
| reader/config_reader.cpp |
| reader/file_reader.cpp |
| reader/record_file_reader.cpp |
| ${zlib_reader} |
| ${zip_reader} |
| ${snappy_reader} |
| ${lz4_reader} |
| reader/ipc_reader.cpp |
| tracer/instru.cpp |
| tracer/instru_online.cpp |
| ${loader_srcs}) |
| |
| add_executable(drmemtrace_launcher ${drcachesim_srcs}) |
| # In order to embed raw2trace we need to be standalone: |
| configure_DynamoRIO_standalone(drmemtrace_launcher) |
| # Link in our tools: |
| target_link_libraries(drmemtrace_launcher drmemtrace_simulator drmemtrace_reuse_distance |
| drmemtrace_histogram drmemtrace_reuse_time drmemtrace_basic_counts |
| drmemtrace_opcode_mix drmemtrace_syscall_mix drmemtrace_view drmemtrace_func_view |
| drmemtrace_raw2trace directory_iterator drmemtrace_invariant_checker |
| drmemtrace_schedule_stats drmemtrace_record_filter) |
| if (UNIX) |
| target_link_libraries(drmemtrace_launcher dl) |
| endif () |
| if (libsnappy) |
| target_link_libraries(drmemtrace_launcher snappy) |
| endif () |
| # To avoid dup symbol errors between drinjectlib and drdecode on Windows we have |
| # to explicitly list drdecode up front: |
| target_link_libraries(drmemtrace_launcher drdecode drinjectlib drconfiglib drfrontendlib) |
| use_DynamoRIO_extension(drmemtrace_launcher droption) |
| # These are also for raw2trace: |
| use_DynamoRIO_extension(drmemtrace_launcher drcovlib_static) |
| use_DynamoRIO_extension(drmemtrace_launcher drutil_static) |
| |
| # This is to avoid ../ and common/ in the #includes of headers that we |
| # export in a single dir for 3rd-party tool integration. |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}/simulator) |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}/common) |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}/reader) |
| # TODO i#6412: raw2trace.h and related headers that are used only in raw2trace |
| # conversion are also a part of this directory. Ideally we'd like for tracer |
| # code to not be able to include those headers so that we can keep tracer |
| # separate from raw2trace. Create a separate directory for non-tracer headers |
| # so that we can more cleanly separate tracer and raw2trace code. |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}/tracer) |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}/scheduler) |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}) |
| |
| if (BUILD_PT_POST_PROCESSOR) |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR}/drpt2trace) |
| endif (BUILD_PT_POST_PROCESSOR) |
| |
| add_exported_library(drmemtrace_analyzer STATIC |
| analyzer.cpp |
| scheduler/scheduler.cpp |
| scheduler/speculator.cpp |
| common/trace_entry.cpp |
| reader/reader.cpp |
| reader/config_reader.cpp |
| reader/file_reader.cpp |
| reader/record_file_reader.cpp |
| ${zlib_reader} |
| ${zip_reader} |
| ${snappy_reader} |
| ${lz4_reader} |
| ) |
| target_link_libraries(drmemtrace_analyzer directory_iterator) |
| if (libsnappy) |
| target_link_libraries(drmemtrace_analyzer snappy) |
| endif () |
| if (liblz4) |
| target_link_libraries(drmemtrace_analyzer lz4) |
| endif () |
| |
| link_with_pthread(drmemtrace_analyzer) |
| # We get away w/ exporting the generically-named "utils.h" by putting into a |
| # drmemtrace/ subdir. |
| install_client_nonDR_header(drmemtrace common/utils.h) |
| install_client_nonDR_header(drmemtrace common/trace_entry.h) |
| install_client_nonDR_header(drmemtrace common/memref.h) |
| install_client_nonDR_header(drmemtrace common/memtrace_stream.h) |
| install_client_nonDR_header(drmemtrace common/archive_istream.h) |
| install_client_nonDR_header(drmemtrace common/archive_ostream.h) |
| install_client_nonDR_header(drmemtrace reader/reader.h) |
| install_client_nonDR_header(drmemtrace reader/record_file_reader.h) |
| install_client_nonDR_header(drmemtrace analysis_tool.h) |
| install_client_nonDR_header(drmemtrace analyzer.h) |
| install_client_nonDR_header(drmemtrace tools/reuse_distance_create.h) |
| install_client_nonDR_header(drmemtrace tools/histogram_create.h) |
| install_client_nonDR_header(drmemtrace tools/reuse_time_create.h) |
| install_client_nonDR_header(drmemtrace tools/basic_counts_create.h) |
| install_client_nonDR_header(drmemtrace tools/opcode_mix_create.h) |
| install_client_nonDR_header(drmemtrace tools/schedule_stats_create.h) |
| install_client_nonDR_header(drmemtrace tools/syscall_mix_create.h) |
| install_client_nonDR_header(drmemtrace simulator/cache_simulator.h) |
| install_client_nonDR_header(drmemtrace simulator/cache_simulator_create.h) |
| install_client_nonDR_header(drmemtrace simulator/tlb_simulator_create.h) |
| install_client_nonDR_header(drmemtrace tools/view_create.h) |
| install_client_nonDR_header(drmemtrace tools/func_view_create.h) |
| install_client_nonDR_header(drmemtrace tools/filter/record_filter_create.h) |
| install_client_nonDR_header(drmemtrace tools/filter/record_filter.h) |
| # TODO i#6412: Create a separate directory for non-tracer headers so that |
| # we can more cleanly separate tracer and raw2trace code. |
| install_client_nonDR_header(drmemtrace tracer/raw2trace.h) |
| install_client_nonDR_header(drmemtrace tracer/raw2trace_shared.h) |
| install_client_nonDR_header(drmemtrace scheduler/scheduler.h) |
| install_client_nonDR_header(drmemtrace scheduler/flexible_queue.h) |
| install_client_nonDR_header(drmemtrace scheduler/speculator.h) |
| |
| add_library(test_helpers STATIC tests/test_helpers.cpp) |
| |
| # We show one example of how to create a standalone analyzer of trace |
| # files that does not need to link with DR. |
| add_executable(histogram_launcher |
| tools/histogram_launcher.cpp |
| ) |
| configure_DynamoRIO_standalone(histogram_launcher) |
| target_link_libraries(histogram_launcher drmemtrace_analyzer drmemtrace_histogram |
| drfrontendlib drmemtrace_invariant_checker) |
| use_DynamoRIO_extension(histogram_launcher droption) |
| add_dependencies(histogram_launcher api_headers) |
| |
| add_executable(prefetch_analyzer_launcher |
| tests/prefetch_analyzer_launcher.cpp |
| tests/prefetch_analyzer.cpp |
| tests/test_helpers.cpp |
| ) |
| target_link_libraries(prefetch_analyzer_launcher drmemtrace_analyzer drfrontendlib) |
| append_property_list(TARGET prefetch_analyzer_launcher |
| COMPILE_DEFINITIONS "NO_HELPER_MAIN") |
| use_DynamoRIO_extension(prefetch_analyzer_launcher droption) |
| add_dependencies(prefetch_analyzer_launcher api_headers) |
| |
| add_executable(record_filter_launcher |
| tools/record_filter_launcher.cpp |
| tests/test_helpers.cpp) |
| target_link_libraries(record_filter_launcher drmemtrace_analyzer drmemtrace_record_filter) |
| add_dependencies(record_filter_launcher api_headers) |
| append_property_list(TARGET record_filter_launcher COMPILE_DEFINITIONS "NO_HELPER_MAIN") |
| use_DynamoRIO_extension(record_filter_launcher droption) |
| if (NOT APPLE) |
| configure_DynamoRIO_static(record_filter_launcher) |
| endif() |
| |
| # We want to use test_helper's disable_popups() but we have _tmain and so do not want |
| # the test_helper library's main symbol: so we compile ourselves and disable. |
| add_executable(scheduler_launcher tests/scheduler_launcher.cpp tests/test_helpers.cpp) |
| append_property_list(TARGET scheduler_launcher COMPILE_DEFINITIONS "NO_HELPER_MAIN") |
| target_link_libraries(scheduler_launcher drmemtrace_analyzer drfrontendlib) |
| use_DynamoRIO_extension(scheduler_launcher droption) |
| add_dependencies(scheduler_launcher api_headers) |
| # Simple test to ensure this launcher keeps working. |
| if (X86 AND X64 AND ZIP_FOUND) |
| set(trace_dir |
| "${PROJECT_SOURCE_DIR}/clients/drcachesim/tests/drmemtrace.threadsig.x64.tracedir") |
| add_test(NAME tool.scheduler_launcher |
| COMMAND scheduler_launcher -trace_dir ${trace_dir}) |
| set_tests_properties(tool.scheduler_launcher PROPERTIES TIMEOUT ${test_seconds}) |
| endif () |
| |
| # We have a companion test built using a separate --build-and-test CMake project in |
| # tests/analyzer_separate.cpp to better test 3rd-party usage. |
| set_property(GLOBAL PROPERTY DynamoRIO_drmemtrace_src_dir |
| "${CMAKE_CURRENT_SOURCE_DIR}/tests") |
| set_property(GLOBAL PROPERTY DynamoRIO_drmemtrace_build_dir |
| "${CMAKE_CURRENT_BINARY_DIR}/tests") |
| |
| # We have one more example of a standalone launcher that uses raw2trace to catch |
| # link errors (xref i#1409). We just build it to test the linking; no test. |
| # XXX i#1997: static DR is not fully supported on Mac yet. |
| if (NOT APPLE) |
| add_executable(opcode_mix_launcher |
| tools/opcode_mix_launcher.cpp |
| ) |
| # We hit dup symbol errors on Windows so we need libc earlier before DR: |
| _DR_get_static_libc_list(static_libc) |
| target_link_libraries(opcode_mix_launcher drmemtrace_analyzer drmemtrace_opcode_mix |
| drmemtrace_raw2trace drcovlib_static drfrontendlib ${static_libc}) |
| use_DynamoRIO_extension(opcode_mix_launcher droption) |
| add_dependencies(opcode_mix_launcher api_headers) |
| configure_DynamoRIO_static(opcode_mix_launcher) |
| endif () |
| |
| target_link_libraries(drmemtrace_launcher ${zlib_libs}) |
| target_link_libraries(histogram_launcher ${zlib_libs}) |
| target_link_libraries(prefetch_analyzer_launcher ${zlib_libs}) |
| target_link_libraries(drmemtrace_raw2trace ${zlib_libs}) |
| target_link_libraries(drmemtrace_analyzer ${zlib_libs}) |
| if (NOT AARCH64 AND NOT APPLE) |
| target_link_libraries(opcode_mix_launcher ${zlib_libs}) |
| endif () |
| target_link_libraries(scheduler_launcher ${zlib_libs}) |
| |
| macro(add_drmemtrace name type) |
| if (${type} STREQUAL "STATIC") |
| set(ext_sfx "_static") |
| else () |
| set(ext_sfx "") |
| endif () |
| set(drmemtrace_srcs |
| tracer/tracer.cpp |
| tracer/instr_counter.cpp |
| tracer/output.cpp |
| tracer/instru.cpp |
| tracer/instru_offline.cpp |
| tracer/instru_online.cpp |
| tracer/physaddr.cpp |
| tracer/func_trace.cpp |
| tracer/raw2trace_shared.cpp |
| ${client_and_sim_srcs} |
| ) |
| if (BUILD_PT_TRACER) |
| set(drmemtrace_srcs ${drmemtrace_srcs} |
| tracer/syscall_pt_trace.cpp |
| tracer/kcore_copy.cpp |
| ) |
| add_definitions(-DBUILD_PT_TRACER) |
| endif () |
| if (libsnappy) |
| set(drmemtrace_srcs ${drmemtrace_srcs} |
| tracer/snappy_file_writer.cpp |
| common/snappy_consts.cpp |
| common/crc32c.cpp |
| ) |
| endif () |
| |
| # i#6412: All implementation shared between the tracer and raw2trace should |
| # be in the separate raw2trace_shared files. This is so we can keep the |
| # tracer library smaller. The following is a non-exhaustive condition that |
| # flags when raw2trace implementation is accidentally added. Including |
| # raw2trace.cpp would necessitate inclusion of various other implementations |
| # (like for the trace reader_t), which should all be avoided here. |
| list (FIND drmemtrace_srcs "tracer/raw2trace.cpp" _raw2trace_index) |
| if (${_raw2trace_index} GREATER -1) |
| message(FATAL_ERROR |
| "drmemtrace should use raw2trace_shared for shared implementation.") |
| endif() |
| |
| add_library(${name} ${type} ${drmemtrace_srcs}) |
| configure_DynamoRIO_client(${name}) |
| use_DynamoRIO_extension(${name} drmgr${ext_sfx}) |
| use_DynamoRIO_extension(${name} drsyms${ext_sfx}) |
| use_DynamoRIO_extension(${name} drwrap${ext_sfx}) |
| use_DynamoRIO_extension(${name} drreg${ext_sfx}) |
| use_DynamoRIO_extension(${name} drutil${ext_sfx}) |
| use_DynamoRIO_extension(${name} drstatecmp${ext_sfx}) |
| use_DynamoRIO_extension(${name} drx${ext_sfx}) |
| use_DynamoRIO_extension(${name} droption) |
| use_DynamoRIO_extension(${name} drcovlib${ext_sfx}) |
| use_DynamoRIO_extension(${name} drbbdup${ext_sfx}) |
| if (BUILD_PT_TRACER) |
| use_DynamoRIO_extension(${name} drpttracer${ext_sfx}) |
| endif () |
| if (libsnappy) |
| target_link_libraries(${name} snappy) |
| endif () |
| target_link_libraries(${name} ${zlib_libs}) |
| if (liblz4) |
| target_link_libraries(${name} lz4) |
| endif () |
| if (RISCV64) |
| target_link_libraries(${name} atomic) |
| endif () |
| add_dependencies(${name} api_headers) |
| install_target(${name} ${INSTALL_CLIENTS_LIB}) |
| endmacro() |
| |
| add_drmemtrace(drmemtrace SHARED) |
| add_drmemtrace(drmemtrace_static STATIC) |
| append_property_list(TARGET drmemtrace_static COMPILE_DEFINITIONS "DRMEMTRACE_STATIC") |
| # We export drmemtrace.h to the same place as the analysis tool headers |
| # for simplicity, rather than sticking it into ext/include or sthg. |
| install_client_nonDR_header(drmemtrace tracer/drmemtrace.h) |
| |
| add_executable(drraw2trace |
| tracer/raw2trace_launcher.cpp |
| tracer/instru.cpp |
| tracer/instru_online.cpp |
| ) |
| target_link_libraries(drraw2trace drmemtrace_raw2trace) |
| # To avoid dup symbol errors on some VS builds we list drdecode before DR: |
| target_link_libraries(drraw2trace drdecode) |
| configure_DynamoRIO_standalone(drraw2trace) |
| target_link_libraries(drraw2trace drfrontendlib) |
| use_DynamoRIO_extension(drraw2trace droption) |
| use_DynamoRIO_extension(drraw2trace drcovlib_static) |
| # Because we're leveraging instru_online code we have to link with drutil: |
| use_DynamoRIO_extension(drraw2trace drutil_static) |
| |
| # We add a useful warning that's not in Wall. |
| CHECK_C_COMPILER_FLAG("-Wimplicit-fallthrough" implicit_fallthrough_avail) |
| |
| macro(restore_nonclient_flags target) |
| # Restore debug and other flags to our non-client executables |
| set_target_properties(${target} PROPERTIES |
| COMPILE_FLAGS "${ORIG_CMAKE_CXX_FLAGS}") |
| if (NOT DEBUG) |
| append_property_list(TARGET ${target} COMPILE_DEFINITIONS "NDEBUG") |
| endif () |
| # However, we need the target os and arch defines (XXX: better way?) for |
| # the config, inject, and frontend headers: |
| DynamoRIO_extra_defines(extra_defs ON) |
| append_property_list(TARGET ${target} COMPILE_DEFINITIONS "${extra_defs}") |
| if (implicit_fallthrough_avail) |
| append_property_string(TARGET ${target} COMPILE_FLAGS "-Wimplicit-fallthrough") |
| endif () |
| endmacro() |
| |
| restore_nonclient_flags(drmemtrace_launcher) |
| restore_nonclient_flags(drraw2trace) |
| restore_nonclient_flags(histogram_launcher) |
| restore_nonclient_flags(record_filter_launcher) |
| restore_nonclient_flags(prefetch_analyzer_launcher) |
| if (NOT AARCH64 AND NOT APPLE) |
| restore_nonclient_flags(opcode_mix_launcher) |
| endif () |
| restore_nonclient_flags(scheduler_launcher) |
| restore_nonclient_flags(drmemtrace_simulator) |
| restore_nonclient_flags(drmemtrace_reuse_distance) |
| restore_nonclient_flags(drmemtrace_histogram) |
| restore_nonclient_flags(drmemtrace_reuse_time) |
| restore_nonclient_flags(drmemtrace_basic_counts) |
| restore_nonclient_flags(drmemtrace_opcode_mix) |
| restore_nonclient_flags(drmemtrace_syscall_mix) |
| restore_nonclient_flags(drmemtrace_view) |
| restore_nonclient_flags(drmemtrace_func_view) |
| restore_nonclient_flags(drmemtrace_record_filter) |
| restore_nonclient_flags(drmemtrace_analyzer) |
| restore_nonclient_flags(drmemtrace_invariant_checker) |
| restore_nonclient_flags(drmemtrace_schedule_stats) |
| |
| # We need to pass /EHsc and we pull in libcmtd into drcachesim from a dep lib. |
| # Thus we need to override the /MT with /MTd. |
| # |
| # TODO i#6040: We should add a new configure_original_flage(target) function |
| # which restores the ORIG_ flags at the source level for all other targets |
| # in this file which are neither clients nor use DR standalone. We can then |
| # get rid of add_win32_flags(target) since that just adds a couple of flags |
| # back, and using the ORIG_ values is preferable. |
| macro(add_win32_flags target) |
| if (DEBUG AND NOT DEFINED ${target}_uses_configure) |
| append_property_list(TARGET ${target} COMPILE_DEFINITIONS "DEBUG") |
| endif () |
| if (WIN32) |
| if (DEBUG) |
| get_property(cur TARGET ${target} PROPERTY COMPILE_FLAGS) |
| string(REPLACE "/MT " "" cur "${cur}") # Avoid override warning. |
| set_target_properties(${target} PROPERTIES COMPILE_FLAGS "${cur} /EHsc /MTd /Zi") |
| append_property_string(TARGET ${target} LINK_FLAGS "/nodefaultlib:libcmt") |
| else () |
| append_property_string(TARGET ${target} COMPILE_FLAGS "/EHsc /MT") |
| endif () |
| else () |
| # Work around configure_DynamoRIO_static() clobbering flags by re-adding |
| # the important ones for our tests, so they can include our headers |
| # with C++11-isms. |
| get_property(cur TARGET ${target} PROPERTY COMPILE_FLAGS) |
| if (NOT cur MATCHES "-std=") |
| append_property_string(TARGET ${target} COMPILE_FLAGS "-std=c++11") |
| endif () |
| if (DEBUG AND NOT cur MATCHES "-g") |
| # We can't use restore_nonclient_flags() for clients, so we manually re-add debug |
| # here. |
| append_property_string(TARGET ${target} COMPILE_FLAGS "-g") |
| endif () |
| if (APPLE) |
| # Match the core/ flags. |
| append_property_string(TARGET ${target} |
| COMPILE_FLAGS "-mmacosx-version-min=${OLDEST_OSX_SUPPPORTED}") |
| endif () |
| endif () |
| endmacro () |
| |
| add_win32_flags(drmemtrace_launcher) |
| add_win32_flags(drraw2trace) |
| add_win32_flags(histogram_launcher) |
| add_win32_flags(record_filter_launcher) |
| add_win32_flags(prefetch_analyzer_launcher) |
| add_win32_flags(drmemtrace_raw2trace) |
| if (NOT AARCH64 AND NOT APPLE) |
| add_win32_flags(opcode_mix_launcher) |
| endif () |
| add_win32_flags(scheduler_launcher) |
| add_win32_flags(drmemtrace_simulator) |
| add_win32_flags(drmemtrace_reuse_distance) |
| add_win32_flags(drmemtrace_histogram) |
| add_win32_flags(drmemtrace_reuse_time) |
| add_win32_flags(drmemtrace_basic_counts) |
| add_win32_flags(drmemtrace_opcode_mix) |
| add_win32_flags(drmemtrace_syscall_mix) |
| add_win32_flags(drmemtrace_view) |
| add_win32_flags(drmemtrace_func_view) |
| add_win32_flags(drmemtrace_record_filter) |
| add_win32_flags(drmemtrace_analyzer) |
| add_win32_flags(drmemtrace_invariant_checker) |
| add_win32_flags(drmemtrace_schedule_stats) |
| add_win32_flags(directory_iterator) |
| add_win32_flags(test_helpers) |
| if (WIN32 AND DEBUG) |
| get_target_property(sim_srcs drmemtrace_launcher SOURCES) |
| get_target_property(raw2trace_srcs drraw2trace SOURCES) |
| # The client, and our standalone DR users, had /MT added so we need to override. |
| # XXX: solve this by avoiding the /MT in the first place! |
| foreach (src ${client_and_sim_srcs} ${sim_srcs} ${raw2trace_srcs} tools/opcode_mix.cpp tools/view.cpp) |
| get_property(cur SOURCE ${src} PROPERTY COMPILE_FLAGS) |
| string(REPLACE "/MT " "" cur ${cur}) # Avoid override warning. |
| set_source_files_properties(${src} COMPILE_FLAGS "${cur} /MTd") |
| endforeach () |
| endif () |
| |
| place_shared_lib_in_lib_dir(drmemtrace) |
| |
| add_dependencies(drmemtrace_launcher api_headers) |
| |
| # Provide a hint for how to use the client |
| if (NOT DynamoRIO_INTERNAL OR NOT "${CMAKE_GENERATOR}" MATCHES "Ninja") |
| add_custom_command(TARGET drmemtrace |
| POST_BUILD |
| COMMAND ${CMAKE_COMMAND} |
| ARGS -E echo "Usage: pass to drconfig or drrun: -t drmemtrace" |
| VERBATIM) |
| endif () |
| |
| install_target(drmemtrace_launcher ${INSTALL_CLIENTS_BIN}) |
| install_target(drraw2trace ${INSTALL_CLIENTS_BIN}) |
| |
| set(INSTALL_DRCACHESIM_CONFIG ${INSTALL_CLIENTS_BASE}) |
| |
| function (write_config_file dst bindir libdir) |
| # We include the alternate-bitwidth path, though it won't be there for |
| # a single build dir and such a child will have a fatal error. |
| if (X64) |
| string(REPLACE "lib64" "lib32" alt_libdir ${libdir}) |
| set(CUR_BIT "64") |
| set(ALT_BIT "32") |
| else () |
| set(CUR_BIT "32") |
| set(ALT_BIT "64") |
| string(REPLACE "lib64" "lib32" alt_libdir ${libdir}) |
| endif () |
| if (DEBUG) |
| set(debugopt "TOOL_OP=-dr_debug") |
| else () |
| set(debugopt "") |
| endif () |
| file(GENERATE OUTPUT ${dst} CONTENT |
| "# drmemtrace tracing and analysis tool config file.\n\ |
| FRONTEND_REL=${bindir}/$<TARGET_FILE_NAME:drmemtrace_launcher>\n\ |
| TOOL_OP=-dr\n\ |
| TOOL_OP_DR_PATH\n\ |
| TOOL_OP_DR_BUNDLE=-dr_ops\n\ |
| TOOL_OP=-tracer\n\ |
| CLIENT${CUR_BIT}_REL=${libdir}/${LIB_PFX}drmemtrace${LIB_EXT}\n\ |
| TOOL_OP=-tracer_alt\n\ |
| CLIENT${ALT_BIT}_REL=${alt_libdir}/${LIB_PFX}drmemtrace${LIB_EXT}\n\ |
| ${debugopt}\n") |
| endfunction () |
| |
| if (X64) |
| set(CONFIG_INSTALL ${PROJECT_BINARY_DIR}/drmemtrace.drrun64) |
| set(CONFIG_BUILD ${PROJECT_BINARY_DIR}/tools/drmemtrace.drrun64) |
| # Support the older launcher name (i#6660 applied s/drcachesim/drmemtrace/ as |
| # "drcachesim" is just one tool and we use "drmemtrace" to refer to the framework). |
| set(CONFIG_OLD_INSTALL ${PROJECT_BINARY_DIR}/drcachesim.drrun64) |
| set(CONFIG_OLD_BUILD ${PROJECT_BINARY_DIR}/tools/drcachesim.drrun64) |
| else (X64) |
| set(CONFIG_INSTALL ${PROJECT_BINARY_DIR}/drmemtrace.drrun32) |
| set(CONFIG_BUILD ${PROJECT_BINARY_DIR}/tools/drmemtrace.drrun32) |
| set(CONFIG_OLD_INSTALL ${PROJECT_BINARY_DIR}/drcachesim.drrun32) |
| set(CONFIG_OLD_BUILD ${PROJECT_BINARY_DIR}/tools/drcachesim.drrun32) |
| endif (X64) |
| |
| set(BUILD_CLIENTS_BIN clients/${INSTALL_BIN}) |
| set(BUILD_CLIENTS_LIB clients/${INSTALL_LIB}) |
| |
| write_config_file(${CONFIG_INSTALL} ${INSTALL_CLIENTS_BIN} ${INSTALL_CLIENTS_LIB}) |
| write_config_file(${CONFIG_BUILD} ${BUILD_CLIENTS_BIN} ${BUILD_CLIENTS_LIB}) |
| # Support the older launcher name (i#6660 renamed it). |
| write_config_file(${CONFIG_OLD_INSTALL} ${INSTALL_CLIENTS_BIN} ${INSTALL_CLIENTS_LIB}) |
| write_config_file(${CONFIG_OLD_BUILD} ${BUILD_CLIENTS_BIN} ${BUILD_CLIENTS_LIB}) |
| |
| DR_install(FILES "${CONFIG_INSTALL}" DESTINATION ${INSTALL_DRCACHESIM_CONFIG}) |
| register_tool_file("drmemtrace") |
| # Support the older launcher name (i#6660 renamed it). |
| DR_install(FILES "${CONFIG_OLD_INSTALL}" DESTINATION ${INSTALL_DRCACHESIM_CONFIG}) |
| register_tool_file("drcachesim") |
| |
| if (WIN32) |
| # drcachesim needs these dlls (i#1737 would eliminate this) |
| DynamoRIO_get_full_path(injectlib_loc drinjectlib "${location_suffix}") |
| DR_install(FILES "${injectlib_loc}" DESTINATION "${INSTALL_CLIENTS_BIN}") |
| DynamoRIO_get_full_path(configlib_loc drconfiglib "${location_suffix}") |
| DR_install(FILES "${configlib_loc}" DESTINATION "${INSTALL_CLIENTS_BIN}") |
| DynamoRIO_get_full_path(drlib_loc dynamorio "${location_suffix}") |
| DR_install(FILES "${drlib_loc}" DESTINATION "${INSTALL_CLIENTS_BIN}") |
| add_custom_command(TARGET drmemtrace_launcher POST_BUILD |
| COMMAND ${CMAKE_COMMAND} ARGS -E copy ${DR_LIBRARY_BASE_DIRECTORY}/drinjectlib.dll |
| ${PROJECT_BINARY_DIR}/${BUILD_CLIENTS_BIN}/drinjectlib.dll VERBATIM) |
| add_custom_command(TARGET drmemtrace_launcher POST_BUILD |
| COMMAND ${CMAKE_COMMAND} ARGS -E copy ${DR_LIBRARY_BASE_DIRECTORY}/drconfiglib.dll |
| ${PROJECT_BINARY_DIR}/${BUILD_CLIENTS_BIN}/drconfiglib.dll VERBATIM) |
| # Avoid dueling racy copies (i#4668). |
| add_dependencies(drmemtrace_launcher client_dr_copy) |
| endif () |
| |
| add_subdirectory(tools/external) |
| |
| ################################################## |
| # Test executables |
| # |
| # We build larger executables here. All tests are added in suite/tests/ except unit tests. |
| # Be sure to give the targets qualified test names ("tool.drcache*..."). |
| |
| # XXX: Try to add a macro add_drcachesim_test() to share common pieces |
| # of these executables. |
| |
| if (BUILD_TESTS) |
| add_executable(tool.reuse_distance.unit_tests tests/reuse_distance_test.cpp) |
| target_link_libraries(tool.reuse_distance.unit_tests drmemtrace_reuse_distance |
| drmemtrace_static test_helpers) |
| add_win32_flags(tool.reuse_distance.unit_tests) |
| add_test(NAME tool.reuse_distance.unit_tests |
| COMMAND tool.reuse_distance.unit_tests) |
| set_tests_properties(tool.reuse_distance.unit_tests PROPERTIES TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcachesim.unit_tests tests/drcachesim_unit_tests.cpp |
| tests/cache_replacement_policy_unit_test.cpp tests/config_reader_unit_test.cpp) |
| target_link_libraries(tool.drcachesim.unit_tests drmemtrace_simulator |
| # Link test_helpers first, or else the zlib main takes over. |
| drmemtrace_static drmemtrace_analyzer test_helpers ${zlib_libs}) |
| add_win32_flags(tool.drcachesim.unit_tests) |
| add_test(NAME tool.drcachesim.unit_tests |
| COMMAND tool.drcachesim.unit_tests |
| ${PROJECT_SOURCE_DIR}/clients/drcachesim/tests) |
| set_tests_properties(tool.drcachesim.unit_tests PROPERTIES TIMEOUT ${test_seconds}) |
| |
| # FIXME i#3544 Make raw2trace_unit_tests compilable in RISCV64. |
| if (NOT RISCV64) |
| add_executable(tool.drcacheoff.raw2trace_unit_tests tests/raw2trace_unit_tests.cpp) |
| configure_DynamoRIO_standalone(tool.drcacheoff.raw2trace_unit_tests) |
| add_win32_flags(tool.drcacheoff.raw2trace_unit_tests) |
| target_link_libraries(tool.drcacheoff.raw2trace_unit_tests drmemtrace_raw2trace |
| test_helpers) |
| use_DynamoRIO_extension(tool.drcacheoff.raw2trace_unit_tests drdecode) |
| use_DynamoRIO_extension(tool.drcacheoff.raw2trace_unit_tests drcovlib_static) |
| add_test(NAME tool.drcacheoff.raw2trace_unit_tests |
| COMMAND tool.drcacheoff.raw2trace_unit_tests) |
| set_tests_properties(tool.drcacheoff.raw2trace_unit_tests PROPERTIES TIMEOUT |
| ${test_seconds}) |
| endif () |
| |
| add_executable(tool.scheduler.unit_tests tests/scheduler_unit_tests.cpp) |
| target_link_libraries(tool.scheduler.unit_tests drmemtrace_analyzer test_helpers) |
| add_win32_flags(tool.scheduler.unit_tests) |
| if (WIN32) |
| # We have a dup symbol from linking in DR. Linking libc first doesn't help. |
| append_property_string(TARGET tool.scheduler.unit_tests LINK_FLAGS |
| "/force:multiple") |
| endif () |
| configure_DynamoRIO_standalone(tool.scheduler.unit_tests) |
| add_test(NAME tool.scheduler.unit_tests |
| COMMAND tool.scheduler.unit_tests |
| ${PROJECT_SOURCE_DIR}/clients/drcachesim/tests) |
| set_tests_properties(tool.scheduler.unit_tests PROPERTIES TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcacheoff.flexible_queue_tests tests/flexible_queue_tests.cpp) |
| add_win32_flags(tool.drcacheoff.flexible_queue_tests) |
| target_link_libraries(tool.drcacheoff.flexible_queue_tests test_helpers) |
| add_test(NAME tool.drcacheoff.flexible_queue_tests |
| COMMAND tool.drcacheoff.flexible_queue_tests) |
| set_tests_properties(tool.drcacheoff.flexible_queue_tests PROPERTIES TIMEOUT |
| ${test_seconds}) |
| |
| add_executable(tool.drcachesim.core_sharded tests/core_sharded_test.cpp |
| # XXX: Better to put these into libraries but that requires a bigger cleanup: |
| analyzer_multi.cpp ${client_and_sim_srcs} reader/ipc_reader.cpp |
| ${loader_srcs}) |
| target_link_libraries(tool.drcachesim.core_sharded test_helpers |
| drmemtrace_raw2trace drmemtrace_simulator drmemtrace_reuse_distance |
| drmemtrace_histogram drmemtrace_reuse_time drmemtrace_basic_counts |
| drmemtrace_opcode_mix drmemtrace_syscall_mix drmemtrace_view drmemtrace_func_view |
| drmemtrace_raw2trace directory_iterator drmemtrace_invariant_checker |
| drmemtrace_schedule_stats drmemtrace_analyzer drmemtrace_record_filter) |
| if (UNIX) |
| target_link_libraries(tool.drcachesim.core_sharded dl) |
| endif () |
| add_win32_flags(tool.drcachesim.core_sharded) |
| if (WIN32) |
| # We have a dup symbol from linking in DR. Linking libc first doesn't help. |
| append_property_string(TARGET tool.drcachesim.core_sharded LINK_FLAGS |
| "/force:multiple") |
| endif () |
| configure_DynamoRIO_standalone(tool.drcachesim.core_sharded) |
| use_DynamoRIO_extension(tool.drcachesim.core_sharded droption) |
| use_DynamoRIO_extension(tool.drcachesim.core_sharded drreg_static) |
| use_DynamoRIO_extension(tool.drcachesim.core_sharded drcovlib_static) |
| use_DynamoRIO_extension(tool.drcachesim.core_sharded drutil_static) |
| add_test(NAME tool.drcachesim.core_sharded |
| COMMAND tool.drcachesim.core_sharded |
| ${PROJECT_SOURCE_DIR}/clients/drcachesim/tests) |
| set_tests_properties(tool.drcachesim.core_sharded PROPERTIES TIMEOUT ${test_seconds}) |
| |
| # XXX i#5675: add tests for other environments. Currently, the repository does not have |
| # a checked-in post-processed trace for x86-32 or AArchXX. We are also limited to |
| # the old format due to missing zip support so we can't use the new threadsig.x64. |
| if (X86 AND X64 AND ZLIB_FOUND) |
| set(trace_dir |
| "${PROJECT_SOURCE_DIR}/clients/drcachesim/tests/drmemtrace.legacy-for-record-filter.x64.tracedir") |
| set(tmp_output_dir ${PROJECT_BINARY_DIR}/record_filter_tests_tmp_output) |
| file(MAKE_DIRECTORY ${tmp_output_dir}) |
| add_executable(tool.drcacheoff.record_filter_unit_tests |
| tests/record_filter_unit_tests.cpp) |
| configure_DynamoRIO_standalone(tool.drcacheoff.record_filter_unit_tests) |
| target_link_libraries(tool.drcacheoff.record_filter_unit_tests drmemtrace_analyzer |
| drmemtrace_basic_counts drmemtrace_record_filter test_helpers) |
| add_test(NAME tool.drcacheoff.record_filter_unit_tests |
| COMMAND tool.drcacheoff.record_filter_unit_tests --trace_dir |
| ${trace_dir} --tmp_output_dir ${tmp_output_dir}) |
| set_tests_properties(tool.drcacheoff.record_filter_unit_tests PROPERTIES TIMEOUT |
| ${test_seconds}) |
| endif () |
| |
| add_executable(tool.drcacheoff.trace_interval_analysis_unit_tests |
| tests/trace_interval_analysis_unit_tests.cpp) |
| add_win32_flags(tool.drcacheoff.trace_interval_analysis_unit_tests) |
| target_link_libraries(tool.drcacheoff.trace_interval_analysis_unit_tests |
| drmemtrace_analyzer drdecode test_helpers) |
| add_test(NAME tool.drcacheoff.trace_interval_analysis_unit_tests |
| COMMAND tool.drcacheoff.trace_interval_analysis_unit_tests) |
| set_tests_properties(tool.drcacheoff.trace_interval_analysis_unit_tests PROPERTIES |
| TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcacheoff.analysis_unit_tests tests/analysis_unit_tests.cpp) |
| add_win32_flags(tool.drcacheoff.analysis_unit_tests) |
| target_link_libraries(tool.drcacheoff.analysis_unit_tests |
| drmemtrace_analyzer test_helpers) |
| add_test(NAME tool.drcacheoff.analysis_unit_tests |
| COMMAND tool.drcacheoff.analysis_unit_tests) |
| set_tests_properties(tool.drcacheoff.analysis_unit_tests PROPERTIES |
| TIMEOUT ${test_seconds}) |
| |
| if (DR_HOST_AARCH64 AND NOT APPLE) # i#1997: static DR on Mac NYI. |
| add_executable(tool.drcacheoff.burst_aarch64_sys tests/burst_aarch64_sys.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_aarch64_sys) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_aarch64_sys drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_aarch64_sys drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_aarch64_sys) |
| add_win32_flags(tool.drcacheoff.burst_aarch64_sys) |
| endif () |
| |
| # XXX i#1997: dynamorio_static is not supported on Mac yet |
| # FIXME i#2949: gcc 7.3 fails to link certain configs |
| # TODO i#3544: Port tests to RISC-V 64 |
| if (NOT APPLE AND NOT DISABLE_FOR_BUG_2949 AND NOT RISCV64) |
| # Tests for the cache miss analyzer. |
| add_executable(tool.drcachesim.miss_analyzer_unit_test tests/cache_miss_analyzer_test.cpp) |
| target_link_libraries(tool.drcachesim.miss_analyzer_unit_test drmemtrace_simulator |
| drmemtrace_static drmemtrace_analyzer test_helpers ${zlib_libs}) |
| add_win32_flags(tool.drcachesim.miss_analyzer_unit_test) |
| add_test(NAME tool.drcachesim.miss_analyzer_unit_test |
| COMMAND tool.drcachesim.miss_analyzer_unit_test) |
| set_tests_properties(tool.drcachesim.miss_analyzer_unit_test PROPERTIES |
| TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcachesim.invariant_checker_test tests/invariant_checker_test.cpp) |
| configure_DynamoRIO_standalone(tool.drcachesim.invariant_checker_test) |
| add_win32_flags(tool.drcachesim.invariant_checker_test) |
| target_link_libraries(tool.drcachesim.invariant_checker_test |
| drmemtrace_static drmemtrace_analyzer drmemtrace_invariant_checker test_helpers) |
| add_test(NAME tool.drcachesim.invariant_checker_test |
| COMMAND tool.drcachesim.invariant_checker_test) |
| set_tests_properties(tool.drcachesim.invariant_checker_test PROPERTIES |
| TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcachesim.schedule_stats_test tests/schedule_stats_test.cpp) |
| configure_DynamoRIO_standalone(tool.drcachesim.schedule_stats_test) |
| add_win32_flags(tool.drcachesim.schedule_stats_test) |
| target_link_libraries(tool.drcachesim.schedule_stats_test drmemtrace_schedule_stats |
| drmemtrace_static drmemtrace_analyzer test_helpers) |
| add_test(NAME tool.drcachesim.schedule_stats_test |
| COMMAND tool.drcachesim.schedule_stats_test) |
| set_tests_properties(tool.drcachesim.schedule_stats_test PROPERTIES |
| TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcacheoff.view_test tests/view_test.cpp reader/file_reader.cpp) |
| configure_DynamoRIO_standalone(tool.drcacheoff.view_test) |
| add_win32_flags(tool.drcacheoff.view_test) |
| target_link_libraries(tool.drcacheoff.view_test drmemtrace_view drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers) |
| use_DynamoRIO_extension(tool.drcacheoff.view_test drreg_static) |
| use_DynamoRIO_extension(tool.drcacheoff.view_test drcovlib_static) |
| use_DynamoRIO_extension(tool.drcacheoff.view_test drdecode) |
| add_test(NAME tool.drcacheoff.view_test |
| COMMAND tool.drcacheoff.view_test) |
| set_tests_properties(tool.drcacheoff.view_test PROPERTIES TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcachesim.histogram_test |
| tools/histogram.cpp tests/histogram_test.cpp) |
| target_link_libraries(tool.drcachesim.histogram_test |
| drmemtrace_static drmemtrace_analyzer test_helpers) |
| add_win32_flags(tool.drcachesim.histogram_test) |
| add_test(NAME tool.drcachesim.histogram_test |
| COMMAND tool.drcachesim.histogram_test) |
| set_tests_properties(tool.drcachesim.histogram_test PROPERTIES |
| TIMEOUT ${test_seconds}) |
| |
| add_executable(tool.drcacheoff.burst_static tests/burst_static.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_static) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_static drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_static test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_static) |
| |
| add_executable(tool.drcacheoff.burst_replace tests/burst_replace.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_replace) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_replace drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_replace drmemtrace_raw2trace |
| test_helpers) |
| if (WIN32) |
| # burst_replace is unusual in cramming the tracer and post-processor into the |
| # same binary and we need some massaging to avoid duplicate symbol link errors. |
| target_link_libraries(tool.drcacheoff.burst_replace ${static_libc}) |
| endif () |
| add_win32_flags(tool.drcacheoff.burst_replace) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_replace) |
| use_DynamoRIO_extension(tool.drcacheoff.burst_replace drcovlib_static) |
| |
| add_executable(tool.drcacheoff.burst_replaceall tests/burst_replaceall.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_replaceall) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_replaceall drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_replaceall test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_replaceall) |
| use_DynamoRIO_extension(tool.drcacheoff.burst_replaceall drcontainers) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_replaceall) |
| link_with_pthread(tool.drcacheoff.burst_replaceall) |
| |
| add_executable(tool.drcacheoff.burst_malloc tests/burst_malloc.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_malloc) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_malloc drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_malloc drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers) |
| if (WIN32) |
| # Just like for burst_replace + burst_futex, linking together takes effort. |
| target_link_libraries(tool.drcacheoff.burst_malloc ${static_libc}) |
| endif () |
| add_win32_flags(tool.drcacheoff.burst_malloc) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_malloc) |
| if (UNIX) |
| append_property_string(SOURCE tests/burst_malloc.cpp |
| # Allow our different-arg-count aliases. |
| COMPILE_FLAGS "-Wno-attribute-alias") |
| endif () |
| |
| add_executable(tool.drcacheoff.burst_reattach tests/burst_reattach.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_reattach) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_reattach drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_reattach test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_reattach) |
| |
| add_executable(tool.drcacheoff.burst_threads tests/burst_threads.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_threads) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_threads drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_threads test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_threads) |
| link_with_pthread(tool.drcacheoff.burst_threads) |
| |
| add_executable(tool.drcacheoff.burst_threadfilter tests/burst_threadfilter.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_threadfilter) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_threadfilter drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_threadfilter test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_threadfilter) |
| link_with_pthread(tool.drcacheoff.burst_threadfilter) |
| |
| if (X64 AND UNIX) |
| add_executable(tool.drcacheoff.burst_noreach tests/burst_noreach.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_noreach) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_noreach drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_noreach test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_noreach) |
| endif () |
| if (LINUX) # Uses mremap. |
| add_executable(tool.drcacheoff.burst_maps tests/burst_maps.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_maps) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_maps drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_maps test_helpers) |
| add_win32_flags(tool.drcacheoff.burst_maps) |
| endif () |
| if (LINUX) |
| add_executable(tool.drcacheoff.burst_syscall_inject tests/burst_syscall_inject.cpp) |
| configure_DynamoRIO_static(tool.drcacheoff.burst_syscall_inject) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_syscall_inject drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_syscall_inject drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers drmemtrace_basic_counts) |
| add_win32_flags(tool.drcacheoff.burst_syscall_inject) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_syscall_inject) |
| endif () |
| |
| if (UNIX) |
| if (X86 AND NOT APPLE) # This test is x86-specific. |
| # uses ptrace and looks for linux-specific syscalls |
| add_executable(tool.drcacheoff.raw2trace_io tests/raw2trace_io.cpp |
| tracer/instru.cpp |
| tracer/instru_online.cpp) |
| configure_DynamoRIO_standalone(tool.drcacheoff.raw2trace_io) |
| add_win32_flags(tool.drcacheoff.raw2trace_io) |
| target_link_libraries(tool.drcacheoff.raw2trace_io drmemtrace_raw2trace |
| test_helpers) |
| use_DynamoRIO_extension(tool.drcacheoff.raw2trace_io droption) |
| target_link_libraries(tool.drcacheoff.raw2trace_io drdecode) |
| use_DynamoRIO_extension(tool.drcacheoff.raw2trace_io drcovlib_static) |
| # Because we're leveraging instru_online code we have to link with drutil: |
| use_DynamoRIO_extension(tool.drcacheoff.raw2trace_io drutil_static) |
| endif () |
| |
| # FIXME i#2099: the weak symbol is not supported on Windows. |
| add_executable(tool.drcacheoff.burst_client tests/burst_static.cpp) |
| append_property_list(TARGET tool.drcacheoff.burst_client |
| COMPILE_DEFINITIONS "TEST_APP_DR_CLIENT_MAIN") |
| configure_DynamoRIO_static(tool.drcacheoff.burst_client) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_client drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_client test_helpers) |
| # A nop, keep it for the future Windows support. |
| add_win32_flags(tool.drcacheoff.burst_client) |
| endif () |
| |
| if (NOT RISCV64) # TODO i#3544: Port tests to RISC-V 64 |
| set(source_abs "${CMAKE_CURRENT_SOURCE_DIR}/tests/burst_traceopts.cpp") |
| set(asm_deps |
| "${PROJECT_SOURCE_DIR}/core/arch/asm_defines.asm" |
| "${PROJECT_BINARY_DIR}/configure.h") |
| include_directories(${PROJECT_SOURCE_DIR}/core/arch) # asm_defines.asm |
| add_split_asm_target("${source_abs}" asm_source gen_asm_tgt |
| "_asm" "" "${asm_deps}") |
| add_executable(tool.drcacheoff.burst_traceopts ${source_abs} |
| ${asm_source} |
| # This test includes related unit tests for classes used for trace opts. |
| "${CMAKE_CURRENT_SOURCE_DIR}/tests/reg_id_set_unit_tests.cpp") |
| configure_DynamoRIO_static(tool.drcacheoff.burst_traceopts) |
| if ("${CMAKE_GENERATOR}" MATCHES "Visual Studio") |
| add_dependencies(tool.drcacheoff.burst_traceopts ${gen_asm_tgt}) |
| endif () |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_traceopts drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_traceopts drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers) |
| if (WIN32) |
| # Just like for burst_replace, linking everything together takes effort. |
| target_link_libraries(tool.drcacheoff.burst_traceopts ${static_libc}) |
| endif () |
| set(tool.drcacheoff.burst_traceopts_uses_configure ON) # Avoid dup DEBUG. |
| add_win32_flags(tool.drcacheoff.burst_traceopts) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_traceopts) |
| use_DynamoRIO_extension(tool.drcacheoff.burst_traceopts drcovlib_static) |
| endif (NOT RISCV64) |
| |
| if (NOT RISCV64) # TODO i#3544: Port tests to RISC-V 64 |
| add_executable(tool.drcacheoff.windows-timestamps |
| "${CMAKE_CURRENT_SOURCE_DIR}/tests/window_test.cpp") |
| configure_DynamoRIO_static(tool.drcacheoff.windows-timestamps) |
| use_DynamoRIO_static_client(tool.drcacheoff.windows-timestamps drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.windows-timestamps drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers) |
| if (WIN32) |
| # Just like for burst_replace, linking everything together takes effort. |
| target_link_libraries(tool.drcacheoff.windows-timestamps ${static_libc}) |
| endif () |
| add_win32_flags(tool.drcacheoff.windows-timestamps) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.windows-timestamps) |
| endif (NOT RISCV64) |
| |
| if (LINUX) # Futex is Linux-only. |
| add_executable(tool.drcacheoff.burst_futex |
| "${CMAKE_CURRENT_SOURCE_DIR}/tests/burst_futex.cpp") |
| configure_DynamoRIO_static(tool.drcacheoff.burst_futex) |
| use_DynamoRIO_static_client(tool.drcacheoff.burst_futex drmemtrace_static) |
| target_link_libraries(tool.drcacheoff.burst_futex drmemtrace_raw2trace |
| drmemtrace_analyzer test_helpers) |
| if (WIN32) |
| # Just like for burst_replace, linking everything together takes effort. |
| target_link_libraries(tool.drcacheoff.burst_futex ${static_libc}) |
| endif () |
| add_win32_flags(tool.drcacheoff.burst_futex) |
| use_DynamoRIO_drmemtrace_tracer(tool.drcacheoff.burst_futex) |
| endif () |
| |
| endif () |
| |
| if (X86 AND X64 AND ZIP_FOUND) |
| # XXX i#5538: Add trace files for other arches. |
| set(zip_path |
| "${PROJECT_SOURCE_DIR}/clients/drcachesim/tests/drmemtrace.allasm_x86_64.trace.zip") |
| add_executable(tool.drcacheoff.skip_unit_tests tests/skip_unit_tests.cpp) |
| configure_DynamoRIO_standalone(tool.drcacheoff.skip_unit_tests) |
| target_link_libraries(tool.drcacheoff.skip_unit_tests drmemtrace_analyzer |
| drmemtrace_view drmemtrace_raw2trace test_helpers) |
| add_win32_flags(tool.drcacheoff.skip_unit_tests) |
| use_DynamoRIO_extension(tool.drcacheoff.skip_unit_tests drreg_static) |
| use_DynamoRIO_extension(tool.drcacheoff.skip_unit_tests drcovlib_static) |
| use_DynamoRIO_extension(tool.drcacheoff.skip_unit_tests drdecode) |
| add_test(NAME tool.drcacheoff.skip_unit_tests |
| COMMAND tool.drcacheoff.skip_unit_tests --trace_file ${zip_path}) |
| set_tests_properties(tool.drcacheoff.skip_unit_tests PROPERTIES |
| TIMEOUT ${test_seconds}) |
| endif () |
| |
| add_executable(drmemtrace_shared_raw2trace_tests |
| tests/drmemtrace_shared_raw2trace_tests.cpp) |
| configure_DynamoRIO_standalone(drmemtrace_shared_raw2trace_tests) |
| # This should not include raw2trace code. We have a check in add_drmemtrace |
| # that would fail if drmemtrace_static includes raw2trace.cpp. |
| target_link_libraries(drmemtrace_shared_raw2trace_tests drmemtrace_static |
| test_helpers) |
| add_win32_flags(drmemtrace_shared_raw2trace_tests) |
| add_test(NAME drmemtrace_shared_raw2trace_tests |
| COMMAND drmemtrace_shared_raw2trace_tests) |
| set_tests_properties(drmemtrace_shared_raw2trace_tests PROPERTIES |
| TIMEOUT ${test_seconds}) |
| endif () |
| |
| ################################################## |
| # Documentation |
| |
| # We auto-generate the list of options in the html docs via this helper app. |
| # i#1730: We cannot execute this when cross-compiling so for now we generate |
| # docs without this list (better than no docs at all). |
| add_executable(drcachesim_ops |
| optionlist.cpp |
| common/options.cpp) |
| set_target_properties(drcachesim_ops PROPERTIES COMPILE_FLAGS "${ORIG_CMAKE_CXX_FLAGS}") |
| add_win32_flags(drcachesim_ops) |
| use_DynamoRIO_extension(drcachesim_ops droption) |
| add_dependencies(drcachesim_ops api_headers) |
| |
| # We then have to insert it into the doxygen files at build time: |
| set(srcdoc ${CMAKE_CURRENT_SOURCE_DIR}/docs/drcachesim.dox.in) |
| set(gendoc ${CMAKE_CURRENT_BINARY_DIR}/docs/drcachesim.dox) |
| set(doctgt drcachesim_docs) |
| configure_file(${CMAKE_CURRENT_SOURCE_DIR}/docs/new-features-encodings-seek.pdf |
| ${CMAKE_CURRENT_BINARY_DIR}/docs/new-features-encodings-seek.pdf COPYONLY) |
| |
| get_property(dox_extras GLOBAL PROPERTY DynamoRIO_dox_extras) |
| set_property(GLOBAL PROPERTY DynamoRIO_dox_extras ${dox_extras} ${gendoc}) |
| |
| get_property(dox_targets GLOBAL PROPERTY DynamoRIO_dox_targets) |
| set_property(GLOBAL PROPERTY DynamoRIO_dox_targets ${dox_targets} ${doctgt}) |
| |
| add_custom_target(${doctgt} DEPENDS ${gendoc}) |
| add_custom_command( |
| OUTPUT ${gendoc} |
| DEPENDS ${srcdoc} |
| drcachesim_ops |
| common/options.h |
| COMMAND ${CMAKE_COMMAND} |
| ARGS -D src=${srcdoc} |
| -D dst=${gendoc} |
| -D CMAKE_CROSSCOMPILING=${CMAKE_CROSSCOMPILING} |
| -D prog=$<TARGET_FILE:drcachesim_ops> |
| -P ${CMAKE_CURRENT_SOURCE_DIR}/../common/gendocs.cmake |
| VERBATIM) |
| |
| # propagate to parent dir |
| set(exported_targets_append "${exported_targets_append}" PARENT_SCOPE) |
| |