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.
|
|
|
|
|
2016-12-07 01:09:29 +08:00
|
|
|
if(LLVM_MAIN_INCLUDE_DIR)
|
|
|
|
set(LLVM_TABLEGEN_FLAGS -I ${LLVM_MAIN_INCLUDE_DIR})
|
|
|
|
endif()
|
|
|
|
|
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
|
2018-12-19 21:35:53 +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
|
2018-12-19 21:35:53 +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()
|
2017-02-15 02:32:41 +08:00
|
|
|
|
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.
|
2018-12-19 21:35:53 +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}
|
|
|
|
${LLVM_TABLEGEN_FLAGS}
|
|
|
|
${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
|
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:
|
2018-12-19 21:35:53 +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-04-02 23:58:03 +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()
|
2011-10-06 09:51:51 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2013-09-11 02:35:14 +08:00
|
|
|
if (${project} STREQUAL LLVM AND NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
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}
|
2016-06-09 05:19:26 +08:00
|
|
|
RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR})
|
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()
|