2008-09-26 12:40:32 +08:00
|
|
|
# LLVM_TARGET_DEFINITIONS must contain the name of the .td file to process.
|
|
|
|
# Extra parameters for `tblgen' may come after `ofn' parameter.
|
|
|
|
# Adds the name of the generated file to TABLEGEN_OUTPUT.
|
|
|
|
|
2014-01-26 20:41:33 +08:00
|
|
|
function(tablegen project ofn)
|
2014-02-12 19:50:11 +08:00
|
|
|
# Validate calling context.
|
2016-12-06 12:45:11 +08:00
|
|
|
if(NOT ${project}_TABLEGEN_EXE)
|
|
|
|
message(FATAL_ERROR "${project}_TABLEGEN_EXE not set")
|
|
|
|
endif()
|
2014-02-12 19:50:11 +08:00
|
|
|
|
2017-06-22 06:04:07 +08:00
|
|
|
# Use depfile instead of globbing arbitrary *.td(s)
|
|
|
|
# DEPFILE is available for Ninja Generator with CMake>=3.7.
|
|
|
|
if(CMAKE_GENERATOR STREQUAL "Ninja" AND NOT CMAKE_VERSION VERSION_LESS 3.7)
|
|
|
|
# Make output path relative to build.ninja, assuming located on
|
|
|
|
# ${CMAKE_BINARY_DIR}.
|
|
|
|
# CMake emits build targets as relative paths but Ninja doesn't identify
|
|
|
|
# absolute path (in *.d) as relative path (in build.ninja)
|
|
|
|
# Note that tblgen is executed on ${CMAKE_BINARY_DIR} as working directory.
|
|
|
|
file(RELATIVE_PATH ofn_rel
|
|
|
|
${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/${ofn})
|
|
|
|
set(additional_cmdline
|
2019-10-04 05:22:28 +08:00
|
|
|
-o ${ofn_rel}
|
2017-06-22 06:04:07 +08:00
|
|
|
-d ${ofn_rel}.d
|
|
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
|
|
DEPFILE ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.d
|
|
|
|
)
|
|
|
|
set(local_tds)
|
|
|
|
set(global_tds)
|
|
|
|
else()
|
|
|
|
file(GLOB local_tds "*.td")
|
|
|
|
file(GLOB_RECURSE global_tds "${LLVM_MAIN_INCLUDE_DIR}/llvm/*.td")
|
|
|
|
set(additional_cmdline
|
2019-10-04 05:22:28 +08:00
|
|
|
-o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
|
2017-06-22 06:04:07 +08:00
|
|
|
)
|
|
|
|
endif()
|
2009-03-17 05:35:18 +08:00
|
|
|
|
2010-06-17 23:17:07 +08:00
|
|
|
if (IS_ABSOLUTE ${LLVM_TARGET_DEFINITIONS})
|
|
|
|
set(LLVM_TARGET_DEFINITIONS_ABSOLUTE ${LLVM_TARGET_DEFINITIONS})
|
|
|
|
else()
|
2014-02-10 00:38:31 +08:00
|
|
|
set(LLVM_TARGET_DEFINITIONS_ABSOLUTE
|
2010-06-17 23:17:07 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/${LLVM_TARGET_DEFINITIONS})
|
|
|
|
endif()
|
2017-02-15 02:32:41 +08:00
|
|
|
if (LLVM_ENABLE_DAGISEL_COV)
|
|
|
|
list(FIND ARGN "-gen-dag-isel" idx)
|
|
|
|
if( NOT idx EQUAL -1 )
|
|
|
|
list(APPEND LLVM_TABLEGEN_FLAGS "-instrument-coverage")
|
|
|
|
endif()
|
|
|
|
endif()
|
[globalisel][tablegen] Generate rule coverage and use it to identify untested rules
Summary:
This patch adds a LLVM_ENABLE_GISEL_COV which, like LLVM_ENABLE_DAGISEL_COV,
causes TableGen to instrument the generated table to collect rule coverage
information. However, LLVM_ENABLE_GISEL_COV goes a bit further than
LLVM_ENABLE_DAGISEL_COV. The information is written to files
(${CMAKE_BINARY_DIR}/gisel-coverage-* by default). These files can then be
concatenated into ${LLVM_GISEL_COV_PREFIX}-all after which TableGen will
read this information and use it to emit warnings about untested rules.
This technique could also be used by SelectionDAG and can be further
extended to detect hot rules and give them priority over colder rules.
Usage:
* Enable LLVM_ENABLE_GISEL_COV in CMake
* Build the compiler and run some tests
* cat gisel-coverage-[0-9]* > gisel-coverage-all
* Delete lib/Target/*/*GenGlobalISel.inc*
* Build the compiler
Known issues:
* ${LLVM_GISEL_COV_PREFIX}-all must be generated as a manual
step due to a lack of a portable 'cat' command. It should be the
concatenation of all ${LLVM_GISEL_COV_PREFIX}-[0-9]* files.
* There's no mechanism to discard coverage information when the ruleset
changes
Depends on D39742
Reviewers: ab, qcolombet, t.p.northover, aditya_nandakumar, rovka
Reviewed By: rovka
Subscribers: vsk, arsenm, nhaehnle, mgorny, kristof.beyls, javed.absar, igorb, llvm-commits
Differential Revision: https://reviews.llvm.org/D39747
llvm-svn: 318356
2017-11-16 08:46:35 +08:00
|
|
|
if (LLVM_ENABLE_GISEL_COV)
|
|
|
|
list(FIND ARGN "-gen-global-isel" idx)
|
|
|
|
if( NOT idx EQUAL -1 )
|
|
|
|
list(APPEND LLVM_TABLEGEN_FLAGS "-instrument-gisel-coverage")
|
|
|
|
list(APPEND LLVM_TABLEGEN_FLAGS "-gisel-coverage-file=${LLVM_GISEL_COV_PREFIX}all")
|
|
|
|
endif()
|
|
|
|
endif()
|
2020-04-27 03:12:43 +08:00
|
|
|
# Comments are only useful for Debug builds. Omit them if the backend
|
|
|
|
# supports it.
|
|
|
|
if (NOT (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" OR
|
|
|
|
uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO"))
|
|
|
|
list(FIND ARGN "-gen-dag-isel" idx)
|
|
|
|
if (NOT idx EQUAL -1)
|
|
|
|
list(APPEND LLVM_TABLEGEN_FLAGS "-omit-comments")
|
|
|
|
endif()
|
|
|
|
endif()
|
2017-02-15 02:32:41 +08:00
|
|
|
|
[tablegen] Emit string literals instead of char arrays
This changes the generated (Instr|Asm|Reg|Regclass)Name tables from this
form:
extern const char HexagonInstrNameData[] = {
/* 0 */ 'G', '_', 'F', 'L', 'O', 'G', '1', '0', 0,
/* 9 */ 'E', 'N', 'D', 'L', 'O', 'O', 'P', '0', 0,
/* 18 */ 'V', '6', '_', 'v', 'd', 'd', '0', 0,
/* 26 */ 'P', 'S', '_', 'v', 'd', 'd', '0', 0,
[...]
};
...to this:
extern const char HexagonInstrNameData[] = {
/* 0 */ "G_FLOG10\0"
/* 9 */ "ENDLOOP0\0"
/* 18 */ "V6_vdd0\0"
/* 26 */ "PS_vdd0\0"
[...]
};
This should make debugging and exploration a lot easier for mortals,
while providing a significant compile-time reduction for common compilers.
To avoid issues with low implementation limits, this is disabled by
default for visual studio.
To force output one way or the other, pass
`--long-string-literals=<bool>` to `tablegen`
Reviewers: mstorsjo, rnk
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D73044
A variation of this patch was originally committed in ce23515f5ab011 and
then reverted in e464b31c due to build failures.
2020-01-15 22:14:01 +08:00
|
|
|
# MSVC can't support long string literals ("long" > 65534 bytes)[1], so if there's
|
|
|
|
# a possibility of generated tables being consumed by MSVC, generate arrays of
|
|
|
|
# char literals, instead. If we're cross-compiling, then conservatively assume
|
|
|
|
# that the source might be consumed by MSVC.
|
|
|
|
# [1] https://docs.microsoft.com/en-us/cpp/cpp/compiler-limits?view=vs-2017
|
|
|
|
if (MSVC AND project STREQUAL LLVM)
|
|
|
|
list(APPEND LLVM_TABLEGEN_FLAGS "--long-string-literals=0")
|
|
|
|
endif()
|
2019-10-04 05:22:28 +08:00
|
|
|
if (CMAKE_GENERATOR MATCHES "Visual Studio")
|
|
|
|
# Visual Studio has problems with llvm-tblgen's native --write-if-changed
|
|
|
|
# behavior. Since it doesn't do restat optimizations anyway, just don't
|
|
|
|
# pass --write-if-changed there.
|
|
|
|
set(tblgen_change_flag)
|
|
|
|
else()
|
|
|
|
set(tblgen_change_flag "--write-if-changed")
|
|
|
|
endif()
|
|
|
|
|
2020-04-01 02:45:59 +08:00
|
|
|
# With CMake 3.12 this can be reduced to:
|
|
|
|
# get_directory_property(tblgen_includes "INCLUDE_DIRECTORIES")
|
|
|
|
# list(TRANSFORM tblgen_includes PREPEND -I)
|
|
|
|
set(tblgen_includes)
|
|
|
|
get_directory_property(includes "INCLUDE_DIRECTORIES")
|
|
|
|
foreach(include ${includes})
|
|
|
|
list(APPEND tblgen_includes -I ${include})
|
|
|
|
endforeach()
|
2017-06-10 15:48:49 +08:00
|
|
|
# We need both _TABLEGEN_TARGET and _TABLEGEN_EXE in the DEPENDS list
|
|
|
|
# (both the target and the file) to have .inc files rebuilt on
|
|
|
|
# a tablegen change, as cmake does not propagate file-level dependencies
|
|
|
|
# of custom targets. See the following ticket for more information:
|
|
|
|
# https://cmake.org/Bug/view.php?id=15858
|
2017-06-13 03:17:55 +08:00
|
|
|
# The dependency on both, the target and the file, produces the same
|
|
|
|
# dependency twice in the result file when
|
|
|
|
# ("${${project}_TABLEGEN_TARGET}" STREQUAL "${${project}_TABLEGEN_EXE}")
|
|
|
|
# but lets us having smaller and cleaner code here.
|
2019-10-04 05:22:28 +08:00
|
|
|
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
|
2017-06-13 03:17:55 +08:00
|
|
|
COMMAND ${${project}_TABLEGEN_EXE} ${ARGN} -I ${CMAKE_CURRENT_SOURCE_DIR}
|
2020-04-01 02:45:59 +08:00
|
|
|
${tblgen_includes}
|
2017-06-13 03:17:55 +08:00
|
|
|
${LLVM_TABLEGEN_FLAGS}
|
|
|
|
${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
|
2019-10-04 05:22:28 +08:00
|
|
|
${tblgen_change_flag}
|
2017-06-22 06:04:07 +08:00
|
|
|
${additional_cmdline}
|
2017-06-13 03:17:55 +08:00
|
|
|
# The file in LLVM_TARGET_DEFINITIONS may be not in the current
|
|
|
|
# directory and local_tds may not contain it, so we must
|
|
|
|
# explicitly list it here:
|
|
|
|
DEPENDS ${${project}_TABLEGEN_TARGET} ${${project}_TABLEGEN_EXE}
|
|
|
|
${local_tds} ${global_tds}
|
|
|
|
${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
|
|
|
|
COMMENT "Building ${ofn}..."
|
|
|
|
)
|
2011-02-04 11:47:50 +08:00
|
|
|
|
|
|
|
# `make clean' must remove all those generated files:
|
2019-10-04 05:22:28 +08:00
|
|
|
set_property(DIRECTORY APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${ofn})
|
2011-02-04 11:47:50 +08:00
|
|
|
|
2014-01-26 20:41:33 +08:00
|
|
|
set(TABLEGEN_OUTPUT ${TABLEGEN_OUTPUT} ${CMAKE_CURRENT_BINARY_DIR}/${ofn} PARENT_SCOPE)
|
2014-02-23 20:54:15 +08:00
|
|
|
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${ofn} PROPERTIES
|
|
|
|
GENERATED 1)
|
|
|
|
endfunction()
|
2011-07-25 22:11:55 +08:00
|
|
|
|
2014-02-23 20:54:15 +08:00
|
|
|
# Creates a target for publicly exporting tablegen dependencies.
|
|
|
|
function(add_public_tablegen_target target)
|
|
|
|
if(NOT TABLEGEN_OUTPUT)
|
|
|
|
message(FATAL_ERROR "Requires tablegen() definitions as TABLEGEN_OUTPUT.")
|
|
|
|
endif()
|
|
|
|
add_custom_target(${target}
|
|
|
|
DEPENDS ${TABLEGEN_OUTPUT})
|
|
|
|
if(LLVM_COMMON_DEPENDS)
|
|
|
|
add_dependencies(${target} ${LLVM_COMMON_DEPENDS})
|
|
|
|
endif()
|
|
|
|
set_target_properties(${target} PROPERTIES FOLDER "Tablegenning")
|
|
|
|
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${target} PARENT_SCOPE)
|
|
|
|
endfunction()
|
2011-10-06 09:51:51 +08:00
|
|
|
|
|
|
|
macro(add_tablegen target project)
|
2011-11-02 13:03:06 +08:00
|
|
|
set(${target}_OLD_LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS})
|
|
|
|
set(LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS} TableGen)
|
2015-08-28 00:10:47 +08:00
|
|
|
|
2017-06-17 21:45:55 +08:00
|
|
|
# CMake-3.9 doesn't let compilation units depend on their dependent libraries.
|
|
|
|
if(NOT (CMAKE_GENERATOR STREQUAL "Ninja" AND NOT CMAKE_VERSION VERSION_LESS 3.9) AND NOT XCODE)
|
2015-09-02 18:11:26 +08:00
|
|
|
# FIXME: It leaks to user, callee of add_tablegen.
|
|
|
|
set(LLVM_ENABLE_OBJLIB ON)
|
|
|
|
endif()
|
2015-08-28 00:10:47 +08:00
|
|
|
|
2017-03-10 03:24:07 +08:00
|
|
|
add_llvm_executable(${target} DISABLE_LLVM_LINK_LLVM_DYLIB ${ARGN})
|
2011-11-03 00:55:57 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS ${${target}_OLD_LLVM_LINK_COMPONENTS})
|
2011-10-06 09:51:51 +08:00
|
|
|
|
|
|
|
set(${project}_TABLEGEN "${target}" CACHE
|
|
|
|
STRING "Native TableGen executable. Saves building one when cross-compiling.")
|
|
|
|
|
|
|
|
# Effective tblgen executable to be used:
|
|
|
|
set(${project}_TABLEGEN_EXE ${${project}_TABLEGEN} PARENT_SCOPE)
|
2015-04-25 01:09:20 +08:00
|
|
|
set(${project}_TABLEGEN_TARGET ${${project}_TABLEGEN} PARENT_SCOPE)
|
2011-10-06 09:51:51 +08:00
|
|
|
|
2015-03-11 04:48:02 +08:00
|
|
|
if(LLVM_USE_HOST_TOOLS)
|
2011-10-06 09:51:51 +08:00
|
|
|
if( ${${project}_TABLEGEN} STREQUAL "${target}" )
|
2019-08-06 02:00:55 +08:00
|
|
|
# The NATIVE tablegen executable *must* depend on the current target one
|
|
|
|
# otherwise the native one won't get rebuilt when the tablgen sources
|
|
|
|
# change, and we end up with incorrect builds.
|
2019-08-06 01:50:08 +08:00
|
|
|
build_native_tool(${target} ${project}_TABLEGEN_EXE DEPENDS ${target})
|
2011-10-06 09:51:51 +08:00
|
|
|
set(${project}_TABLEGEN_EXE ${${project}_TABLEGEN_EXE} PARENT_SCOPE)
|
|
|
|
|
2019-04-02 23:58:03 +08:00
|
|
|
add_custom_target(${project}-tablegen-host DEPENDS ${${project}_TABLEGEN_EXE})
|
|
|
|
set(${project}_TABLEGEN_TARGET ${project}-tablegen-host PARENT_SCOPE)
|
|
|
|
|
2018-12-20 03:42:21 +08:00
|
|
|
# Create an artificial dependency between tablegen projects, because they
|
|
|
|
# compile the same dependencies, thus using the same build folders.
|
|
|
|
# FIXME: A proper fix requires sequentially chaining tablegens.
|
2019-04-12 05:05:15 +08:00
|
|
|
if (NOT ${project} STREQUAL LLVM AND TARGET ${project}-tablegen-host AND
|
|
|
|
TARGET LLVM-tablegen-host)
|
2018-12-20 03:42:21 +08:00
|
|
|
add_dependencies(${project}-tablegen-host LLVM-tablegen-host)
|
|
|
|
endif()
|
[cmake] With utils disabled, don't build tblgen in cross mode
Summary:
In cross mode, we build a separate NATIVE tblgen that runs on the
host and is used during the build. Separately, we have a flag that
disables building all executables in utils/. Of course generally,
this doesn't turn off tblgen, since we need that during the build.
In cross mode, however, that tblegen is useless since we never
actually use it. Furthermore, it can be actively problematic if the
cross toolchain doesn't like building executables for whatever reason.
And even if building executables works fine, we can at least save
compile time by omitting it from the target build. There's two changes
needed to make this happen:
- Stop creating a dependency from the native tool to the target tool.
No such dependency is required for a correct build, so I'm not entirely
sure why it was there in the first place.
- If utils were disabled on the CMake command line and we're in cross mode,
respect that by excluding it from the install target (using EXCLUDE_FROM_ALL).
Reviewers: smeenai
Differential Revision: https://reviews.llvm.org/D64032
llvm-svn: 364872
2019-07-02 07:15:07 +08:00
|
|
|
|
|
|
|
# If we're using the host tablegen, and utils were not requested, we have no
|
|
|
|
# need to build this tablegen.
|
|
|
|
if ( NOT LLVM_BUILD_UTILS )
|
|
|
|
set_target_properties(${target} PROPERTIES EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2011-10-06 09:51:51 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-11-20 11:28:12 +08:00
|
|
|
if ((${project} STREQUAL LLVM OR ${project} STREQUAL MLIR) AND NOT LLVM_INSTALL_TOOLCHAIN_ONLY AND LLVM_BUILD_UTILS)
|
2019-03-27 06:16:53 +08:00
|
|
|
set(export_to_llvmexports)
|
2016-11-05 05:55:23 +08:00
|
|
|
if(${target} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
|
|
|
|
NOT LLVM_DISTRIBUTION_COMPONENTS)
|
|
|
|
set(export_to_llvmexports EXPORT LLVMExports)
|
|
|
|
endif()
|
|
|
|
|
2014-02-10 00:36:03 +08:00
|
|
|
install(TARGETS ${target}
|
2016-11-05 05:55:23 +08:00
|
|
|
${export_to_llvmexports}
|
2019-10-03 00:06:50 +08:00
|
|
|
COMPONENT ${target}
|
2016-06-09 05:19:26 +08:00
|
|
|
RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR})
|
2019-10-03 00:06:50 +08:00
|
|
|
if(NOT LLVM_ENABLE_IDE)
|
|
|
|
add_llvm_install_targets("install-${target}"
|
|
|
|
DEPENDS ${target}
|
|
|
|
COMPONENT ${target})
|
|
|
|
endif()
|
2013-09-11 02:35:14 +08:00
|
|
|
endif()
|
2014-02-10 00:36:16 +08:00
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${target})
|
2011-10-06 09:51:51 +08:00
|
|
|
endmacro()
|