2015-07-16 00:05:30 +08:00
|
|
|
#
|
|
|
|
#//===----------------------------------------------------------------------===//
|
|
|
|
#//
|
2019-01-19 18:56:40 +08:00
|
|
|
#// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
#// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
#// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-07-16 00:05:30 +08:00
|
|
|
#//
|
|
|
|
#//===----------------------------------------------------------------------===//
|
|
|
|
#
|
|
|
|
|
|
|
|
# The following micro-tests are small tests to perform on the library just created.
|
|
|
|
# There are currently five micro-tests:
|
|
|
|
# (1) test-touch
|
2015-07-16 00:57:19 +08:00
|
|
|
# - Compile and run a small program using newly created libomp library
|
|
|
|
# - Fails if test-touch.c does not compile or if test-touch.c does not run after compilation
|
|
|
|
# - Program dependencies: gcc or g++, grep, bourne shell
|
|
|
|
# - Available for all Unix,Mac,Windows builds. Not available on Intel(R) MIC Architecture builds.
|
2015-07-16 00:05:30 +08:00
|
|
|
# (2) test-relo
|
2015-07-16 00:57:19 +08:00
|
|
|
# - Tests dynamic libraries for position-dependent code (can not have any position dependent code)
|
|
|
|
# - Fails if TEXTREL is in output of readelf -d libomp.so command
|
|
|
|
# - Program dependencies: readelf, grep, bourne shell
|
|
|
|
# - Available for Unix, Intel(R) MIC Architecture dynamic library builds. Not available otherwise.
|
2015-07-16 00:05:30 +08:00
|
|
|
# (3) test-execstack
|
2015-07-16 00:57:19 +08:00
|
|
|
# - Tests if stack is executable
|
2020-01-07 14:03:31 +08:00
|
|
|
# - Fails if stack is executable. Should only be readable and writable. Not executable.
|
2015-07-16 00:57:19 +08:00
|
|
|
# - Program dependencies: perl, readelf
|
|
|
|
# - Available for Unix dynamic library builds. Not available otherwise.
|
2020-04-04 11:06:29 +08:00
|
|
|
# (4) test-instr (Intel(R) MIC Architecture only)
|
2015-07-16 00:57:19 +08:00
|
|
|
# - Tests Intel(R) MIC Architecture libraries for valid instruction set
|
|
|
|
# - Fails if finds invalid instruction for Intel(R) MIC Architecture (wasn't compiled with correct flags)
|
|
|
|
# - Program dependencies: perl, objdump
|
|
|
|
# - Available for Intel(R) MIC Architecture and i386 builds. Not available otherwise.
|
2015-07-16 00:05:30 +08:00
|
|
|
# (5) test-deps
|
2015-07-16 00:57:19 +08:00
|
|
|
# - Tests newly created libomp for library dependencies
|
|
|
|
# - Fails if sees a dependence not listed in td_exp variable below
|
|
|
|
# - Program dependencies: perl, (unix)readelf, (mac)otool[64], (windows)link.exe
|
|
|
|
# - Available for Unix,Mac,Windows, Intel(R) MIC Architecture dynamic builds and Windows
|
|
|
|
# static builds. Not available otherwise.
|
2015-07-16 00:05:30 +08:00
|
|
|
|
|
|
|
# get library location
|
|
|
|
if(WIN32)
|
2015-07-16 00:57:19 +08:00
|
|
|
get_target_property(LIBOMP_OUTPUT_DIRECTORY omp RUNTIME_OUTPUT_DIRECTORY)
|
2020-08-04 23:48:25 +08:00
|
|
|
get_target_property(LIBOMPIMP_OUTPUT_DIRECTORY ${LIBOMP_IMP_LIB_TARGET} ARCHIVE_OUTPUT_DIRECTORY)
|
2015-07-16 00:57:19 +08:00
|
|
|
if(NOT LIBOMPIMP_OUTPUT_DIRECTORY)
|
|
|
|
set(LIBOMPIMP_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
endif()
|
2015-07-16 00:05:30 +08:00
|
|
|
else()
|
2015-07-16 00:57:19 +08:00
|
|
|
get_target_property(LIBOMP_OUTPUT_DIRECTORY omp LIBRARY_OUTPUT_DIRECTORY)
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
|
|
|
if(NOT LIBOMP_OUTPUT_DIRECTORY)
|
2015-07-16 00:57:19 +08:00
|
|
|
set(LIBOMP_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# test-touch
|
|
|
|
find_program(LIBOMP_SHELL sh)
|
|
|
|
if(WIN32)
|
2015-07-16 00:57:19 +08:00
|
|
|
if(LIBOMP_SHELL)
|
|
|
|
set(libomp_test_touch_targets test-touch-md/.success test-touch-mt/.success)
|
|
|
|
endif()
|
|
|
|
# pick test-touch compiler
|
|
|
|
set(libomp_test_touch_compiler ${CMAKE_C_COMPILER})
|
|
|
|
# test-touch compilation flags
|
|
|
|
libomp_append(libomp_test_touch_cflags /nologo)
|
|
|
|
libomp_append(libomp_test_touch_libs ${LIBOMPIMP_OUTPUT_DIRECTORY}/${LIBOMP_IMP_LIB_FILE})
|
|
|
|
if(${IA32})
|
|
|
|
libomp_append(libomp_test_touch_ldflags /safeseh)
|
|
|
|
endif()
|
2015-07-16 00:05:30 +08:00
|
|
|
else() # (Unix based systems, Intel(R) MIC Architecture, and Mac)
|
2015-07-16 00:57:19 +08:00
|
|
|
if(LIBOMP_SHELL)
|
|
|
|
set(libomp_test_touch_targets test-touch-rt/.success)
|
|
|
|
endif()
|
|
|
|
# pick test-touch compiler
|
|
|
|
if(${LIBOMP_USE_STDCPPLIB})
|
|
|
|
set(libomp_test_touch_compiler ${CMAKE_CXX_COMPILER})
|
|
|
|
else()
|
|
|
|
set(libomp_test_touch_compiler ${CMAKE_C_COMPILER})
|
|
|
|
endif()
|
|
|
|
# test-touch compilation flags
|
|
|
|
libomp_append(libomp_test_touch_libs "${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
if(${IA32})
|
|
|
|
libomp_append(libomp_test_touch_cflags -m32 LIBOMP_HAVE_M32_FLAG)
|
|
|
|
endif()
|
|
|
|
libomp_append(libomp_test_touch_libs ${LIBOMP_OUTPUT_DIRECTORY}/${LIBOMP_LIB_FILE})
|
2015-12-01 04:02:59 +08:00
|
|
|
libomp_append(libomp_test_touch_libs "${LIBOMP_HWLOC_LIBRARY}" LIBOMP_USE_HWLOC)
|
2015-07-16 00:57:19 +08:00
|
|
|
if(APPLE)
|
|
|
|
set(libomp_test_touch_env "DYLD_LIBRARY_PATH=.:${LIBOMP_OUTPUT_DIRECTORY}:$ENV{DYLD_LIBRARY_PATH}")
|
2015-12-01 04:02:59 +08:00
|
|
|
libomp_append(libomp_test_touch_ldflags "-Wl,-rpath,${LIBOMP_HWLOC_LIBRARY_DIR}" LIBOMP_USE_HWLOC)
|
2015-07-16 00:57:19 +08:00
|
|
|
else()
|
|
|
|
set(libomp_test_touch_env "LD_LIBRARY_PATH=.:${LIBOMP_OUTPUT_DIRECTORY}:$ENV{LD_LIBRARY_PATH}")
|
2015-12-01 04:02:59 +08:00
|
|
|
libomp_append(libomp_test_touch_ldflags "-Wl,-rpath=${LIBOMP_HWLOC_LIBRARY_DIR}" LIBOMP_USE_HWLOC)
|
2015-07-16 00:57:19 +08:00
|
|
|
endif()
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
|
|
|
macro(libomp_test_touch_recipe test_touch_dir)
|
2015-07-16 00:57:19 +08:00
|
|
|
set(libomp_test_touch_dependencies ${LIBOMP_SRC_DIR}/test-touch.c omp)
|
|
|
|
set(libomp_test_touch_exe ${test_touch_dir}/test-touch${CMAKE_EXECUTABLE_SUFFIX})
|
|
|
|
set(libomp_test_touch_obj ${test_touch_dir}/test-touch${CMAKE_C_OUTPUT_EXTENSION})
|
|
|
|
if(WIN32)
|
|
|
|
if(${RELEASE_BUILD} OR ${RELWITHDEBINFO_BUILD})
|
|
|
|
if(${test_touch_dir} MATCHES "test-touch-mt")
|
|
|
|
libomp_append(libomp_test_touch_cflags /MT)
|
|
|
|
else()
|
|
|
|
libomp_append(libomp_test_touch_cflags /MD)
|
|
|
|
endif()
|
2015-07-16 00:05:30 +08:00
|
|
|
else()
|
2015-07-16 00:57:19 +08:00
|
|
|
if(${test_touch_dir} MATCHES "test-touch-mt")
|
|
|
|
libomp_append(libomp_test_touch_cflags /MTd)
|
|
|
|
else()
|
|
|
|
libomp_append(libomp_test_touch_cflags /MDd)
|
|
|
|
endif()
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
2015-07-16 00:57:19 +08:00
|
|
|
set(libomp_test_touch_out_flags -Fe${libomp_test_touch_exe} -Fo${libomp_test_touch_obj})
|
|
|
|
list(APPEND libomp_test_touch_dependencies ompimp)
|
|
|
|
else()
|
|
|
|
set(libomp_test_touch_out_flags -o ${libomp_test_touch_exe})
|
|
|
|
endif()
|
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${test_touch_dir}/.success ${libomp_test_touch_exe} ${libomp_test_touch_obj}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/${test_touch_dir}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove -f ${test_touch_dir}/*
|
|
|
|
COMMAND ${libomp_test_touch_compiler} ${libomp_test_touch_out_flags} ${libomp_test_touch_cflags}
|
|
|
|
${LIBOMP_SRC_DIR}/test-touch.c ${libomp_test_touch_ldflags} ${libomp_test_touch_libs}
|
|
|
|
COMMAND ${LIBOMP_SHELL} -c \"${libomp_test_touch_env} ${libomp_test_touch_exe}\"
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E touch ${test_touch_dir}/.success
|
|
|
|
DEPENDS ${libomp_test_touch_dependencies}
|
|
|
|
)
|
2015-07-16 00:05:30 +08:00
|
|
|
endmacro()
|
|
|
|
libomp_append(libomp_test_touch_env "KMP_VERSION=1")
|
|
|
|
add_custom_target(libomp-test-touch DEPENDS ${libomp_test_touch_targets})
|
|
|
|
if(WIN32)
|
2015-07-16 00:57:19 +08:00
|
|
|
libomp_test_touch_recipe(test-touch-mt)
|
|
|
|
libomp_test_touch_recipe(test-touch-md)
|
2015-07-16 00:05:30 +08:00
|
|
|
else()
|
2015-07-16 00:57:19 +08:00
|
|
|
libomp_test_touch_recipe(test-touch-rt)
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# test-relo
|
|
|
|
add_custom_target(libomp-test-relo DEPENDS test-relo/.success)
|
|
|
|
add_custom_command(
|
2015-07-16 00:57:19 +08:00
|
|
|
OUTPUT test-relo/.success test-relo/readelf.log
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/test-relo
|
|
|
|
COMMAND readelf -d ${LIBOMP_OUTPUT_DIRECTORY}/${LIBOMP_LIB_FILE} > test-relo/readelf.log
|
2015-07-25 05:24:48 +08:00
|
|
|
COMMAND grep -e TEXTREL test-relo/readelf.log \; test $$? -eq 1
|
2015-07-16 00:57:19 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E touch test-relo/.success
|
|
|
|
DEPENDS omp
|
2015-07-16 00:05:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# test-execstack
|
|
|
|
add_custom_target(libomp-test-execstack DEPENDS test-execstack/.success)
|
|
|
|
add_custom_command(
|
2015-07-16 00:57:19 +08:00
|
|
|
OUTPUT test-execstack/.success
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/test-execstack
|
2016-01-27 03:44:31 +08:00
|
|
|
COMMAND ${PERL_EXECUTABLE} ${LIBOMP_TOOLS_DIR}/check-execstack.pl
|
|
|
|
--arch=${LIBOMP_PERL_SCRIPT_ARCH} ${LIBOMP_OUTPUT_DIRECTORY}/${LIBOMP_LIB_FILE}
|
2015-07-16 00:57:19 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E touch test-execstack/.success
|
|
|
|
DEPENDS omp
|
2015-07-16 00:05:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# test-instr
|
|
|
|
add_custom_target(libomp-test-instr DEPENDS test-instr/.success)
|
|
|
|
add_custom_command(
|
2015-07-16 00:57:19 +08:00
|
|
|
OUTPUT test-instr/.success
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/test-instr
|
|
|
|
COMMAND ${PERL_EXECUTABLE} ${LIBOMP_TOOLS_DIR}/check-instruction-set.pl --os=${LIBOMP_PERL_SCRIPT_OS}
|
2016-01-27 03:44:31 +08:00
|
|
|
--arch=${LIBOMP_PERL_SCRIPT_ARCH} --show --mic-arch=${LIBOMP_MIC_ARCH} ${LIBOMP_OUTPUT_DIRECTORY}/${LIBOMP_LIB_FILE}
|
2015-07-16 00:57:19 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E touch test-instr/.success
|
|
|
|
DEPENDS omp ${LIBOMP_TOOLS_DIR}/check-instruction-set.pl
|
2015-07-16 00:05:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# test-deps
|
|
|
|
add_custom_target(libomp-test-deps DEPENDS test-deps/.success)
|
|
|
|
set(libomp_expected_library_deps)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
Ensure correct pthread flags and libraries are used
On most platforms, certain compiler and linker flags have to be passed
when using pthreads, otherwise linking against libomp.so might fail with
undefined references to several pthread functions.
Use CMake's `find_package(Threads)` to determine these for standalone
builds, or take them (and optionally modify them) from the top-level
LLVM cmake files.
Also, On FreeBSD, ensure that libomp.so is linked against libm.so,
similar to NetBSD.
Adjust test cases with hardcoded `-lpthread` flag to use the common
build flags, which should now have the required pthread flags.
Reviewers: emaste, jlpeyton, krytarowski, mgorny, protze.joachim, Hahnfeld
Reviewed By: Hahnfeld
Subscribers: AndreyChurbanov, tra, EricWF, Hahnfeld, jfb, jdoerfert, openmp-commits
Tags: #openmp
Differential Revision: https://reviews.llvm.org/D59451
llvm-svn: 357618
2019-04-04 02:11:36 +08:00
|
|
|
set(libomp_expected_library_deps libc.so.7 libthr.so.3 libm.so.5)
|
2015-12-01 04:02:59 +08:00
|
|
|
libomp_append(libomp_expected_library_deps libhwloc.so.5 LIBOMP_USE_HWLOC)
|
2015-09-22 03:40:59 +08:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
|
|
set(libomp_expected_library_deps libc.so.12 libpthread.so.1 libm.so.0)
|
2015-12-01 04:02:59 +08:00
|
|
|
libomp_append(libomp_expected_library_deps libhwloc.so.5 LIBOMP_USE_HWLOC)
|
Add DragonFlyBSD support to OpenMP
Summary:
Additions mostly follow FreeBSD and NetBSD and are not intrusive.
There is similar patch for OpenBSD: https://reviews.llvm.org/D34280
The -lm was being omitted due to -Wl,--as-needed in cmake rule, similar patch is in freebsd-ports/devel/llvm-devel port.
Simple OpenMP programs compile and work as expected:
$ clang-devel ~/omp_hello.c -fopenmp -I/usr/local/llvm-devel/include
$ LD_LIBRARY_PATH=/usr/local/llvm-devel/lib OMP_NUM_THREADS=100 ./a.out
The assertion in LLVMgold.so when -fopenmp was used together with -flto in 20170524 snapshot is no longer triggered on current svn-trunk and works fine as in llvm-4.0 with our local patches.
Reviewers: #openmp, krytarowski
Reviewed By: krytarowski
Subscribers: dexonsmith, jfb, krytarowski, guansong, gregrodgers, emaste, mgorny, mehdi_amini
Differential Revision: https://reviews.llvm.org/D35129
llvm-svn: 348725
2018-12-10 00:40:33 +08:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "DragonFly")
|
|
|
|
set(libomp_expected_library_deps libc.so.8 libpthread.so.0 libm.so.4)
|
|
|
|
libomp_append(libomp_expected_library_deps libhwloc.so.5 LIBOMP_USE_HWLOC)
|
2015-07-16 00:05:30 +08:00
|
|
|
elseif(APPLE)
|
2015-07-16 00:57:19 +08:00
|
|
|
set(libomp_expected_library_deps /usr/lib/libSystem.B.dylib)
|
2015-07-16 00:05:30 +08:00
|
|
|
elseif(WIN32)
|
2015-07-16 00:57:19 +08:00
|
|
|
set(libomp_expected_library_deps kernel32.dll)
|
2015-10-30 04:56:24 +08:00
|
|
|
libomp_append(libomp_expected_library_deps psapi.dll LIBOMP_OMPT_SUPPORT)
|
2015-07-16 00:05:30 +08:00
|
|
|
else()
|
2015-07-16 00:57:19 +08:00
|
|
|
if(${MIC})
|
|
|
|
set(libomp_expected_library_deps libc.so.6 libpthread.so.0 libdl.so.2)
|
|
|
|
if("${LIBOMP_MIC_ARCH}" STREQUAL "knf")
|
|
|
|
libomp_append(libomp_expected_library_deps ld-linux-l1om.so.2)
|
|
|
|
libomp_append(libomp_expected_library_deps libgcc_s.so.1)
|
|
|
|
elseif("${LIBOMP_MIC_ARCH}" STREQUAL "knc")
|
|
|
|
libomp_append(libomp_expected_library_deps ld-linux-k1om.so.2)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(libomp_expected_library_deps libdl.so.2 libgcc_s.so.1)
|
|
|
|
if(${IA32})
|
|
|
|
libomp_append(libomp_expected_library_deps libc.so.6)
|
|
|
|
libomp_append(libomp_expected_library_deps ld-linux.so.2)
|
|
|
|
elseif(${INTEL64})
|
|
|
|
libomp_append(libomp_expected_library_deps libc.so.6)
|
|
|
|
libomp_append(libomp_expected_library_deps ld-linux-x86-64.so.2)
|
|
|
|
elseif(${ARM})
|
|
|
|
libomp_append(libomp_expected_library_deps libc.so.6)
|
|
|
|
libomp_append(libomp_expected_library_deps libffi.so.6)
|
|
|
|
libomp_append(libomp_expected_library_deps libffi.so.5)
|
|
|
|
libomp_append(libomp_expected_library_deps ld-linux-armhf.so.3)
|
|
|
|
elseif(${PPC64})
|
|
|
|
libomp_append(libomp_expected_library_deps libc.so.6)
|
|
|
|
libomp_append(libomp_expected_library_deps ld64.so.1)
|
2016-12-08 17:22:24 +08:00
|
|
|
elseif(${MIPS} OR ${MIPS64})
|
|
|
|
libomp_append(libomp_expected_library_deps libc.so.6)
|
2019-07-25 22:36:20 +08:00
|
|
|
libomp_append(libomp_expected_library_deps ld.so.1)
|
|
|
|
elseif(${RISCV64})
|
|
|
|
libomp_append(libomp_expected_library_deps libc.so.6)
|
2016-12-08 17:22:24 +08:00
|
|
|
libomp_append(libomp_expected_library_deps ld.so.1)
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
2015-07-16 00:57:19 +08:00
|
|
|
libomp_append(libomp_expected_library_deps libpthread.so.0 IF_FALSE STUBS_LIBRARY)
|
2015-12-01 04:02:59 +08:00
|
|
|
libomp_append(libomp_expected_library_deps libhwloc.so.5 LIBOMP_USE_HWLOC)
|
2015-07-16 00:57:19 +08:00
|
|
|
endif()
|
|
|
|
libomp_append(libomp_expected_library_deps libstdc++.so.6 LIBOMP_USE_STDCPPLIB)
|
2015-12-18 00:15:39 +08:00
|
|
|
libomp_append(libomp_expected_library_deps libm.so.6 LIBOMP_STATS)
|
2015-07-16 00:05:30 +08:00
|
|
|
endif()
|
|
|
|
# Perl script expects comma separated list
|
|
|
|
string(REPLACE ";" "," libomp_expected_library_deps "${libomp_expected_library_deps}")
|
|
|
|
add_custom_command(
|
2015-07-16 00:57:19 +08:00
|
|
|
OUTPUT test-deps/.success
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/test-deps
|
|
|
|
COMMAND ${PERL_EXECUTABLE} ${LIBOMP_TOOLS_DIR}/check-depends.pl --os=${LIBOMP_PERL_SCRIPT_OS}
|
2016-01-27 03:44:31 +08:00
|
|
|
--arch=${LIBOMP_PERL_SCRIPT_ARCH} --expected="${libomp_expected_library_deps}" ${LIBOMP_OUTPUT_DIRECTORY}/${LIBOMP_LIB_FILE}
|
2015-07-16 00:57:19 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E touch test-deps/.success
|
|
|
|
DEPENDS omp ${LIBOMP_TOOLS_DIR}/check-depends.pl
|
2015-07-16 00:05:30 +08:00
|
|
|
)
|