Turn On -DLIBCXX_ENABLE_BENCHMARKS by default.
This patch enables the `cxx-benchmarks` target by default. Note that the target still has to be manually invoked since it isn't included in the default 'make' rule. This patch also gets the benchmarks building w/ GCC. The build previously required the '-stdlib=libc++' flag but upstream patches to Google Benchmark now allow the library to build w/ libc++ and GCC. These changes should make the benchmarks easier to build and test. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@279999 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -57,7 +57,7 @@ option(LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY "Build libc++experimental.a" ON)
|
|||||||
option(LIBCXX_ENABLE_FILESYSTEM
|
option(LIBCXX_ENABLE_FILESYSTEM
|
||||||
"Build filesystem as part of libc++experimental.a" ${LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY})
|
"Build filesystem as part of libc++experimental.a" ${LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY})
|
||||||
option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS})
|
option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS})
|
||||||
option(LIBCXX_INCLUDE_BENCHMARKS "Build the libc++ benchmarks and their dependancies" OFF)
|
option(LIBCXX_INCLUDE_BENCHMARKS "Build the libc++ benchmarks and their dependancies" ON)
|
||||||
option(LIBCXX_BUILD_BENCHMARK_NATIVE_STDLIB "Build the benchmarks against the native STL" OFF)
|
option(LIBCXX_BUILD_BENCHMARK_NATIVE_STDLIB "Build the benchmarks against the native STL" OFF)
|
||||||
option(LIBCXX_INCLUDE_DOCS "Build the libc++ documentation." ${LLVM_INCLUDE_DOCS})
|
option(LIBCXX_INCLUDE_DOCS "Build the libc++ documentation." ${LLVM_INCLUDE_DOCS})
|
||||||
set(LIBCXX_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING
|
set(LIBCXX_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING
|
||||||
|
|||||||
@@ -4,21 +4,20 @@ include(CheckCXXCompilerFlag)
|
|||||||
#==============================================================================
|
#==============================================================================
|
||||||
# Build Google Benchmark for libc++
|
# Build Google Benchmark for libc++
|
||||||
#==============================================================================
|
#==============================================================================
|
||||||
check_cxx_compiler_flag(-stdlib=libc++ LIBCXX_HAS_NO_STDLIB_LIBCXX_FLAG)
|
|
||||||
if (NOT LIBCXX_HAS_NO_STDLIB_LIBCXX_FLAG)
|
|
||||||
message(FATAL "Benchmark requires support for the -stdlib=libc++ flag")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(BENCHMARK_LIBCXX_COMPILE_FLAGS
|
set(BENCHMARK_LIBCXX_COMPILE_FLAGS
|
||||||
-Wno-unused-command-line-argument
|
-Wno-unused-command-line-argument
|
||||||
-nostdinc++
|
-nostdinc++
|
||||||
-cxx-isystem ${LIBCXX_SOURCE_DIR}/include
|
-isystem ${LIBCXX_SOURCE_DIR}/include
|
||||||
-stdlib=libc++)
|
|
||||||
set(BENCHMARK_LIBCXX_LINK_FLAGS
|
|
||||||
-L${LIBCXX_LIBRARY_DIR}
|
-L${LIBCXX_LIBRARY_DIR}
|
||||||
-Wl,-rpath,${LIBCXX_LIBRARY_DIR})
|
-Wl,-rpath,${LIBCXX_LIBRARY_DIR}
|
||||||
|
)
|
||||||
|
if (DEFINED LIBCXX_CXX_ABI_LIBRARY_PATH)
|
||||||
|
list(APPEND BENCHMARK_LIBCXX_COMPILE_FLAGS
|
||||||
|
-L${LIBCXX_CXX_ABI_LIBRARY_PATH}
|
||||||
|
-Wl,-rpath,${LIBCXX_CXX_ABI_LIBRARY_PATH})
|
||||||
|
endif()
|
||||||
split_list(BENCHMARK_LIBCXX_COMPILE_FLAGS)
|
split_list(BENCHMARK_LIBCXX_COMPILE_FLAGS)
|
||||||
split_list(BENCHMARK_LIBCXX_LINK_FLAGS)
|
|
||||||
|
|
||||||
ExternalProject_Add(google-benchmark-libcxx
|
ExternalProject_Add(google-benchmark-libcxx
|
||||||
EXCLUDE_FROM_ALL ON
|
EXCLUDE_FROM_ALL ON
|
||||||
@@ -32,8 +31,7 @@ ExternalProject_Add(google-benchmark-libcxx
|
|||||||
-DCMAKE_BUILD_TYPE:STRING=RELEASE
|
-DCMAKE_BUILD_TYPE:STRING=RELEASE
|
||||||
-DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
-DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
||||||
-DCMAKE_CXX_FLAGS:STRING=${BENCHMARK_LIBCXX_COMPILE_FLAGS}
|
-DCMAKE_CXX_FLAGS:STRING=${BENCHMARK_LIBCXX_COMPILE_FLAGS}
|
||||||
-DCMAKE_SHARED_LINK_FLAGS:STRING=${BENCHMARK_LIBCXX_LINK_FLAGS}
|
-DBENCHMARK_USE_LIBCXX:BOOL=ON
|
||||||
-DCMAKE_EXE_LINK_FLAGS:STRING=${BENCHMARK_LIBCXX_LINK_FLAGS}
|
|
||||||
-DBENCHMARK_ENABLE_TESTING:BOOL=OFF)
|
-DBENCHMARK_ENABLE_TESTING:BOOL=OFF)
|
||||||
|
|
||||||
#==============================================================================
|
#==============================================================================
|
||||||
@@ -45,19 +43,18 @@ if (LIBCXX_BUILD_BENCHMARK_NATIVE_STDLIB)
|
|||||||
PREFIX benchmark-native
|
PREFIX benchmark-native
|
||||||
SOURCE_DIR ${LIBCXX_SOURCE_DIR}/utils/google-benchmark
|
SOURCE_DIR ${LIBCXX_SOURCE_DIR}/utils/google-benchmark
|
||||||
INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native
|
INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native
|
||||||
CMAKE_CACHE_ARGS
|
|
||||||
-DBENCHMARK_ENABLE_TESTING:BOOL=OFF
|
|
||||||
CMAKE_CACHE_ARGS
|
CMAKE_CACHE_ARGS
|
||||||
-DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER}
|
-DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER}
|
||||||
-DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER}
|
-DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER}
|
||||||
-DCMAKE_BUILD_TYPE:STRING=RELEASE
|
-DCMAKE_BUILD_TYPE:STRING=RELEASE
|
||||||
-DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>)
|
-DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
||||||
|
-DBENCHMARK_ENABLE_TESTING:BOOL=OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#==============================================================================
|
#==============================================================================
|
||||||
# Benchmark tests configuration
|
# Benchmark tests configuration
|
||||||
#==============================================================================
|
#==============================================================================
|
||||||
add_custom_target(libcxx-benchmarks)
|
add_custom_target(cxx-benchmarks)
|
||||||
|
|
||||||
set(BENCHMARK_LIBCXX_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-libcxx)
|
set(BENCHMARK_LIBCXX_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-libcxx)
|
||||||
set(BENCHMARK_NATIVE_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native)
|
set(BENCHMARK_NATIVE_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native)
|
||||||
@@ -67,7 +64,7 @@ set(BENCHMARK_TEST_COMPILE_FLAGS
|
|||||||
)
|
)
|
||||||
set(BENCHMARK_TEST_LIBCXX_COMPILE_FLAGS
|
set(BENCHMARK_TEST_LIBCXX_COMPILE_FLAGS
|
||||||
-nostdinc++
|
-nostdinc++
|
||||||
-cxx-isystem ${LIBCXX_SOURCE_DIR}/include
|
-isystem ${LIBCXX_SOURCE_DIR}/include
|
||||||
${BENCHMARK_TEST_COMPILE_FLAGS}
|
${BENCHMARK_TEST_COMPILE_FLAGS}
|
||||||
-Wno-user-defined-literals
|
-Wno-user-defined-literals
|
||||||
)
|
)
|
||||||
@@ -86,7 +83,7 @@ macro(add_benchmark_test name source_file)
|
|||||||
set(libcxx_target ${name}_libcxx)
|
set(libcxx_target ${name}_libcxx)
|
||||||
add_executable(${libcxx_target} EXCLUDE_FROM_ALL ${source_file})
|
add_executable(${libcxx_target} EXCLUDE_FROM_ALL ${source_file})
|
||||||
add_dependencies(${libcxx_target} cxx google-benchmark-libcxx)
|
add_dependencies(${libcxx_target} cxx google-benchmark-libcxx)
|
||||||
add_dependencies(libcxx-benchmarks ${libcxx_target})
|
add_dependencies(cxx-benchmarks ${libcxx_target})
|
||||||
if (LIBCXX_ENABLE_SHARED)
|
if (LIBCXX_ENABLE_SHARED)
|
||||||
target_link_libraries(${libcxx_target} cxx_shared)
|
target_link_libraries(${libcxx_target} cxx_shared)
|
||||||
else()
|
else()
|
||||||
@@ -106,7 +103,7 @@ macro(add_benchmark_test name source_file)
|
|||||||
if (LIBCXX_HAS_PTHREAD_LIB)
|
if (LIBCXX_HAS_PTHREAD_LIB)
|
||||||
target_link_libraries(${native_target} -pthread)
|
target_link_libraries(${native_target} -pthread)
|
||||||
endif()
|
endif()
|
||||||
add_dependencies(libcxx-benchmarks ${native_target})
|
add_dependencies(cxx-benchmarks ${native_target})
|
||||||
set_target_properties(${native_target}
|
set_target_properties(${native_target}
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
OUTPUT_NAME "${name}.native.out"
|
OUTPUT_NAME "${name}.native.out"
|
||||||
@@ -123,7 +120,7 @@ endmacro()
|
|||||||
file(GLOB BENCHMARK_TESTS "*.bench.cpp")
|
file(GLOB BENCHMARK_TESTS "*.bench.cpp")
|
||||||
foreach(test_path ${BENCHMARK_TESTS})
|
foreach(test_path ${BENCHMARK_TESTS})
|
||||||
get_filename_component(test_file "${test_path}" NAME)
|
get_filename_component(test_file "${test_path}" NAME)
|
||||||
message(STATUS "TEST: ${test_file}")
|
message(STATUS "-- Adding Benchmark: ${test_file}")
|
||||||
string(REPLACE ".bench.cpp" "" test_name "${test_file}")
|
string(REPLACE ".bench.cpp" "" test_name "${test_file}")
|
||||||
add_benchmark_test(${test_name} ${test_file})
|
add_benchmark_test(${test_name} ${test_file})
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|||||||
@@ -251,7 +251,7 @@ libc++ Feature Options
|
|||||||
|
|
||||||
.. option:: LIBCXX_INCLUDE_BENCHMARKS:BOOL
|
.. option:: LIBCXX_INCLUDE_BENCHMARKS:BOOL
|
||||||
|
|
||||||
**Default**: ``OFF``
|
**Default**: ``ON``
|
||||||
|
|
||||||
Build the libc++ benchmark tests and the Google Benchmark library needed
|
Build the libc++ benchmark tests and the Google Benchmark library needed
|
||||||
to support them.
|
to support them.
|
||||||
|
|||||||
@@ -214,17 +214,16 @@ For more information about using the Google Benchmark library see the
|
|||||||
Building Benchmarks
|
Building Benchmarks
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
The benchmark tests are not enabled by default. To build the benchmarks
|
The benchmark tests are not built by default. The benchmarks can be built using
|
||||||
libc++ must be configured using the CMake option ``-DLIBCXX_INCLUDE_BENCHMARKS=ON``.
|
the ``cxx-benchmarks`` target.
|
||||||
Then the benchmarks can be built using the ``libcxx-benchmarks`` target.
|
|
||||||
|
|
||||||
An example build would look like:
|
An example build would look like:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ cd build
|
$ cd build
|
||||||
$ cmake [options] -DLIBCXX_INCLUDE_BENCHMARKS=ON <path to libcxx sources>
|
$ cmake [options] <path to libcxx sources>
|
||||||
$ make libcxx-benchmarks
|
$ make cxx-benchmarks
|
||||||
|
|
||||||
This will build all of the benchmarks under ``<libcxx-src>/benchmarks`` to be
|
This will build all of the benchmarks under ``<libcxx-src>/benchmarks`` to be
|
||||||
built against the just-built libc++. The compiled tests are output into
|
built against the just-built libc++. The compiled tests are output into
|
||||||
@@ -252,7 +251,7 @@ For example:
|
|||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ cd build/benchmarks
|
$ cd build/benchmarks
|
||||||
$ make libcxx-benchmarks
|
$ make cxx-benchmarks
|
||||||
$ ./algorithms.libcxx.out # Runs all the benchmarks
|
$ ./algorithms.libcxx.out # Runs all the benchmarks
|
||||||
$ ./algorithms.libcxx.out --benchmark_filter=BM_Sort.* # Only runs the sort benchmarks
|
$ ./algorithms.libcxx.out --benchmark_filter=BM_Sort.* # Only runs the sort benchmarks
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user