Reimplement r108639 in InstCombine rather than DAGCombine.
[oota-llvm.git] / Makefile
1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 #===------------------------------------------------------------------------===#
9
10 LEVEL := .
11
12 # Top-Level LLVM Build Stages:
13 #   1. Build lib/System and lib/Support, which are used by utils (tblgen).
14 #   2. Build utils, which is used by VMCore.
15 #   3. Build VMCore, which builds the Intrinsics.inc file used by libs.
16 #   4. Build libs, which are needed by llvm-config.
17 #   5. Build llvm-config, which determines inter-lib dependencies for tools.
18 #   6. Build tools, runtime, docs.
19 #
20 # When cross-compiling, there are some things (tablegen) that need to
21 # be build for the build system first.
22
23 # If "RC_ProjectName" exists in the environment, and its value is
24 # "llvmCore", then this is an "Apple-style" build; search for
25 # "Apple-style" in the comments for more info.  Anything else is a
26 # normal build.
27 ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore)  # Normal build (not "Apple-style").
28
29 ifeq ($(BUILD_DIRS_ONLY),1)
30   DIRS := lib/System lib/Support utils
31   OPTIONAL_DIRS :=
32 else
33   DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-shlib \
34           tools/llvm-config tools runtime docs unittests
35   OPTIONAL_DIRS := projects bindings
36 endif
37
38 ifeq ($(BUILD_EXAMPLES),1)
39   OPTIONAL_DIRS += examples
40 endif
41
42 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
43
44 include $(LEVEL)/Makefile.config
45
46 ifneq ($(ENABLE_SHARED),1)
47   DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
48 endif
49
50 ifeq ($(MAKECMDGOALS),libs-only)
51   DIRS := $(filter-out tools runtime docs, $(DIRS))
52   OPTIONAL_DIRS :=
53 endif
54
55 ifeq ($(MAKECMDGOALS),install-libs)
56   DIRS := $(filter-out tools runtime docs, $(DIRS))
57   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
58 endif
59
60 ifeq ($(MAKECMDGOALS),tools-only)
61   DIRS := $(filter-out runtime docs, $(DIRS))
62   OPTIONAL_DIRS :=
63 endif
64
65 ifeq ($(MAKECMDGOALS),install-clang)
66   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
67           tools/clang/runtime tools/clang/docs \
68           tools/lto
69   OPTIONAL_DIRS :=
70   NO_INSTALL = 1
71 endif
72
73 ifeq ($(MAKECMDGOALS),install-clang-c)
74   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
75           tools/clang/tools/libclang tools/clang/tools/c-index-test \
76           tools/clang/include/clang-c
77   OPTIONAL_DIRS :=
78   NO_INSTALL = 1
79 endif
80
81 ifeq ($(MAKECMDGOALS),clang-only)
82   DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) \
83           tools/clang tools/lto
84   OPTIONAL_DIRS :=
85 endif
86
87 ifeq ($(MAKECMDGOALS),unittests)
88   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
89   OPTIONAL_DIRS :=
90 endif
91
92 # Use NO_INSTALL define of the Makefile of each directory for deciding
93 # if the directory is installed or not
94 ifeq ($(MAKECMDGOALS),install)
95   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
96 endif
97
98 # If we're cross-compiling, build the build-hosted tools first
99 ifeq ($(LLVM_CROSS_COMPILING),1)
100 all:: cross-compile-build-tools
101
102 clean::
103         $(Verb) rm -rf BuildTools
104
105 cross-compile-build-tools:
106         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
107           $(MKDIR) BuildTools; \
108           cd BuildTools ; \
109           unset CFLAGS ; \
110           unset CXXFLAGS ; \
111           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
112                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
113           cd .. ; \
114         fi; \
115         ($(MAKE) -C BuildTools \
116           BUILD_DIRS_ONLY=1 \
117           UNIVERSAL= \
118           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
119           ENABLE_PROFILING=$(ENABLE_PROFILING) \
120           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
121           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
122           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
123           CFLAGS= \
124           CXXFLAGS= \
125         ) || exit 1;
126 endif
127
128 # Include the main makefile machinery.
129 include $(LLVM_SRC_ROOT)/Makefile.rules
130
131 # Specify options to pass to configure script when we're
132 # running the dist-check target
133 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
134
135 .PHONY: debug-opt-prof
136 debug-opt-prof:
137         $(Echo) Building Debug Version
138         $(Verb) $(MAKE)
139         $(Echo)
140         $(Echo) Building Optimized Version
141         $(Echo)
142         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
143         $(Echo)
144         $(Echo) Building Profiling Version
145         $(Echo)
146         $(Verb) $(MAKE) ENABLE_PROFILING=1
147
148 dist-hook::
149         $(Echo) Eliminating files constructed by configure
150         $(Verb) $(RM) -f \
151           $(TopDistDir)/include/llvm/Config/config.h  \
152           $(TopDistDir)/include/llvm/System/DataTypes.h
153
154 clang-only: all
155 tools-only: all
156 libs-only: all
157 install-clang: install
158 install-clang-c: install
159 install-libs: install
160
161 #------------------------------------------------------------------------
162 # Make sure the generated headers are up-to-date. This must be kept in
163 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
164 #------------------------------------------------------------------------
165 FilesToConfig := \
166   include/llvm/Config/config.h \
167   include/llvm/Config/Targets.def \
168   include/llvm/Config/AsmPrinters.def \
169   include/llvm/Config/AsmParsers.def \
170   include/llvm/Config/Disassemblers.def \
171   include/llvm/System/DataTypes.h \
172   tools/llvmc/plugins/Base/Base.td
173 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
174
175 all-local:: $(FilesToConfigPATH)
176 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
177         $(Echo) Regenerating $*
178         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
179 .PRECIOUS: $(FilesToConfigPATH)
180
181 # NOTE: This needs to remain as the last target definition in this file so
182 # that it gets executed last.
183 ifneq ($(BUILD_DIRS_ONLY),1)
184 all::
185         $(Echo) '*****' Completed $(BuildMode) Build
186 ifneq ($(ENABLE_OPTIMIZED),1)
187         $(Echo) '*****' Note: Debug build can be 10 times slower than an
188         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
189         $(Echo) '*****' make an optimized build. Alternatively you can
190         $(Echo) '*****' configure with --enable-optimized.
191 endif
192 endif
193
194 check-llvm2cpp:
195         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
196
197 check-one:
198         $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
199
200 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
201         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
202
203 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
204         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
205
206 show-footprint:
207         $(Verb) du -sk $(LibDir)
208         $(Verb) du -sk $(ToolDir)
209         $(Verb) du -sk $(ExmplDir)
210         $(Verb) du -sk $(ObjDir)
211
212 build-for-llvm-top:
213         $(Verb) if test ! -f ./config.status ; then \
214           ./configure --prefix="$(LLVM_TOP)/install" \
215             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
216         fi
217         $(Verb) $(MAKE) tools-only
218
219 SVN = svn
220 SVN-UPDATE-OPTIONS =
221 AWK = awk
222 SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}'   \
223                 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
224                 | $(AWK) '/Path:\ / {print $$2}'
225
226 update:
227         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
228         @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
229
230 happiness: update all check-all
231
232 .PHONY: srpm rpm update happiness
233
234 # declare all targets at this level to be serial:
235
236 .NOTPARALLEL:
237
238 else # Building "Apple-style."
239 # In an Apple-style build, once configuration is done, lines marked
240 # "Apple-style" are removed with sed!  Please don't remove these!
241 # Look for the string "Apple-style" in utils/buildit/build_llvm.
242 include $(shell find . -name GNUmakefile) # Building "Apple-style."
243 endif # Building "Apple-style."