blob: df533ca8bd53778612895a30da78de90ebf08547 [file] [log] [blame]
Derek Schuffbc643132014-05-22 16:39:25 -07001# The following variables will likely need to be modified, depending on where
2# and how you built LLVM & Clang. They can be overridden in a command-line
3# invocation of make, like:
4#
Jim Stichnoth0a9e1262015-04-21 09:59:21 -07005# make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \
Jan Voung44c3a802015-03-27 16:29:08 -07006# PNACL_BIN_PATH=<path> ...
Derek Schuffbc643132014-05-22 16:39:25 -07007#
8
9# LLVM_SRC_PATH is the path to the root of the checked out source code. This
10# directory should contain the configure script, the include/ and lib/
11# directories of LLVM, Clang in tools/clang/, etc.
12# Alternatively, if you're building vs. a binary download of LLVM, then
13# LLVM_SRC_PATH can point to the main untarred directory.
14LLVM_SRC_PATH ?= ../llvm
15
Jan Voung44c3a802015-03-27 16:29:08 -070016# The x86-32-specific sandboxed translator directory.
17# It holds sandboxed versions of libraries and binaries.
18SB_LLVM_PATH ?= $(shell readlink -e \
Jim Stichnoth2e7de232015-11-02 08:25:57 -080019 ../../out/sandboxed_translators_work/translator-i686/llvm-sb/Release)
Jan Voung44c3a802015-03-27 16:29:08 -070020
21# NACL_ROOT is the root of the native client repository.
22NACL_ROOT ?= $(shell python -c "import sys; sys.path.insert(0, 'pydir'); \
Jim Stichnoth2e7de232015-11-02 08:25:57 -080023 import utils; print utils.FindBaseNaCl()")
Jan Voung44c3a802015-03-27 16:29:08 -070024
Jan Voung8e32fed2015-06-17 10:16:23 -070025# TOOLCHAIN_ROOT is the location of NaCl/PNaCl toolchains and other
26# tools like qemu.
27TOOLCHAIN_ROOT ?= $(shell readlink -e $(NACL_ROOT)/toolchain/linux_x86)
28
Jan Voung68a06332015-03-05 14:33:38 -080029# PNACL_TOOLCHAIN_ROOT is the location of the PNaCl toolchain.
30# This is used as the default root for finding binutils, libcxx, etc.
Jan Voung8e32fed2015-06-17 10:16:23 -070031PNACL_TOOLCHAIN_ROOT ?= $(shell readlink -e $(TOOLCHAIN_ROOT)/pnacl_newlib_raw)
Jan Voung44c3a802015-03-27 16:29:08 -070032
33# The location of PNaCl tools (e.g., binutils objdump, pnacl-clang++, etc.).
34PNACL_BIN_PATH ?= $(shell readlink -e $(PNACL_TOOLCHAIN_ROOT)/bin)
Karl Schimpf8fcefc32014-09-15 12:56:50 -070035
Reed Kotler2c3c82e2016-01-21 20:33:08 -080036# Allow tests to be overridden, e.g.:
37# make -f Makefile.standalone check-lit \
38# CHECK_LIT_TESTS="tests_lit/llvm2ice_tests/{alloc,arith}.ll"
39# make -f Makefile.standalone check-xtest \
40# CHECK_XTEST_TESTS=crosstest/Output/simple_loop_x8632_native_O2_sse2.xtest
41CHECK_LIT_TESTS ?= tests_lit
42CHECK_XTEST_TESTS ?= crosstest/Output
43
Jim Stichnoth0a9e1262015-04-21 09:59:21 -070044# Hack to auto-detect autoconf versus cmake build of LLVM. If the LLVM tools
Jim Stichnothe5b58fb2015-06-01 15:17:20 -070045# were dynamically linked with something like libLLVM-3.7svn.so, it is an
Jim Stichnoth0a9e1262015-04-21 09:59:21 -070046# autoconf build, otherwise it is a cmake build. AUTOCONF is set to 0 for
47# cmake, nonzero for autoconf.
48AUTOCONF ?= $(shell ldd $(PNACL_BIN_PATH)/opt | grep -c libLLVM-)
49
Jan Voung68a06332015-03-05 14:33:38 -080050# CLANG_PATH is the location of the clang compiler to use for building
51# the host binaries.
Karl Schimpf8fcefc32014-09-15 12:56:50 -070052CLANG_PATH ?= $(shell readlink -e \
Jim Stichnoth2e7de232015-11-02 08:25:57 -080053 $(NACL_ROOT)/../third_party/llvm-build/Release+Asserts/bin)
Karl Schimpf8fcefc32014-09-15 12:56:50 -070054
Jan Voung68a06332015-03-05 14:33:38 -080055# LIBCXX_INSTALL_PATH is the directory where libc++ is located. It should
56# contain header files and corresponding libraries. This is used for
57# building the host binaries in conjuction with clang.
58LIBCXX_INSTALL_PATH ?= $(PNACL_TOOLCHAIN_ROOT)
Karl Schimpf9d928542015-04-16 15:08:05 -070059STDLIB_FLAGS := -stdlib=libc++ -I$(LIBCXX_INSTALL_PATH)/include/c++/v1
Jan Voung68a06332015-03-05 14:33:38 -080060
Jan Voung4c127ba2014-09-19 13:11:36 -070061HOST_ARCH ?= x86_64
Jan Voung839c4ce2014-07-28 15:19:43 -070062ifeq ($(HOST_ARCH),x86_64)
Jim Stichnoth6c6adf12015-04-07 14:22:25 -070063 HOST_FLAGS = -m64
Jan Voung839c4ce2014-07-28 15:19:43 -070064else
65 ifeq ($(HOST_ARCH),x86)
Jim Stichnoth6c6adf12015-04-07 14:22:25 -070066 HOST_FLAGS = -m32
Jan Voung839c4ce2014-07-28 15:19:43 -070067 endif
68endif
69
Jim Stichnothfddef242014-09-26 18:53:41 -070070ifdef DEBUG
71 OBJDIR = build/Debug
72 OPTLEVEL = -O0
Jan Voung44c3a802015-03-27 16:29:08 -070073 LINKOPTLEVEL = -O0
Jim Stichnothfddef242014-09-26 18:53:41 -070074else
75 OBJDIR = build/Release
Jim Stichnotha49e9d92014-12-07 14:25:34 -080076 OPTLEVEL = -O2 -ffunction-sections -fdata-sections
Jan Voung44c3a802015-03-27 16:29:08 -070077 LINKOPTLEVEL = -O2
Jim Stichnothfddef242014-09-26 18:53:41 -070078endif
79
Karl Schimpfb262c5e2014-10-27 14:41:57 -070080# The list of CXX defines that are dependent on build parameters.
Jan Voung44c3a802015-03-27 16:29:08 -070081BASE_CXX_DEFINES =
Jim Stichnothfa4efea2015-01-27 05:06:03 -080082CXX_EXTRA =
83LD_EXTRA =
Karl Schimpfb262c5e2014-10-27 14:41:57 -070084
85ifdef MINIMAL
Jim Stichnothe3c02c22014-12-05 14:16:07 -080086 NOASSERT = 1
Jim Stichnothb88d8c82016-03-11 15:33:00 -080087 NODUMP = 1
Karl Schimpfb262c5e2014-10-27 14:41:57 -070088 OBJDIR := $(OBJDIR)+Min
Jim Stichnothb88d8c82016-03-11 15:33:00 -080089 BASE_CXX_DEFINES += -DALLOW_LLVM_CL=0 -DALLOW_LLVM_IR=0 \
90 -DALLOW_LLVM_IR_AS_INPUT=0 -DALLOW_TIMERS=0 -DALLOW_MINIMAL_BUILD=1
Karl Schimpfb262c5e2014-10-27 14:41:57 -070091else
Jim Stichnothb88d8c82016-03-11 15:33:00 -080092 BASE_CXX_DEFINES += -DALLOW_LLVM_CL=1 -DALLOW_LLVM_IR=1 \
93 -DALLOW_LLVM_IR_AS_INPUT=1 -DALLOW_TIMERS=1 -DALLOW_MINIMAL_BUILD=0
94endif
95
96ifdef NODUMP
97 OBJDIR := $(OBJDIR)+NoDump
98 BASE_CXX_DEFINES += -DALLOW_DUMP=0
99else
100 BASE_CXX_DEFINES += -DALLOW_DUMP=1
Karl Schimpfb262c5e2014-10-27 14:41:57 -0700101endif
102
Jim Stichnoth999a22f2016-03-12 10:22:53 -0800103# Restrict to a single supported target. Current options:
104# SZTARGET=ARM32
105# SZTARGET=MIPS32
106# SZTARGET=X8632
107# SZTARGET=X8664
108ifdef SZTARGET
109 OBJDIR := $(OBJDIR)+T_$(SZTARGET)
110 BASE_CXX_DEFINES += -DSZTARGET=$(SZTARGET)
111endif
112
Jan Voung44c3a802015-03-27 16:29:08 -0700113CXX_DEFINES := $(BASE_CXX_DEFINES) -DPNACL_BROWSER_TRANSLATOR=0
114
Jim Stichnoth9c234e22014-10-01 09:28:21 -0700115ifdef NOASSERT
116 ASSERTIONS = -DNDEBUG
117else
118 ASSERTIONS =
119 OBJDIR := $(OBJDIR)+Asserts
120endif
121
Andrew Scull6ef79492015-09-09 15:50:42 -0700122ifdef UBSAN
123 OBJDIR := $(OBJDIR)+UBSan
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800124 CXX_EXTRA += -fsanitize=undefined -fno-sanitize=vptr \
125 -fno-sanitize=nonnull-attribute
Andrew Scull6ef79492015-09-09 15:50:42 -0700126 LD_EXTRA += -fsanitize=undefined
127endif
128
129ifdef UBSAN_TRAP
130 OBJDIR := $(OBJDIR)+UBSan_Trap
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800131 CXX_EXTRA += -fsanitize=undefined-trap -fsanitize-undefined-trap-on-error \
132 -fno-sanitize=vptr -fno-sanitize=nonnull-attribute
Andrew Scull6ef79492015-09-09 15:50:42 -0700133 LD_EXTRA += -fsanitize=undefined-trap
134endif
135
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800136ifdef TSAN
137 OBJDIR := $(OBJDIR)+TSan
138 CXX_EXTRA += -fsanitize=thread
139 LD_EXTRA += -fsanitize=thread
140endif
141
Andrew Scull86df4e92015-07-30 13:54:44 -0700142ifdef ASAN
143 OBJDIR := $(OBJDIR)+ASan
144 CXX_EXTRA += -fsanitize=address
145 LD_EXTRA += -fsanitize=address
146endif
147
Andrew Scull6ef79492015-09-09 15:50:42 -0700148ifdef MSAN
Andrew Scull00741a02015-09-16 19:04:09 -0700149 # TODO(ascull): this has an as yet undiagnosed uninitialized memory access
Andrew Scull6ef79492015-09-09 15:50:42 -0700150 OBJDIR := $(OBJDIR)+MSan
151 CXX_EXTRA += -fsanitize=memory
152 LD_EXTRA += -fsanitize=memory
153endif
154
David Sehrb19d39c2016-01-13 14:17:37 -0800155ifdef FORCEASM
156 FORCEASM_FLAG = --filetype=asm
157 # With --filetype=asm and --sandbox, the llvm-mc assembler emits the lock and
158 # 16-bit prefixes in the "wrong" order, causing the validator to reject the
159 # resulting nexe. So we just disable those tests for now.
160 FORCEASM_XTEST_EXCLUDES = -e x8632,sandbox,test_sync_atomic
161 FORCEASM_LIT_PARAM = --param=FORCEASM
John Porto27fddcc2016-02-02 15:06:09 -0800162 # x86 sandboxing lit tests are disabled because filetype=asm does not
163 # handle bundle_lock pad-to-end correctly.
John Porto56958cb2016-01-14 09:18:18 -0800164 # TODO(jpp): fix this.
165 FORCEASM_LIT_TEST_EXCLUDES = --filter='^(?!.*/x86/sandboxing.ll).*'
David Sehrb19d39c2016-01-13 14:17:37 -0800166else
167 FORCEASM_FLAG =
168 FORCEASM_XTEST_EXCLUDES =
169 FORCEASM_LIT_PARAM =
John Porto56958cb2016-01-14 09:18:18 -0800170 FORCEASM_LIT_TEST_EXCLUDES =
David Sehrb19d39c2016-01-13 14:17:37 -0800171endif
172
David Sehr4c16ac02016-03-17 13:51:42 -0700173ifdef LINUX_MALLOC_PROFILE
174 OBJDIR := $(OBJDIR)+MalProf
175 CXX_EXTRA += -DALLOW_LINUX_MALLOC_PROFILE=1
176 LD_EXTRA += -Wl,--export-dynamic
177endif
178
Jan Voung44c3a802015-03-27 16:29:08 -0700179SB_OBJDIR := $(OBJDIR)+Sandboxed
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800180SBB_OBJDIR := $(OBJDIR)+SandboxedBrowser
Jan Voung44c3a802015-03-27 16:29:08 -0700181
Derek Schuffbc643132014-05-22 16:39:25 -0700182$(info -----------------------------------------------)
183$(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH))
Jan Voung44c3a802015-03-27 16:29:08 -0700184$(info Using SB_LLVM_PATH = $(SB_LLVM_PATH))
185$(info Using NACL_ROOT = $(NACL_ROOT))
Jan Voung8e32fed2015-06-17 10:16:23 -0700186$(info Using TOOLCHAIN_ROOT = $(TOOLCHAIN_ROOT))
Jan Voung68a06332015-03-05 14:33:38 -0800187$(info Using PNACL_TOOLCHAIN_ROOT = $(PNACL_TOOLCHAIN_ROOT))
Jan Voung44c3a802015-03-27 16:29:08 -0700188$(info Using PNACL_BIN_PATH = $(PNACL_BIN_PATH))
Karl Schimpf8fcefc32014-09-15 12:56:50 -0700189$(info Using CLANG_PATH = $(CLANG_PATH))
Jan Voung68a06332015-03-05 14:33:38 -0800190$(info Using LIBCXX_INSTALL_PATH = $(LIBCXX_INSTALL_PATH))
Jan Voung839c4ce2014-07-28 15:19:43 -0700191$(info Using HOST_ARCH = $(HOST_ARCH))
Derek Schuffbc643132014-05-22 16:39:25 -0700192$(info -----------------------------------------------)
193
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700194LLVM_CXXFLAGS := `$(PNACL_BIN_PATH)/llvm-config --cxxflags`
Jan Voung44c3a802015-03-27 16:29:08 -0700195SB_LLVM_CXXFLAGS := $(LLVM_CXXFLAGS)
196
197# Listing specific libraries that are needed for pnacl-sz
198# and the unittests, since we build "tools-only" for the
199# sandboxed_translators (which doesn't include every library
200# listed by llvm-config).
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700201
202LLVM_LIBS_LIST := -lLLVMIRReader -lLLVMBitReader -lLLVMNaClBitTestUtils \
203 -lLLVMNaClBitReader -lLLVMNaClBitAnalysis -lLLVMNaClBitWriter \
204 -lLLVMAsmParser -lLLVMNaClAnalysis -lLLVMCore -lLLVMSupport
205
206ifeq ($(AUTOCONF), 0)
207 # LLVM cmake build
Karl Schimpf28f3f732015-06-24 09:32:40 -0700208 LLVM_LIBS := $(LLVM_LIBS_LIST)
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700209 # For the cmake build, the gtest libs end up in the same place as the LLVM
210 # libs, so no "-L..." arg is needed.
211 GTEST_LIB_PATH ?=
212 CLANG_FORMAT_PATH ?= $(PNACL_BIN_PATH)
213else
214 # LLVM autoconf build
Jim Stichnothe5b58fb2015-06-01 15:17:20 -0700215 LLVM_LIBS := -lLLVM-3.7svn
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700216 GTEST_LIB_PATH ?= -L../../out/llvm_x86_64_linux_work/Release+Asserts/lib
217 CLANG_FORMAT_PATH ?= ../../out/llvm_x86_64_linux_work/Release+Asserts/bin
218endif
219
Jan Voung44c3a802015-03-27 16:29:08 -0700220LLVM_LDFLAGS := $(LLVM_LIBS) \
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700221 `$(PNACL_BIN_PATH)/llvm-config --ldflags` \
222 `$(PNACL_BIN_PATH)/llvm-config --system-libs`
Jim Stichnoth7a20a402016-02-24 21:32:53 -0800223SB_LLVM_LDFLAGS := -Wl,--start-group $(LLVM_LIBS_LIST) -Wl,--end-group \
Jan Voung44c3a802015-03-27 16:29:08 -0700224 -L$(SB_LLVM_PATH)/lib
Derek Schuffbc643132014-05-22 16:39:25 -0700225
Jim Stichnoth5e06f9f2014-09-17 08:41:21 -0700226CCACHE := `command -v ccache`
227CXX := CCACHE_CPP2=yes $(CCACHE) $(CLANG_PATH)/clang++
Jan Voung44c3a802015-03-27 16:29:08 -0700228SB_CXX := CCACHE_CPP2=yes $(CCACHE) $(PNACL_BIN_PATH)/pnacl-clang++
229SB_TRANSLATE := $(PNACL_BIN_PATH)/pnacl-translate
Jim Stichnoth7a20a402016-02-24 21:32:53 -0800230SB_FINALIZE := $(PNACL_BIN_PATH)/pnacl-finalize --no-strip-syms
Jan Voung839c4ce2014-07-28 15:19:43 -0700231
Jan Voungc2648c22015-07-30 21:29:14 -0700232# Extra warnings that LLVM's build system adds in addition to -Wall.
233LLVM_EXTRA_WARNINGS := -Wcovered-switch-default
234
Jim Stichnothcaeaa272016-01-10 12:53:44 -0800235# Use g++ to compile, to check for errors/warnings that clang++ might have
236# missed. It's unlikely to link, unless LLVM was also built with g++, so the
237# compile_only target should be used. Note: This ifdef section is deliberately
238# placed here instead of with the other ifdef sections, so that its redefinition
239# of CXX/STDLIB_FLAGS/LLVM_EXTRA_WARNINGS follows their normal definitions.
240ifdef GPLUSPLUS
241 CXX := CCACHE_CPP2=yes $(CCACHE) g++
242 STDLIB_FLAGS :=
Jim Stichnothb0051df2016-01-13 11:39:15 -0800243 LLVM_EXTRA_WARNINGS := \
244 -Wcast-qual \
245 -Wno-comment \
246 -Wno-long-long \
247 -Wno-maybe-uninitialized \
248 -Wno-missing-field-initializers \
249 -Wno-unused-parameter \
250 -Wwrite-strings
Jim Stichnothcaeaa272016-01-10 12:53:44 -0800251 OBJDIR := $(OBJDIR)+Gplusplus
252endif
253
Jan Voung44c3a802015-03-27 16:29:08 -0700254BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -Werror -fno-rtti \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800255 -fno-exceptions $(OPTLEVEL) $(ASSERTIONS) -g -pedantic \
John Porto70e3f1c2016-03-16 04:20:49 -0700256 $(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) -MP -MD
Jan Voung44c3a802015-03-27 16:29:08 -0700257
258CXXFLAGS := $(LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(CXX_DEFINES) $(HOST_FLAGS) \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800259 $(STDLIB_FLAGS)
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800260SB_CXXFLAGS := $(SB_LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(BASE_CXX_DEFINES) \
261 -Wno-unknown-pragmas -I$(NACL_ROOT) -I$(NACL_ROOT)/..
Jan Voung44c3a802015-03-27 16:29:08 -0700262
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800263LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800264 $(LD_EXTRA) $(STDLIB_FLAGS)
Jan Voung44c3a802015-03-27 16:29:08 -0700265# Not specifying -Wl,--gc-sections but instead doing bitcode linking GC w/ LTO.
266SB_LDFLAGS := $(LINKOPTLEVEL) $(LD_EXTRA)
Derek Schuffbc643132014-05-22 16:39:25 -0700267
Jim Stichnothc59288b2015-11-09 11:38:40 -0800268# List the target-specific source files first, which generally take longer to
269# compile, in the hope of improving parallel build time.
Karl Schimpfab06df32014-10-29 14:58:25 -0700270SRCS = \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800271 IceAssemblerARM32.cpp \
Jim Stichnothc59288b2015-11-09 11:38:40 -0800272 IceInstARM32.cpp \
273 IceInstMIPS32.cpp \
274 IceInstX8632.cpp \
275 IceInstX8664.cpp \
276 IceTargetLowering.cpp \
277 IceTargetLoweringARM32.cpp \
278 IceTargetLoweringMIPS32.cpp \
David Sehr6b80cf12016-01-21 23:16:58 -0800279 IceTargetLoweringX86.cpp \
Jim Stichnothc59288b2015-11-09 11:38:40 -0800280 IceTargetLoweringX8632.cpp \
281 IceTargetLoweringX8664.cpp \
282 IceAssembler.cpp \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800283 IceBrowserCompileServer.cpp \
284 IceCfg.cpp \
285 IceCfgNode.cpp \
286 IceClFlags.cpp \
287 IceCompiler.cpp \
288 IceCompileServer.cpp \
289 IceELFObjectWriter.cpp \
290 IceELFSection.cpp \
291 IceFixups.cpp \
292 IceGlobalContext.cpp \
293 IceGlobalInits.cpp \
294 IceInst.cpp \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800295 IceIntrinsics.cpp \
296 IceLiveness.cpp \
297 IceLoopAnalyzer.cpp \
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800298 IceMangling.cpp \
John Portoe82b5602016-02-24 15:58:55 -0800299 IceMemory.cpp \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800300 IceOperand.cpp \
301 IceRegAlloc.cpp \
302 IceRNG.cpp \
303 IceSwitchLowering.cpp \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800304 IceThreading.cpp \
305 IceTimerTree.cpp \
306 IceTranslator.cpp \
307 IceTypes.cpp \
David Sehr4c16ac02016-03-17 13:51:42 -0700308 LinuxMallocProfiling.cpp \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800309 main.cpp \
310 PNaClTranslator.cpp
Derek Schuffbc643132014-05-22 16:39:25 -0700311
Karl Schimpfab06df32014-10-29 14:58:25 -0700312ifndef MINIMAL
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800313 SRCS += \
314 IceConverter.cpp \
315 IceTypeConverter.cpp
Karl Schimpfab06df32014-10-29 14:58:25 -0700316endif
317
Jim Stichnothfddef242014-09-26 18:53:41 -0700318OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS))
Jan Voung44c3a802015-03-27 16:29:08 -0700319SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS))
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800320SBB_OBJS=$(patsubst %.cpp, $(SBB_OBJDIR)/%.o, $(SRCS))
Derek Schuffbc643132014-05-22 16:39:25 -0700321
Jan Voung08c3bcd2014-12-01 17:55:16 -0800322UNITTEST_SRCS = \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800323 BitcodeMunge.cpp \
324 IceELFSectionTest.cpp \
325 IceParseInstsTest.cpp
John Porto59f2d922015-07-31 13:45:48 -0700326
327# The X86 assembler tests take too long to compile. Given how infrequently the
328# assembler will change, we disable them.
329ifdef CHECK_X86_ASM
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800330 ifndef DEBUG
331 $(error Run check-unit with DEBUG=1 lest your machine perish)
332 endif
John Porto59f2d922015-07-31 13:45:48 -0700333 UNITTEST_SRCS += AssemblerX8632/LowLevel.cpp \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800334 AssemblerX8632/DataMov.cpp \
335 AssemblerX8632/Locked.cpp \
336 AssemblerX8632/GPRArith.cpp \
337 AssemblerX8632/XmmArith.cpp \
338 AssemblerX8632/ControlFlow.cpp \
339 AssemblerX8632/Other.cpp \
340 AssemblerX8632/X87.cpp \
341 AssemblerX8664/LowLevel.cpp \
342 AssemblerX8664/DataMov.cpp \
343 AssemblerX8664/Locked.cpp \
344 AssemblerX8664/GPRArith.cpp \
345 AssemblerX8664/XmmArith.cpp \
346 AssemblerX8664/ControlFlow.cpp \
347 AssemblerX8664/Other.cpp
John Porto59f2d922015-07-31 13:45:48 -0700348endif
Jan Voung08c3bcd2014-12-01 17:55:16 -0800349
350UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS))
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800351UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/main.o,$(OBJS))
Jan Voung08c3bcd2014-12-01 17:55:16 -0800352
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800353NEXES = $(SB_OBJDIR)/pnacl-sz.x8632.nexe \
354 $(SB_OBJDIR)/pnacl-sz.x8664.nexe \
355 $(SBB_OBJDIR)/pnacl_public_x86_32_pnacl_sz_nexe \
356 $(SBB_OBJDIR)/pnacl_public_x86_64_pnacl_sz_nexe
357
Derek Schuffbc643132014-05-22 16:39:25 -0700358# Keep all the first target so it's the default.
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800359all: $(OBJDIR)/pnacl-sz make_symlink runtime
Derek Schuffbc643132014-05-22 16:39:25 -0700360
Jan Voung44c3a802015-03-27 16:29:08 -0700361ifdef TSAN
362sb:
363 @echo "Skipping pnacl-sz.*.nexe: TSAN isn't supported under NaCl."
364else
Jim Stichnoth96fac392016-03-11 14:58:23 -0800365sb: $(NEXES) sb_make_symlink exists-sbtc
Jan Voung44c3a802015-03-27 16:29:08 -0700366endif
367
Karl Schimpf6f9ba112015-06-22 13:20:23 -0700368# SHOW_BUILD_ATTS is an executable that is run to show what build
369# attributes were used to build pnacl-sz.
Karl Schimpfcb6e95a2015-07-23 09:10:03 -0700370SHOW_BUILD_ATTS = $(OBJDIR)/pnacl-sz --build-atts
Karl Schimpf6f9ba112015-06-22 13:20:23 -0700371
Karl Schimpf6af63362014-10-29 14:55:00 -0700372# Creates symbolic link so that testing is easier. Also runs
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800373# pnacl-sz to verify that the defines flags have valid values,
Karl Schimpf6af63362014-10-29 14:55:00 -0700374# as well as describe the corresponding build attributes.
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800375make_symlink: $(OBJDIR)/pnacl-sz
376 rm -rf pnacl-sz
377 ln -s $(OBJDIR)/pnacl-sz
Karl Schimpf6af63362014-10-29 14:55:00 -0700378 @echo "Build Attributes:"
Karl Schimpf6f9ba112015-06-22 13:20:23 -0700379 @$(SHOW_BUILD_ATTS)
Derek Schuffbc643132014-05-22 16:39:25 -0700380
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800381sb_make_symlink: $(NEXES)
382 $(foreach nexe,$(NEXES),rm -rf $(notdir $(nexe)); ln -s $(nexe);)
383
384%.pexe : %.nonfinal.pexe
385 $(SB_FINALIZE) -o $@ $<
Jim Stichnoth7a20a402016-02-24 21:32:53 -0800386
Reed Kotler2c3c82e2016-01-21 20:33:08 -0800387.PHONY: all compile_only make_symlink runtime bloat sb docs help \
Jim Stichnoth96fac392016-03-11 14:58:23 -0800388 help-check-lit help-check-xtest exists-nonsfi-x8632 \
389 exists-nonsfi-arm32 exists-sbtc exists-spec
Jim Stichnoth23bee882015-11-17 06:14:05 -0800390
391compile_only: $(OBJS)
Jim Stichnothfddef242014-09-26 18:53:41 -0700392
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800393$(OBJDIR)/pnacl-sz: $(OBJS)
Jim Stichnoth33246422014-11-24 14:36:23 -0800394 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800395 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib)
Derek Schuffbc643132014-05-22 16:39:25 -0700396
Jim Stichnoth7a20a402016-02-24 21:32:53 -0800397$(SB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SB_OBJS)
398 $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS)
399
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800400$(SBB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SBB_OBJS)
401 $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) \
402 --pnacl-disable-abi-check
Jim Stichnoth7a20a402016-02-24 21:32:53 -0800403
404$(SB_OBJDIR)/pnacl-sz.x8632.nexe: $(SB_OBJDIR)/pnacl-sz.pexe
405 $(SB_TRANSLATE) -arch x86-32 $^ -o $@
406
407$(SB_OBJDIR)/pnacl-sz.x8664.nexe: $(SB_OBJDIR)/pnacl-sz.pexe
408 $(SB_TRANSLATE) -arch x86-64 $^ -o $@
Jan Voung44c3a802015-03-27 16:29:08 -0700409
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800410$(SBB_OBJDIR)/pnacl_public_x86_32_pnacl_sz_nexe: $(SBB_OBJDIR)/pnacl-sz.pexe
411 $(SB_TRANSLATE) -arch x86-32 $^ -o $@
412
413$(SBB_OBJDIR)/pnacl_public_x86_64_pnacl_sz_nexe: $(SBB_OBJDIR)/pnacl-sz.pexe
414 $(SB_TRANSLATE) -arch x86-64 $^ -o $@
415
John Porto2187c842015-12-16 07:48:25 -0800416src/IceRegistersARM32.def: pydir/gen_arm32_reg_tables.py
417 python $< > $@
418
John Porto70e3f1c2016-03-16 04:20:49 -0700419-include $(foreach dep,$(SRCS:.cpp=.d),$(OBJDIR)/$(dep))
420$(OBJS): $(OBJDIR)/%.o: src/%.cpp
Derek Schuffbc643132014-05-22 16:39:25 -0700421 $(CXX) -c $(CXXFLAGS) $< -o $@
422
John Porto70e3f1c2016-03-16 04:20:49 -0700423-include $(foreach dep,$(SRCS:.cpp=.d),$(SB_OBJDIR)/$(dep))
424$(SB_OBJS): $(SB_OBJDIR)/%.o: src/%.cpp
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800425 $(SB_CXX) -c $(SB_CXXFLAGS) -DPNACL_BROWSER_TRANSLATOR=0 $< -o $@
426
John Porto70e3f1c2016-03-16 04:20:49 -0700427-include $(foreach dep,$(SRCS:.cpp=.d),$(SBB_OBJDIR)/$(dep))
428$(SBB_OBJS): $(SBB_OBJDIR)/%.o: src/%.cpp
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800429 $(SB_CXX) -c $(SB_CXXFLAGS) -DPNACL_BROWSER_TRANSLATOR=1 $< -o $@
Jan Voung44c3a802015-03-27 16:29:08 -0700430
Jan Voung08c3bcd2014-12-01 17:55:16 -0800431$(OBJDIR)/run_unittests: $(UNITTEST_OBJS) $(UNITTEST_LIB_OBJS)
Jim Stichnothe7e9b022015-04-21 15:05:22 -0700432 $(CXX) $(GTEST_LIB_PATH) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800433 -lgtest -lgtest_main -ldl \
434 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib)
Jan Voung08c3bcd2014-12-01 17:55:16 -0800435
John Porto70e3f1c2016-03-16 04:20:49 -0700436-include $(foreach dep,$(UNITTEST_SRCS:.cpp=.d),$(OBJDIR)/unittest/$(dep))
437$(UNITTEST_OBJS): $(OBJDIR)/unittest/%.o: unittest/%.cpp
Jan Voung08c3bcd2014-12-01 17:55:16 -0800438 $(CXX) -c $(CXXFLAGS) \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800439 -Isrc/ \
440 -Iunittest/ \
441 -I$(LLVM_SRC_PATH)/utils/unittest/googletest/include \
442 -I$(LLVM_SRC_PATH) \
443 -DGTEST_HAS_RTTI=0 -DGTEST_USE_OWN_TR1_TUPLE \
Jim Stichnoth5526c172016-03-08 22:46:19 -0800444 -Wno-expansion-to-defined \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800445 $< -o $@
Jan Voung08c3bcd2014-12-01 17:55:16 -0800446
Jim Stichnothfddef242014-09-26 18:53:41 -0700447$(OBJS): | $(OBJDIR)
Jan Voung44c3a802015-03-27 16:29:08 -0700448$(SB_OBJS): | $(SB_OBJDIR)
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800449$(SBB_OBJS): | $(SBB_OBJDIR)
Derek Schuffbc643132014-05-22 16:39:25 -0700450
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800451$(UNITTEST_OBJS): | $(OBJDIR)/unittest $(OBJDIR)/unittest/AssemblerX8632 \
452 $(OBJDIR)/unittest/AssemblerX8664
Jan Voung08c3bcd2014-12-01 17:55:16 -0800453
Jim Stichnothfddef242014-09-26 18:53:41 -0700454$(OBJDIR):
Derek Schuffbc643132014-05-22 16:39:25 -0700455 @mkdir -p $@
Jan Voung44c3a802015-03-27 16:29:08 -0700456$(SB_OBJDIR):
457 @mkdir -p $@
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800458$(SBB_OBJDIR):
459 @mkdir -p $@
Derek Schuffbc643132014-05-22 16:39:25 -0700460
Jan Voung08c3bcd2014-12-01 17:55:16 -0800461$(OBJDIR)/unittest: $(OBJDIR)
462 @mkdir -p $@
463
John Porto2fea26c2015-07-28 16:28:07 -0700464$(OBJDIR)/unittest/AssemblerX8632: $(OBJDIR)/unittest
465 @mkdir -p $@
466$(OBJDIR)/unittest/AssemblerX8664: $(OBJDIR)/unittest
467 @mkdir -p $@
468
Jim Stichnoth8ff4b282016-01-04 15:39:06 -0800469RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c \
470 runtime/szrt_asm_x8632.s runtime/szrt_asm_x8664.s \
471 runtime/szrt_asm_arm32.s
Jan Voung050deaa2015-06-12 15:12:05 -0700472RT_OBJ := build/runtime/szrt_native_x8632.o build/runtime/szrt_sb_x8632.o \
Jim Stichnoth8ff4b282016-01-04 15:39:06 -0800473 build/runtime/szrt_nonsfi_x8632.o \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800474 build/runtime/szrt_native_x8664.o build/runtime/szrt_sb_x8664.o \
Jim Stichnoth8ff4b282016-01-04 15:39:06 -0800475 build/runtime/szrt_nonsfi_x8664.o \
476 build/runtime/szrt_native_arm32.o build/runtime/szrt_sb_arm32.o \
477 build/runtime/szrt_nonsfi_arm32.o
Jim Stichnoth9738a9e2015-02-23 16:39:06 -0800478
479runtime: $(RT_OBJ)
480
481# Use runtime.is.built so that build-runtime.py is invoked only once
482# even in a parallel build.
483.INTERMEDIATE: runtime.is.built
484$(RT_OBJ): runtime.is.built
John Portof8b4cc82015-06-09 18:06:19 -0700485runtime.is.built: $(RT_SRC) pydir/build-runtime.py
Jim Stichnoth9738a9e2015-02-23 16:39:06 -0800486 @echo ================ Building Subzero runtime ================
Jan Voung68a06332015-03-05 14:33:38 -0800487 ./pydir/build-runtime.py -v --pnacl-root $(PNACL_TOOLCHAIN_ROOT)
Jim Stichnoth9738a9e2015-02-23 16:39:06 -0800488
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800489check-lit: $(OBJDIR)/pnacl-sz make_symlink
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700490 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
Reed Kotler2c3c82e2016-01-21 20:33:08 -0800491 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_LIT_TESTS) \
John Porto56958cb2016-01-14 09:18:18 -0800492 $(FORCEASM_LIT_TEST_EXCLUDES) $(FORCEASM_LIT_PARAM)
Jim Stichnothac9c9432014-08-26 14:07:13 -0700493
Karl Schimpfab06df32014-10-29 14:58:25 -0700494ifdef MINIMAL
Jim Stichnothc9258222015-03-13 11:59:49 -0700495check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime
496 @echo "Crosstests disabled, minimal build"
Karl Schimpfab06df32014-10-29 14:58:25 -0700497else
Jim Stichnoth96fac392016-03-11 14:58:23 -0800498check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime \
499 exists-nonsfi-x8632 exists-nonsfi-arm32
Jim Stichnothdc7c5972015-03-10 11:17:15 -0700500 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1.
501 # For (slow) sandboxed tests, limit to Om1/sse4.1.
John Porto94e97f62016-02-18 08:02:10 -0800502 # run.py (used to run the sandboxed xtests) does not support
503 # specifying -cpu cortex-a15 to qemu, hence we disable the
504 # hwdiv-arm tests.
Jim Stichnothdc7c5972015-03-10 11:17:15 -0700505 ./pydir/crosstest_generator.py -v --lit \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800506 --toolchain-root $(TOOLCHAIN_ROOT) \
David Sehrb19d39c2016-01-13 14:17:37 -0800507 $(FORCEASM_FLAG) \
508 $(FORCEASM_XTEST_EXCLUDES) \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800509 -i x8632,native,sse2 \
510 -i x8632,native,sse4.1,test_vector_ops \
511 -i x8632,sandbox,sse4.1,Om1 \
Jim Stichnoth57a8aab2016-01-06 09:34:36 -0800512 -i x8632,nonsfi,sse2,O2 \
John Porto008f4ce2015-12-24 13:22:18 -0800513 -i x8664,native,sse2 \
514 -i x8664,native,sse4.1,test_vector_ops \
John Porto56958cb2016-01-14 09:18:18 -0800515 -i x8664,sandbox,sse4.1,Om1 \
John Porto94e97f62016-02-18 08:02:10 -0800516 -i arm32 \
John Portoe82b5602016-02-24 15:58:55 -0800517 -e arm32,sandbox,hwdiv-arm
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700518 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
Reed Kotler2c3c82e2016-01-21 20:33:08 -0800519 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS)
Karl Schimpfab06df32014-10-29 14:58:25 -0700520endif
Derek Schuffbc643132014-05-22 16:39:25 -0700521
Jim Stichnothc9258222015-03-13 11:59:49 -0700522check-unit: $(OBJDIR)/run_unittests
523 $(OBJDIR)/run_unittests
524
Jim Stichnothc59288b2015-11-09 11:38:40 -0800525# List the spec2k components in roughly reverse order of runtime, to help with
526# parallel execution speed.
527ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \
528 175.vpr 176.gcc 181.mcf 186.crafty 197.parser 254.gap 255.vortex \
529 300.twolf 252.eon
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800530.PHONY: $(ALLSPEC)
531
532TARGET := x8632
533ifeq ($(TARGET),x8632)
534 TARGETFLAG=x8632
535 SETUP=SetupGccX8632Opt
Jim Stichnothc8f56a32016-03-07 09:54:15 -0800536 SPEC := --filetype=obj
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800537endif
John Porto3c275ce2015-12-22 08:14:00 -0800538ifeq ($(TARGET),x8664)
539 TARGETFLAG=x8664
540 SETUP=SetupGccX8664Opt
Jim Stichnothc8f56a32016-03-07 09:54:15 -0800541 SPEC := --filetype=obj
John Porto3c275ce2015-12-22 08:14:00 -0800542endif
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800543ifeq ($(TARGET),arm32)
544 TARGETFLAG=arm32
545 SETUP=SetupGccArmOpt
Jim Stichnothc8f56a32016-03-07 09:54:15 -0800546 SPEC := --filetype=obj
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800547endif
Jim Stichnothc8f56a32016-03-07 09:54:15 -0800548SPECFLAGS := -O2
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800549SPECBUILDONLY := false
Jim Stichnothc59288b2015-11-09 11:38:40 -0800550%.spec2k: % $(OBJDIR)/pnacl-sz make_symlink runtime
Jim Stichnothbc3bd502016-01-20 15:01:39 -0800551 ./pydir/szbuild_spec2k.py -v \
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800552 $(SPECFLAGS) --target=$(TARGETFLAG) $(SPEC) $<
553 $(SPECBUILDONLY) || ( cd ../../../tests/spec2k; \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800554 ./run_all.sh RunTimedBenchmarks $(SETUP) train $< )
555
Jim Stichnoth96fac392016-03-11 14:58:23 -0800556check-spec: exists-spec $(ALLSPEC:=.spec2k)
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800557
Jim Stichnothc9258222015-03-13 11:59:49 -0700558check: check-lit check-unit check-xtest
559
Jim Stichnoth96fac392016-03-11 14:58:23 -0800560NONSFI_LOADER_X8632 = \
561 $(NACL_ROOT)/scons-out/opt-linux-x86-32/obj/src/nonsfi/loader/nonsfi_loader
562NONSFI_LOADER_ARM32 = \
563 $(NACL_ROOT)/scons-out/opt-linux-arm/obj/src/nonsfi/loader/nonsfi_loader
564SBTC_LIBFILE = $(SB_LLVM_PATH)/lib/libLLVMSupport.a
565SPEC_SAMPLE_PEXE = $(NACL_ROOT)/tests/spec2k/176.gcc/gcc.opt.stripped.pexe
566
567exists-nonsfi-x8632:
568 @if [ ! -f $(NONSFI_LOADER_X8632) ] ; then \
569 echo "Missing file $(NONSFI_LOADER_X8632)"; \
570 echo "Consider running 'scons nonsfi_loader'" \
571 "in the native_client directory."; \
572 exit 1 ; \
573 fi
574
575exists-nonsfi-arm32:
576 @if [ ! -f $(NONSFI_LOADER_ARM32) ] ; then \
577 echo "Missing file $(NONSFI_LOADER_ARM32)"; \
578 echo "Consider running 'scons platform=arm32 nonsfi_loader'" \
579 "in the native_client directory."; \
580 exit 1 ; \
581 fi
582
583exists-sbtc:
584 @if [ ! -f $(SBTC_LIBFILE) ] ; then \
585 echo "Missing file $(SBTC_LIBFILE)"; \
586 echo "Consider running 'toolchain_build_pnacl.py --build-sbtc'."; \
587 exit 1 ; \
588 fi
589
590exists-spec:
591 @if [ ! -f $(SPEC_SAMPLE_PEXE) ] ; then \
592 echo "Missing file $(SPEC_SAMPLE_PEXE)"; \
593 echo "Consider running" \
594 "'run_all.sh BuildBenchmarks 0 SetupPnaclX8632Opt'" \
595 "in the native_client/tests/spec2k directory."; \
596 exit 1 ; \
597 fi
598
599check-presubmit presubmit: exists-nonsfi-x8632 exists-nonsfi-arm32 \
600 exists-sbtc exists-spec
Jim Stichnoth23bee882015-11-17 06:14:05 -0800601# Make sure clang-format gets run.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800602 +make -f Makefile.standalone format
Jim Stichnoth23bee882015-11-17 06:14:05 -0800603# Verify MINIMAL build, plus proper usage of REQUIRES in lit tests.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800604 +make -f Makefile.standalone \
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800605 MINIMAL=1 check
Jim Stichnothfc22f772015-11-22 06:06:34 -0800606# Check that there are no g++ build errors or warnings.
607 +make -f Makefile.standalone \
608 GPLUSPLUS=1 compile_only
Jim Stichnoth23bee882015-11-17 06:14:05 -0800609# Check the x86 assembler unit tests.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800610 +make -f Makefile.standalone \
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800611 DEBUG=1 CHECK_X86_ASM=1 check-unit sb
David Sehrb19d39c2016-01-13 14:17:37 -0800612# Run lit tests, cross tests, unit tests, and spec2k/x86-32.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800613 +make -f Makefile.standalone \
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800614 check check-spec
John Porto4ab4fbe2016-01-20 13:44:30 -0800615# Run spec2k/x86-64.
616 +make -f Makefile.standalone \
617 TARGET=x8664 check-spec
Jim Stichnoth23bee882015-11-17 06:14:05 -0800618# Build spec2k under -Om1/x86-32, to check for liveness errors.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800619 +make -f Makefile.standalone \
620 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
John Porto4ab4fbe2016-01-20 13:44:30 -0800621# Build spec2k under -Om1/x86-64, to check for liveness errors.
622 +make -f Makefile.standalone \
623 SPECFLAGS='-Om1' TARGET=x8664 SPECBUILDONLY=true check-spec
Jim Stichnoth23bee882015-11-17 06:14:05 -0800624# Run spec2k for x86-32 without advanced phi lowering.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800625 +make -f Makefile.standalone \
Jim Stichnothc8f56a32016-03-07 09:54:15 -0800626 SPECFLAGS='-O2 --sz=--phi-edge-split=0' check-spec
John Porto4ab4fbe2016-01-20 13:44:30 -0800627# Run spec2k for x86-64 without advanced phi lowering.
628 +make -f Makefile.standalone \
Jim Stichnothc8f56a32016-03-07 09:54:15 -0800629 SPECFLAGS='-O2 --sz=--phi-edge-split=0' TARGET=x8664 check-spec
David Sehrb19d39c2016-01-13 14:17:37 -0800630# Run cross tests and lit tests to validate filetype=asm output.
631 +make -f Makefile.standalone \
632 FORCEASM=1 check-xtest check-lit
Jim Stichnoth23bee882015-11-17 06:14:05 -0800633# Build spec2k for arm32.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800634 +make -f Makefile.standalone \
635 TARGET=arm32 SPECBUILDONLY=true check-spec
Jim Stichnoth23bee882015-11-17 06:14:05 -0800636# Build spec2k under -Om1/arm32.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800637 +make -f Makefile.standalone \
638 TARGET=arm32 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
John Portob8196652016-01-19 06:19:14 -0800639# Run a few spec2k tests for arm32 using qemu. Keep the list sorted in
640# roughly reverse order of runtime.
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800641 +make -f Makefile.standalone \
John Portob8196652016-01-19 06:19:14 -0800642 TARGET=arm32 ALLSPEC='252.eon 254.gap 176.gcc 181.mcf' check-spec
Jim Stichnoth23bee882015-11-17 06:14:05 -0800643# Provide validation of user awesomeness!
Jim Stichnoth6c4ad842015-11-16 12:47:57 -0800644 echo Success
645
Jim Stichnothdd842db2015-01-27 12:53:53 -0800646FORMAT_BLACKLIST =
647# Add one of the following lines for each source file to ignore.
648FORMAT_BLACKLIST += ! -name IceParseInstsTest.cpp
Karl Schimpf74cd8832015-06-23 11:05:01 -0700649FORMAT_BLACKLIST += ! -name IceParseTypesTest.cpp
Karl Schimpf3e53dc92015-10-07 13:24:01 -0700650FORMAT_BLACKLIST += ! -name assembler_arm.h
651FORMAT_BLACKLIST += ! -name assembler_arm.cc
Derek Schuffbc643132014-05-22 16:39:25 -0700652format:
Jim Stichnoth0a9e1262015-04-21 09:59:21 -0700653 $(CLANG_FORMAT_PATH)/clang-format -style=LLVM -i \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800654 `find . -regex '.*\.\(c\|h\|cpp\)' $(FORMAT_BLACKLIST)`
Jim Stichnoth240e0f82014-07-09 16:53:40 -0700655
Jim Stichnoth240e0f82014-07-09 16:53:40 -0700656format-diff:
Jim Stichnoth206833c2014-08-07 10:58:05 -0700657 git diff -U0 `git merge-base HEAD master` | \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800658 PATH=$(PNACL_BIN_PATH):$(PATH) \
659 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \
660 -p1 -style=LLVM -i
Derek Schuffbc643132014-05-22 16:39:25 -0700661
Jim Stichnoth307e3262015-02-12 16:10:37 -0800662bloat: make_symlink
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800663 nm -C -S -l pnacl-sz | \
Jim Stichnoth2e7de232015-11-02 08:25:57 -0800664 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json
Jim Stichnothfa0cfa52015-02-26 09:42:36 -0800665 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html
Jim Stichnoth307e3262015-02-12 16:10:37 -0800666
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800667bloat-sb: sb_make_symlink
668 $(foreach nexe,$(NEXES),nm -C -S -l $(nexe) | bloat/bloat.py \
669 --nm-output=/dev/stdin syms > build/$(notdir $(nexe)).bloat.json;)
670 @echo "See Subzero size breakdown in:"
671 @$(foreach nexe,$(NEXES),echo " bloat/$(notdir $(nexe)).bloat.html";)
672
Andrew Sculla509e1d2015-06-29 11:07:08 -0700673docs:
Reed Kotler4cba1cb2016-01-07 08:45:13 -0800674 make -C docs -f Makefile.standalone
Andrew Sculla509e1d2015-06-29 11:07:08 -0700675
Reed Kotler2c3c82e2016-01-21 20:33:08 -0800676help:
677 @cat Makefile.standalone-help/help.txt
678
679help-check-lit:
680 @cat Makefile.standalone-help/check-lit.txt
681
682help-check-xtest:
683 @cat Makefile.standalone-help/check-xtest.txt
684
Derek Schuffbc643132014-05-22 16:39:25 -0700685clean:
Jim Stichnothc4ed5492016-02-29 09:16:00 -0800686 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \
687 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json
Karl Schimpfb262c5e2014-10-27 14:41:57 -0700688
689clean-all: clean
Jim Stichnoth96fac392016-03-11 14:58:23 -0800690 rm -rf build/ crosstest/Output/