blob: 34b03430b26e6f34b4d7302b60eaf0d1a36c41bc [file] [log] [blame]
Oscar Fuentese1ad0872008-09-26 04:40:32 +00001# LLVM_TARGET_DEFINITIONS must contain the name of the .td file to process.
2# Extra parameters for `tblgen' may come after `ofn' parameter.
3# Adds the name of the generated file to TABLEGEN_OUTPUT.
4
Stephen Hines36b56882014-04-23 16:57:46 -07005function(tablegen project ofn)
6 # Validate calling context.
7 foreach(v
8 ${project}_TABLEGEN_EXE
9 LLVM_MAIN_SRC_DIR
10 LLVM_MAIN_INCLUDE_DIR
11 )
12 if(NOT ${v})
13 message(FATAL_ERROR "${v} not set")
14 endif()
15 endforeach()
16
Oscar Fuentesd97ea302009-07-13 21:35:00 +000017 file(GLOB local_tds "*.td")
Stephen Hines36b56882014-04-23 16:57:46 -070018 file(GLOB_RECURSE global_tds "${LLVM_MAIN_INCLUDE_DIR}/llvm/*.td")
Douglas Gregoraf3f5442009-03-16 21:35:18 +000019
Douglas Gregorba6fc632010-06-17 15:17:07 +000020 if (IS_ABSOLUTE ${LLVM_TARGET_DEFINITIONS})
21 set(LLVM_TARGET_DEFINITIONS_ABSOLUTE ${LLVM_TARGET_DEFINITIONS})
22 else()
Stephen Hines36b56882014-04-23 16:57:46 -070023 set(LLVM_TARGET_DEFINITIONS_ABSOLUTE
Douglas Gregorba6fc632010-06-17 15:17:07 +000024 ${CMAKE_CURRENT_SOURCE_DIR}/${LLVM_TARGET_DEFINITIONS})
25 endif()
Oscar Fuentes8c0cd082010-10-22 17:37:42 +000026 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
Oscar Fuentes8a116e02010-10-22 16:20:10 +000027 # Generate tablegen output in a temporary file.
Peter Collingbournede8f33c2011-10-06 01:51:51 +000028 COMMAND ${${project}_TABLEGEN_EXE} ${ARGN} -I ${CMAKE_CURRENT_SOURCE_DIR}
Oscar Fuentesbeb7a052008-11-21 00:18:45 +000029 -I ${LLVM_MAIN_SRC_DIR}/lib/Target -I ${LLVM_MAIN_INCLUDE_DIR}
Stephen Hines36b56882014-04-23 16:57:46 -070030 ${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
Oscar Fuentes8a116e02010-10-22 16:20:10 +000031 -o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
Oscar Fuentes5b30f0a2011-01-03 20:01:32 +000032 # The file in LLVM_TARGET_DEFINITIONS may be not in the current
33 # directory and local_tds may not contain it, so we must
34 # explicitly list it here:
Peter Collingbournede8f33c2011-10-06 01:51:51 +000035 DEPENDS ${${project}_TABLEGEN_EXE} ${local_tds} ${global_tds}
Oscar Fuentesd538e242011-02-03 20:57:36 +000036 ${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
Oscar Fuentes8c0cd082010-10-22 17:37:42 +000037 COMMENT "Building ${ofn}..."
38 )
39 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
Oscar Fuentes8a116e02010-10-22 16:20:10 +000040 # Only update the real output file if there are any differences.
41 # This prevents recompilation of all the files depending on it if there
42 # aren't any.
43 COMMAND ${CMAKE_COMMAND} -E copy_if_different
44 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
45 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
Oscar Fuentes8c0cd082010-10-22 17:37:42 +000046 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
Stephen Hines36b56882014-04-23 16:57:46 -070047 COMMENT "Updating ${ofn}..."
Oscar Fuentese1ad0872008-09-26 04:40:32 +000048 )
Oscar Fuentesba6ac912011-02-04 03:47:50 +000049
50 # `make clean' must remove all those generated files:
51 set_property(DIRECTORY APPEND
52 PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${ofn}.tmp ${ofn})
53
Stephen Hines36b56882014-04-23 16:57:46 -070054 set(TABLEGEN_OUTPUT ${TABLEGEN_OUTPUT} ${CMAKE_CURRENT_BINARY_DIR}/${ofn} PARENT_SCOPE)
55 set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${ofn} PROPERTIES
56 GENERATED 1)
57endfunction()
Oscar Fuentesddfb69c2011-07-25 14:11:55 +000058
Stephen Hines36b56882014-04-23 16:57:46 -070059# Creates a target for publicly exporting tablegen dependencies.
Chandler Carruthb35552d2011-07-26 00:09:08 +000060function(add_public_tablegen_target target)
Stephen Hines36b56882014-04-23 16:57:46 -070061 if(NOT TABLEGEN_OUTPUT)
62 message(FATAL_ERROR "Requires tablegen() definitions as TABLEGEN_OUTPUT.")
63 endif()
64 add_custom_target(${target}
65 DEPENDS ${TABLEGEN_OUTPUT})
66 if(LLVM_COMMON_DEPENDS)
67 add_dependencies(${target} ${LLVM_COMMON_DEPENDS})
68 endif()
69 set_target_properties(${target} PROPERTIES FOLDER "Tablegenning")
70 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${target} PARENT_SCOPE)
Oscar Fuentesddfb69c2011-07-25 14:11:55 +000071endfunction()
Peter Collingbournede8f33c2011-10-06 01:51:51 +000072
73if(CMAKE_CROSSCOMPILING)
74 set(CX_NATIVE_TG_DIR "${CMAKE_BINARY_DIR}/native")
75
76 add_custom_command(OUTPUT ${CX_NATIVE_TG_DIR}
77 COMMAND ${CMAKE_COMMAND} -E make_directory ${CX_NATIVE_TG_DIR}
78 COMMENT "Creating ${CX_NATIVE_TG_DIR}...")
79
80 add_custom_command(OUTPUT ${CX_NATIVE_TG_DIR}/CMakeCache.txt
81 COMMAND ${CMAKE_COMMAND} -UMAKE_TOOLCHAIN_FILE -DCMAKE_BUILD_TYPE=Release
Simon Atanasyandf263de2013-08-01 18:04:07 +000082 -DLLVM_BUILD_POLLY=OFF
83 -G "${CMAKE_GENERATOR}" ${CMAKE_SOURCE_DIR}
Peter Collingbournede8f33c2011-10-06 01:51:51 +000084 WORKING_DIRECTORY ${CX_NATIVE_TG_DIR}
85 DEPENDS ${CX_NATIVE_TG_DIR}
86 COMMENT "Configuring native TableGen...")
87
88 add_custom_target(ConfigureNativeTableGen DEPENDS ${CX_NATIVE_TG_DIR}/CMakeCache.txt)
89
90 set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES ${CX_NATIVE_TG_DIR})
91endif()
92
93macro(add_tablegen target project)
Chandler Carruth1bfc9f82011-11-02 05:03:06 +000094 set(${target}_OLD_LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS})
95 set(LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS} TableGen)
Peter Collingbournede8f33c2011-10-06 01:51:51 +000096 add_llvm_utility(${target} ${ARGN})
Chandler Carrutha71b7b02011-11-02 16:55:57 +000097 set(LLVM_LINK_COMPONENTS ${${target}_OLD_LLVM_LINK_COMPONENTS})
Peter Collingbournede8f33c2011-10-06 01:51:51 +000098
99 set(${project}_TABLEGEN "${target}" CACHE
100 STRING "Native TableGen executable. Saves building one when cross-compiling.")
101
102 # Upgrade existing LLVM_TABLEGEN setting.
103 if(${project} STREQUAL LLVM)
104 if(${LLVM_TABLEGEN} STREQUAL tblgen)
105 set(LLVM_TABLEGEN "${target}" CACHE
106 STRING "Native TableGen executable. Saves building one when cross-compiling."
107 FORCE)
108 endif()
109 endif()
Stephen Hines36b56882014-04-23 16:57:46 -0700110
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000111 # Effective tblgen executable to be used:
112 set(${project}_TABLEGEN_EXE ${${project}_TABLEGEN} PARENT_SCOPE)
113
114 if(CMAKE_CROSSCOMPILING)
115 if( ${${project}_TABLEGEN} STREQUAL "${target}" )
116 set(${project}_TABLEGEN_EXE "${CX_NATIVE_TG_DIR}/bin/${target}")
117 set(${project}_TABLEGEN_EXE ${${project}_TABLEGEN_EXE} PARENT_SCOPE)
118
119 add_custom_command(OUTPUT ${${project}_TABLEGEN_EXE}
120 COMMAND ${CMAKE_BUILD_TOOL} ${target}
121 DEPENDS ${CX_NATIVE_TG_DIR}/CMakeCache.txt
122 WORKING_DIRECTORY ${CX_NATIVE_TG_DIR}
123 COMMENT "Building native TableGen...")
124 add_custom_target(${project}NativeTableGen DEPENDS ${${project}_TABLEGEN_EXE})
125 add_dependencies(${project}NativeTableGen ConfigureNativeTableGen)
126
127 add_dependencies(${target} ${project}NativeTableGen)
128 endif()
129 endif()
130
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000131 if( MINGW )
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000132 if(CMAKE_SIZEOF_VOID_P MATCHES "8")
133 set_target_properties(${target} PROPERTIES LINK_FLAGS -Wl,--stack,16777216)
134 endif(CMAKE_SIZEOF_VOID_P MATCHES "8")
135 endif( MINGW )
Hans Wennborg4f5cfba2013-09-10 18:35:14 +0000136 if (${project} STREQUAL LLVM AND NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
Stephen Hines36b56882014-04-23 16:57:46 -0700137 install(TARGETS ${target}
138 EXPORT LLVMExports
139 RUNTIME DESTINATION bin)
Hans Wennborg4f5cfba2013-09-10 18:35:14 +0000140 endif()
Stephen Hines36b56882014-04-23 16:57:46 -0700141 set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${target})
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000142endmacro()