[CMake] Don't use OBJLIB on Xcode.
[oota-llvm.git] / cmake / modules / TableGen.cmake
1 # 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
5 function(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
17   file(GLOB local_tds "*.td")
18   file(GLOB_RECURSE global_tds "${LLVM_MAIN_INCLUDE_DIR}/llvm/*.td")
19
20   if (IS_ABSOLUTE ${LLVM_TARGET_DEFINITIONS})
21     set(LLVM_TARGET_DEFINITIONS_ABSOLUTE ${LLVM_TARGET_DEFINITIONS})
22   else()
23     set(LLVM_TARGET_DEFINITIONS_ABSOLUTE
24       ${CMAKE_CURRENT_SOURCE_DIR}/${LLVM_TARGET_DEFINITIONS})
25   endif()
26   add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
27     # Generate tablegen output in a temporary file.
28     COMMAND ${${project}_TABLEGEN_EXE} ${ARGN} -I ${CMAKE_CURRENT_SOURCE_DIR}
29     -I ${LLVM_MAIN_SRC_DIR}/lib/Target -I ${LLVM_MAIN_INCLUDE_DIR}
30     ${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
31     -o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
32     # 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:
35     DEPENDS ${${project}_TABLEGEN_TARGET} ${local_tds} ${global_tds}
36     ${LLVM_TARGET_DEFINITIONS_ABSOLUTE}
37     COMMENT "Building ${ofn}..."
38     )
39   add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
40     # 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}
46     DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
47     COMMENT "Updating ${ofn}..."
48     )
49
50   # `make clean' must remove all those generated files:
51   set_property(DIRECTORY APPEND
52     PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${ofn}.tmp ${ofn})
53
54   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)
57 endfunction()
58
59 # Creates a target for publicly exporting tablegen dependencies.
60 function(add_public_tablegen_target target)
61   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)
71 endfunction()
72
73 macro(add_tablegen target project)
74   set(${target}_OLD_LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS})
75   set(LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS} TableGen)
76
77   if(NOT XCODE)
78     # FIXME: It leaks to user, callee of add_tablegen.
79     set(LLVM_ENABLE_OBJLIB ON)
80   endif()
81
82   add_llvm_utility(
83     ${target} ${ARGN}
84     # libLLVM does not include the TableGen
85     # components, so we cannot link any tblgen
86     # utilities against it.
87     DISABLE_LLVM_LINK_LLVM_DYLIB)
88
89   set(LLVM_LINK_COMPONENTS ${${target}_OLD_LLVM_LINK_COMPONENTS})
90
91   set(${project}_TABLEGEN "${target}" CACHE
92       STRING "Native TableGen executable. Saves building one when cross-compiling.")
93
94   # Upgrade existing LLVM_TABLEGEN setting.
95   if(${project} STREQUAL LLVM)
96     if(${LLVM_TABLEGEN} STREQUAL tblgen)
97       set(LLVM_TABLEGEN "${target}" CACHE
98           STRING "Native TableGen executable. Saves building one when cross-compiling."
99           FORCE)
100     endif()
101   endif()
102
103   # Effective tblgen executable to be used:
104   set(${project}_TABLEGEN_EXE ${${project}_TABLEGEN} PARENT_SCOPE)
105   set(${project}_TABLEGEN_TARGET ${${project}_TABLEGEN} PARENT_SCOPE)
106
107   if(LLVM_USE_HOST_TOOLS)
108     if( ${${project}_TABLEGEN} STREQUAL "${target}" )
109       if (NOT CMAKE_CONFIGURATION_TYPES)
110         set(${project}_TABLEGEN_EXE "${LLVM_NATIVE_BUILD}/bin/${target}")
111       else()
112         set(${project}_TABLEGEN_EXE "${LLVM_NATIVE_BUILD}/Release/bin/${target}")
113       endif()
114       set(${project}_TABLEGEN_EXE ${${project}_TABLEGEN_EXE} PARENT_SCOPE)
115
116       add_custom_command(OUTPUT ${${project}_TABLEGEN_EXE}
117         COMMAND ${CMAKE_COMMAND} --build . --target ${target} --config Release
118         DEPENDS CONFIGURE_LLVM_NATIVE ${target}
119         WORKING_DIRECTORY ${LLVM_NATIVE_BUILD}
120         COMMENT "Building native TableGen...")
121       add_custom_target(${project}-tablegen-host DEPENDS ${${project}_TABLEGEN_EXE})
122       set(${project}_TABLEGEN_TARGET ${project}-tablegen-host PARENT_SCOPE)
123     endif()
124   endif()
125
126   if( MINGW )
127     if(CMAKE_SIZEOF_VOID_P MATCHES "8")
128       set_target_properties(${target} PROPERTIES LINK_FLAGS -Wl,--stack,16777216)
129     endif(CMAKE_SIZEOF_VOID_P MATCHES "8")
130   endif( MINGW )
131   if (${project} STREQUAL LLVM AND NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
132     install(TARGETS ${target}
133             EXPORT LLVMExports
134             RUNTIME DESTINATION bin)
135   endif()
136   set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${target})
137 endmacro()