Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 1 | # 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 Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 5 | # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 6 | # PNACL_BIN_PATH=<path> ... |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 7 | # |
| 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. |
| 14 | LLVM_SRC_PATH ?= ../llvm |
| 15 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 16 | # The x86-32-specific sandboxed translator directory. |
| 17 | # It holds sandboxed versions of libraries and binaries. |
| 18 | SB_LLVM_PATH ?= $(shell readlink -e \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 19 | ../../out/sandboxed_translators_work/translator-i686/llvm-sb/Release) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 20 | |
| 21 | # NACL_ROOT is the root of the native client repository. |
| 22 | NACL_ROOT ?= $(shell python -c "import sys; sys.path.insert(0, 'pydir'); \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 23 | import utils; print utils.FindBaseNaCl()") |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 24 | |
Jan Voung | 8e32fed | 2015-06-17 10:16:23 -0700 | [diff] [blame] | 25 | # TOOLCHAIN_ROOT is the location of NaCl/PNaCl toolchains and other |
| 26 | # tools like qemu. |
| 27 | TOOLCHAIN_ROOT ?= $(shell readlink -e $(NACL_ROOT)/toolchain/linux_x86) |
| 28 | |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 29 | # PNACL_TOOLCHAIN_ROOT is the location of the PNaCl toolchain. |
| 30 | # This is used as the default root for finding binutils, libcxx, etc. |
Jan Voung | 8e32fed | 2015-06-17 10:16:23 -0700 | [diff] [blame] | 31 | PNACL_TOOLCHAIN_ROOT ?= $(shell readlink -e $(TOOLCHAIN_ROOT)/pnacl_newlib_raw) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 32 | |
| 33 | # The location of PNaCl tools (e.g., binutils objdump, pnacl-clang++, etc.). |
| 34 | PNACL_BIN_PATH ?= $(shell readlink -e $(PNACL_TOOLCHAIN_ROOT)/bin) |
Karl Schimpf | 8fcefc3 | 2014-09-15 12:56:50 -0700 | [diff] [blame] | 35 | |
Reed Kotler | 2c3c82e | 2016-01-21 20:33:08 -0800 | [diff] [blame] | 36 | # 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 |
| 41 | CHECK_LIT_TESTS ?= tests_lit |
| 42 | CHECK_XTEST_TESTS ?= crosstest/Output |
| 43 | |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 44 | # Hack to auto-detect autoconf versus cmake build of LLVM. If the LLVM tools |
Jim Stichnoth | e5b58fb | 2015-06-01 15:17:20 -0700 | [diff] [blame] | 45 | # were dynamically linked with something like libLLVM-3.7svn.so, it is an |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 46 | # autoconf build, otherwise it is a cmake build. AUTOCONF is set to 0 for |
| 47 | # cmake, nonzero for autoconf. |
| 48 | AUTOCONF ?= $(shell ldd $(PNACL_BIN_PATH)/opt | grep -c libLLVM-) |
| 49 | |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 50 | # CLANG_PATH is the location of the clang compiler to use for building |
| 51 | # the host binaries. |
Karl Schimpf | 8fcefc3 | 2014-09-15 12:56:50 -0700 | [diff] [blame] | 52 | CLANG_PATH ?= $(shell readlink -e \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 53 | $(NACL_ROOT)/../third_party/llvm-build/Release+Asserts/bin) |
Karl Schimpf | 8fcefc3 | 2014-09-15 12:56:50 -0700 | [diff] [blame] | 54 | |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 55 | # 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. |
| 58 | LIBCXX_INSTALL_PATH ?= $(PNACL_TOOLCHAIN_ROOT) |
Karl Schimpf | 9d92854 | 2015-04-16 15:08:05 -0700 | [diff] [blame] | 59 | STDLIB_FLAGS := -stdlib=libc++ -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 60 | |
Jan Voung | 4c127ba | 2014-09-19 13:11:36 -0700 | [diff] [blame] | 61 | HOST_ARCH ?= x86_64 |
Jan Voung | 839c4ce | 2014-07-28 15:19:43 -0700 | [diff] [blame] | 62 | ifeq ($(HOST_ARCH),x86_64) |
Jim Stichnoth | 6c6adf1 | 2015-04-07 14:22:25 -0700 | [diff] [blame] | 63 | HOST_FLAGS = -m64 |
Jan Voung | 839c4ce | 2014-07-28 15:19:43 -0700 | [diff] [blame] | 64 | else |
| 65 | ifeq ($(HOST_ARCH),x86) |
Jim Stichnoth | 6c6adf1 | 2015-04-07 14:22:25 -0700 | [diff] [blame] | 66 | HOST_FLAGS = -m32 |
Jan Voung | 839c4ce | 2014-07-28 15:19:43 -0700 | [diff] [blame] | 67 | endif |
| 68 | endif |
| 69 | |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 70 | ifdef DEBUG |
| 71 | OBJDIR = build/Debug |
| 72 | OPTLEVEL = -O0 |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 73 | LINKOPTLEVEL = -O0 |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 74 | else |
| 75 | OBJDIR = build/Release |
Jim Stichnoth | a49e9d9 | 2014-12-07 14:25:34 -0800 | [diff] [blame] | 76 | OPTLEVEL = -O2 -ffunction-sections -fdata-sections |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 77 | LINKOPTLEVEL = -O2 |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 78 | endif |
| 79 | |
Karl Schimpf | b262c5e | 2014-10-27 14:41:57 -0700 | [diff] [blame] | 80 | # The list of CXX defines that are dependent on build parameters. |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 81 | BASE_CXX_DEFINES = |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 82 | CXX_EXTRA = |
| 83 | LD_EXTRA = |
Karl Schimpf | b262c5e | 2014-10-27 14:41:57 -0700 | [diff] [blame] | 84 | |
| 85 | ifdef MINIMAL |
Jim Stichnoth | e3c02c2 | 2014-12-05 14:16:07 -0800 | [diff] [blame] | 86 | NOASSERT = 1 |
Karl Schimpf | b262c5e | 2014-10-27 14:41:57 -0700 | [diff] [blame] | 87 | OBJDIR := $(OBJDIR)+Min |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 88 | BASE_CXX_DEFINES += -DALLOW_DUMP=0 -DALLOW_LLVM_CL=0 -DALLOW_LLVM_IR=0 \ |
Jim Stichnoth | 0d4fc92 | 2015-12-13 21:36:33 -0800 | [diff] [blame] | 89 | -DALLOW_LLVM_IR_AS_INPUT=0 -DALLOW_MINIMAL_BUILD=1 |
Karl Schimpf | b262c5e | 2014-10-27 14:41:57 -0700 | [diff] [blame] | 90 | else |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 91 | BASE_CXX_DEFINES += -DALLOW_DUMP=1 -DALLOW_LLVM_CL=1 -DALLOW_LLVM_IR=1 \ |
Jim Stichnoth | 0d4fc92 | 2015-12-13 21:36:33 -0800 | [diff] [blame] | 92 | -DALLOW_LLVM_IR_AS_INPUT=1 -DALLOW_MINIMAL_BUILD=0 |
Karl Schimpf | b262c5e | 2014-10-27 14:41:57 -0700 | [diff] [blame] | 93 | endif |
| 94 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 95 | CXX_DEFINES := $(BASE_CXX_DEFINES) -DPNACL_BROWSER_TRANSLATOR=0 |
| 96 | |
Jim Stichnoth | 9c234e2 | 2014-10-01 09:28:21 -0700 | [diff] [blame] | 97 | ifdef NOASSERT |
| 98 | ASSERTIONS = -DNDEBUG |
| 99 | else |
| 100 | ASSERTIONS = |
| 101 | OBJDIR := $(OBJDIR)+Asserts |
| 102 | endif |
| 103 | |
Andrew Scull | 6ef7949 | 2015-09-09 15:50:42 -0700 | [diff] [blame] | 104 | ifdef UBSAN |
| 105 | OBJDIR := $(OBJDIR)+UBSan |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 106 | CXX_EXTRA += -fsanitize=undefined -fno-sanitize=vptr \ |
| 107 | -fno-sanitize=nonnull-attribute |
Andrew Scull | 6ef7949 | 2015-09-09 15:50:42 -0700 | [diff] [blame] | 108 | LD_EXTRA += -fsanitize=undefined |
| 109 | endif |
| 110 | |
| 111 | ifdef UBSAN_TRAP |
| 112 | OBJDIR := $(OBJDIR)+UBSan_Trap |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 113 | CXX_EXTRA += -fsanitize=undefined-trap -fsanitize-undefined-trap-on-error \ |
| 114 | -fno-sanitize=vptr -fno-sanitize=nonnull-attribute |
Andrew Scull | 6ef7949 | 2015-09-09 15:50:42 -0700 | [diff] [blame] | 115 | LD_EXTRA += -fsanitize=undefined-trap |
| 116 | endif |
| 117 | |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 118 | ifdef TSAN |
| 119 | OBJDIR := $(OBJDIR)+TSan |
| 120 | CXX_EXTRA += -fsanitize=thread |
| 121 | LD_EXTRA += -fsanitize=thread |
| 122 | endif |
| 123 | |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 124 | ifdef ASAN |
| 125 | OBJDIR := $(OBJDIR)+ASan |
| 126 | CXX_EXTRA += -fsanitize=address |
| 127 | LD_EXTRA += -fsanitize=address |
| 128 | endif |
| 129 | |
Andrew Scull | 6ef7949 | 2015-09-09 15:50:42 -0700 | [diff] [blame] | 130 | ifdef MSAN |
Andrew Scull | 00741a0 | 2015-09-16 19:04:09 -0700 | [diff] [blame] | 131 | # TODO(ascull): this has an as yet undiagnosed uninitialized memory access |
Andrew Scull | 6ef7949 | 2015-09-09 15:50:42 -0700 | [diff] [blame] | 132 | OBJDIR := $(OBJDIR)+MSan |
| 133 | CXX_EXTRA += -fsanitize=memory |
| 134 | LD_EXTRA += -fsanitize=memory |
| 135 | endif |
| 136 | |
David Sehr | b19d39c | 2016-01-13 14:17:37 -0800 | [diff] [blame] | 137 | ifdef FORCEASM |
| 138 | FORCEASM_FLAG = --filetype=asm |
| 139 | # With --filetype=asm and --sandbox, the llvm-mc assembler emits the lock and |
| 140 | # 16-bit prefixes in the "wrong" order, causing the validator to reject the |
| 141 | # resulting nexe. So we just disable those tests for now. |
| 142 | FORCEASM_XTEST_EXCLUDES = -e x8632,sandbox,test_sync_atomic |
| 143 | FORCEASM_LIT_PARAM = --param=FORCEASM |
John Porto | 27fddcc | 2016-02-02 15:06:09 -0800 | [diff] [blame] | 144 | # x86 sandboxing lit tests are disabled because filetype=asm does not |
| 145 | # handle bundle_lock pad-to-end correctly. |
John Porto | 56958cb | 2016-01-14 09:18:18 -0800 | [diff] [blame] | 146 | # TODO(jpp): fix this. |
| 147 | FORCEASM_LIT_TEST_EXCLUDES = --filter='^(?!.*/x86/sandboxing.ll).*' |
David Sehr | b19d39c | 2016-01-13 14:17:37 -0800 | [diff] [blame] | 148 | else |
| 149 | FORCEASM_FLAG = |
| 150 | FORCEASM_XTEST_EXCLUDES = |
| 151 | FORCEASM_LIT_PARAM = |
John Porto | 56958cb | 2016-01-14 09:18:18 -0800 | [diff] [blame] | 152 | FORCEASM_LIT_TEST_EXCLUDES = |
David Sehr | b19d39c | 2016-01-13 14:17:37 -0800 | [diff] [blame] | 153 | endif |
| 154 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 155 | SB_OBJDIR := $(OBJDIR)+Sandboxed |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 156 | SBB_OBJDIR := $(OBJDIR)+SandboxedBrowser |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 157 | |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 158 | $(info -----------------------------------------------) |
| 159 | $(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH)) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 160 | $(info Using SB_LLVM_PATH = $(SB_LLVM_PATH)) |
| 161 | $(info Using NACL_ROOT = $(NACL_ROOT)) |
Jan Voung | 8e32fed | 2015-06-17 10:16:23 -0700 | [diff] [blame] | 162 | $(info Using TOOLCHAIN_ROOT = $(TOOLCHAIN_ROOT)) |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 163 | $(info Using PNACL_TOOLCHAIN_ROOT = $(PNACL_TOOLCHAIN_ROOT)) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 164 | $(info Using PNACL_BIN_PATH = $(PNACL_BIN_PATH)) |
Karl Schimpf | 8fcefc3 | 2014-09-15 12:56:50 -0700 | [diff] [blame] | 165 | $(info Using CLANG_PATH = $(CLANG_PATH)) |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 166 | $(info Using LIBCXX_INSTALL_PATH = $(LIBCXX_INSTALL_PATH)) |
Jan Voung | 839c4ce | 2014-07-28 15:19:43 -0700 | [diff] [blame] | 167 | $(info Using HOST_ARCH = $(HOST_ARCH)) |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 168 | $(info -----------------------------------------------) |
| 169 | |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 170 | LLVM_CXXFLAGS := `$(PNACL_BIN_PATH)/llvm-config --cxxflags` |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 171 | SB_LLVM_CXXFLAGS := $(LLVM_CXXFLAGS) |
| 172 | |
| 173 | # Listing specific libraries that are needed for pnacl-sz |
| 174 | # and the unittests, since we build "tools-only" for the |
| 175 | # sandboxed_translators (which doesn't include every library |
| 176 | # listed by llvm-config). |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 177 | |
| 178 | LLVM_LIBS_LIST := -lLLVMIRReader -lLLVMBitReader -lLLVMNaClBitTestUtils \ |
| 179 | -lLLVMNaClBitReader -lLLVMNaClBitAnalysis -lLLVMNaClBitWriter \ |
| 180 | -lLLVMAsmParser -lLLVMNaClAnalysis -lLLVMCore -lLLVMSupport |
| 181 | |
| 182 | ifeq ($(AUTOCONF), 0) |
| 183 | # LLVM cmake build |
Karl Schimpf | 28f3f73 | 2015-06-24 09:32:40 -0700 | [diff] [blame] | 184 | LLVM_LIBS := $(LLVM_LIBS_LIST) |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 185 | # For the cmake build, the gtest libs end up in the same place as the LLVM |
| 186 | # libs, so no "-L..." arg is needed. |
| 187 | GTEST_LIB_PATH ?= |
| 188 | CLANG_FORMAT_PATH ?= $(PNACL_BIN_PATH) |
| 189 | else |
| 190 | # LLVM autoconf build |
Jim Stichnoth | e5b58fb | 2015-06-01 15:17:20 -0700 | [diff] [blame] | 191 | LLVM_LIBS := -lLLVM-3.7svn |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 192 | GTEST_LIB_PATH ?= -L../../out/llvm_x86_64_linux_work/Release+Asserts/lib |
| 193 | CLANG_FORMAT_PATH ?= ../../out/llvm_x86_64_linux_work/Release+Asserts/bin |
| 194 | endif |
| 195 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 196 | LLVM_LDFLAGS := $(LLVM_LIBS) \ |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 197 | `$(PNACL_BIN_PATH)/llvm-config --ldflags` \ |
| 198 | `$(PNACL_BIN_PATH)/llvm-config --system-libs` |
Jim Stichnoth | 7a20a40 | 2016-02-24 21:32:53 -0800 | [diff] [blame] | 199 | SB_LLVM_LDFLAGS := -Wl,--start-group $(LLVM_LIBS_LIST) -Wl,--end-group \ |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 200 | -L$(SB_LLVM_PATH)/lib |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 201 | |
Jim Stichnoth | 5e06f9f | 2014-09-17 08:41:21 -0700 | [diff] [blame] | 202 | CCACHE := `command -v ccache` |
| 203 | CXX := CCACHE_CPP2=yes $(CCACHE) $(CLANG_PATH)/clang++ |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 204 | SB_CXX := CCACHE_CPP2=yes $(CCACHE) $(PNACL_BIN_PATH)/pnacl-clang++ |
| 205 | SB_TRANSLATE := $(PNACL_BIN_PATH)/pnacl-translate |
Jim Stichnoth | 7a20a40 | 2016-02-24 21:32:53 -0800 | [diff] [blame] | 206 | SB_FINALIZE := $(PNACL_BIN_PATH)/pnacl-finalize --no-strip-syms |
Jan Voung | 839c4ce | 2014-07-28 15:19:43 -0700 | [diff] [blame] | 207 | |
Jan Voung | c2648c2 | 2015-07-30 21:29:14 -0700 | [diff] [blame] | 208 | # Extra warnings that LLVM's build system adds in addition to -Wall. |
| 209 | LLVM_EXTRA_WARNINGS := -Wcovered-switch-default |
| 210 | |
Jim Stichnoth | caeaa27 | 2016-01-10 12:53:44 -0800 | [diff] [blame] | 211 | # Use g++ to compile, to check for errors/warnings that clang++ might have |
| 212 | # missed. It's unlikely to link, unless LLVM was also built with g++, so the |
| 213 | # compile_only target should be used. Note: This ifdef section is deliberately |
| 214 | # placed here instead of with the other ifdef sections, so that its redefinition |
| 215 | # of CXX/STDLIB_FLAGS/LLVM_EXTRA_WARNINGS follows their normal definitions. |
| 216 | ifdef GPLUSPLUS |
| 217 | CXX := CCACHE_CPP2=yes $(CCACHE) g++ |
| 218 | STDLIB_FLAGS := |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame] | 219 | LLVM_EXTRA_WARNINGS := \ |
| 220 | -Wcast-qual \ |
| 221 | -Wno-comment \ |
| 222 | -Wno-long-long \ |
| 223 | -Wno-maybe-uninitialized \ |
| 224 | -Wno-missing-field-initializers \ |
| 225 | -Wno-unused-parameter \ |
| 226 | -Wwrite-strings |
Jim Stichnoth | caeaa27 | 2016-01-10 12:53:44 -0800 | [diff] [blame] | 227 | OBJDIR := $(OBJDIR)+Gplusplus |
| 228 | endif |
| 229 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 230 | BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -Werror -fno-rtti \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 231 | -fno-exceptions $(OPTLEVEL) $(ASSERTIONS) -g -pedantic \ |
| 232 | $(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 233 | |
| 234 | CXXFLAGS := $(LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(CXX_DEFINES) $(HOST_FLAGS) \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 235 | $(STDLIB_FLAGS) |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 236 | SB_CXXFLAGS := $(SB_LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(BASE_CXX_DEFINES) \ |
| 237 | -Wno-unknown-pragmas -I$(NACL_ROOT) -I$(NACL_ROOT)/.. |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 238 | |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 239 | LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 240 | $(LD_EXTRA) $(STDLIB_FLAGS) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 241 | # Not specifying -Wl,--gc-sections but instead doing bitcode linking GC w/ LTO. |
| 242 | SB_LDFLAGS := $(LINKOPTLEVEL) $(LD_EXTRA) |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 243 | |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 244 | # List the target-specific source files first, which generally take longer to |
| 245 | # compile, in the hope of improving parallel build time. |
Karl Schimpf | ab06df3 | 2014-10-29 14:58:25 -0700 | [diff] [blame] | 246 | SRCS = \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 247 | IceAssemblerARM32.cpp \ |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 248 | IceInstARM32.cpp \ |
| 249 | IceInstMIPS32.cpp \ |
| 250 | IceInstX8632.cpp \ |
| 251 | IceInstX8664.cpp \ |
| 252 | IceTargetLowering.cpp \ |
| 253 | IceTargetLoweringARM32.cpp \ |
| 254 | IceTargetLoweringMIPS32.cpp \ |
David Sehr | 6b80cf1 | 2016-01-21 23:16:58 -0800 | [diff] [blame] | 255 | IceTargetLoweringX86.cpp \ |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 256 | IceTargetLoweringX8632.cpp \ |
| 257 | IceTargetLoweringX8664.cpp \ |
| 258 | IceAssembler.cpp \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 259 | IceBrowserCompileServer.cpp \ |
| 260 | IceCfg.cpp \ |
| 261 | IceCfgNode.cpp \ |
| 262 | IceClFlags.cpp \ |
| 263 | IceCompiler.cpp \ |
| 264 | IceCompileServer.cpp \ |
| 265 | IceELFObjectWriter.cpp \ |
| 266 | IceELFSection.cpp \ |
| 267 | IceFixups.cpp \ |
| 268 | IceGlobalContext.cpp \ |
| 269 | IceGlobalInits.cpp \ |
| 270 | IceInst.cpp \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 271 | IceIntrinsics.cpp \ |
| 272 | IceLiveness.cpp \ |
| 273 | IceLoopAnalyzer.cpp \ |
Jim Stichnoth | 98ba006 | 2016-03-07 09:26:22 -0800 | [diff] [blame] | 274 | IceMangling.cpp \ |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 275 | IceMemory.cpp \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 276 | IceOperand.cpp \ |
| 277 | IceRegAlloc.cpp \ |
| 278 | IceRNG.cpp \ |
| 279 | IceSwitchLowering.cpp \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 280 | IceThreading.cpp \ |
| 281 | IceTimerTree.cpp \ |
| 282 | IceTranslator.cpp \ |
| 283 | IceTypes.cpp \ |
| 284 | main.cpp \ |
| 285 | PNaClTranslator.cpp |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 286 | |
Karl Schimpf | ab06df3 | 2014-10-29 14:58:25 -0700 | [diff] [blame] | 287 | ifndef MINIMAL |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 288 | SRCS += \ |
| 289 | IceConverter.cpp \ |
| 290 | IceTypeConverter.cpp |
Karl Schimpf | ab06df3 | 2014-10-29 14:58:25 -0700 | [diff] [blame] | 291 | endif |
| 292 | |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 293 | OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 294 | SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS)) |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 295 | SBB_OBJS=$(patsubst %.cpp, $(SBB_OBJDIR)/%.o, $(SRCS)) |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 296 | |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 297 | UNITTEST_SRCS = \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 298 | BitcodeMunge.cpp \ |
| 299 | IceELFSectionTest.cpp \ |
| 300 | IceParseInstsTest.cpp |
John Porto | 59f2d92 | 2015-07-31 13:45:48 -0700 | [diff] [blame] | 301 | |
| 302 | # The X86 assembler tests take too long to compile. Given how infrequently the |
| 303 | # assembler will change, we disable them. |
| 304 | ifdef CHECK_X86_ASM |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 305 | ifndef DEBUG |
| 306 | $(error Run check-unit with DEBUG=1 lest your machine perish) |
| 307 | endif |
John Porto | 59f2d92 | 2015-07-31 13:45:48 -0700 | [diff] [blame] | 308 | UNITTEST_SRCS += AssemblerX8632/LowLevel.cpp \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 309 | AssemblerX8632/DataMov.cpp \ |
| 310 | AssemblerX8632/Locked.cpp \ |
| 311 | AssemblerX8632/GPRArith.cpp \ |
| 312 | AssemblerX8632/XmmArith.cpp \ |
| 313 | AssemblerX8632/ControlFlow.cpp \ |
| 314 | AssemblerX8632/Other.cpp \ |
| 315 | AssemblerX8632/X87.cpp \ |
| 316 | AssemblerX8664/LowLevel.cpp \ |
| 317 | AssemblerX8664/DataMov.cpp \ |
| 318 | AssemblerX8664/Locked.cpp \ |
| 319 | AssemblerX8664/GPRArith.cpp \ |
| 320 | AssemblerX8664/XmmArith.cpp \ |
| 321 | AssemblerX8664/ControlFlow.cpp \ |
| 322 | AssemblerX8664/Other.cpp |
John Porto | 59f2d92 | 2015-07-31 13:45:48 -0700 | [diff] [blame] | 323 | endif |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 324 | |
| 325 | UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 326 | UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/main.o,$(OBJS)) |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 327 | |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 328 | NEXES = $(SB_OBJDIR)/pnacl-sz.x8632.nexe \ |
| 329 | $(SB_OBJDIR)/pnacl-sz.x8664.nexe \ |
| 330 | $(SBB_OBJDIR)/pnacl_public_x86_32_pnacl_sz_nexe \ |
| 331 | $(SBB_OBJDIR)/pnacl_public_x86_64_pnacl_sz_nexe |
| 332 | |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 333 | # Keep all the first target so it's the default. |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 334 | all: $(OBJDIR)/pnacl-sz make_symlink runtime |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 335 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 336 | ifdef TSAN |
| 337 | sb: |
| 338 | @echo "Skipping pnacl-sz.*.nexe: TSAN isn't supported under NaCl." |
| 339 | else |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 340 | sb: $(NEXES) sb_make_symlink |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 341 | endif |
| 342 | |
Karl Schimpf | 6f9ba11 | 2015-06-22 13:20:23 -0700 | [diff] [blame] | 343 | # SHOW_BUILD_ATTS is an executable that is run to show what build |
| 344 | # attributes were used to build pnacl-sz. |
Karl Schimpf | cb6e95a | 2015-07-23 09:10:03 -0700 | [diff] [blame] | 345 | SHOW_BUILD_ATTS = $(OBJDIR)/pnacl-sz --build-atts |
Karl Schimpf | 6f9ba11 | 2015-06-22 13:20:23 -0700 | [diff] [blame] | 346 | |
Karl Schimpf | 6af6336 | 2014-10-29 14:55:00 -0700 | [diff] [blame] | 347 | # Creates symbolic link so that testing is easier. Also runs |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 348 | # pnacl-sz to verify that the defines flags have valid values, |
Karl Schimpf | 6af6336 | 2014-10-29 14:55:00 -0700 | [diff] [blame] | 349 | # as well as describe the corresponding build attributes. |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 350 | make_symlink: $(OBJDIR)/pnacl-sz |
| 351 | rm -rf pnacl-sz |
| 352 | ln -s $(OBJDIR)/pnacl-sz |
Karl Schimpf | 6af6336 | 2014-10-29 14:55:00 -0700 | [diff] [blame] | 353 | @echo "Build Attributes:" |
Karl Schimpf | 6f9ba11 | 2015-06-22 13:20:23 -0700 | [diff] [blame] | 354 | @$(SHOW_BUILD_ATTS) |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 355 | |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 356 | sb_make_symlink: $(NEXES) |
| 357 | $(foreach nexe,$(NEXES),rm -rf $(notdir $(nexe)); ln -s $(nexe);) |
| 358 | |
| 359 | %.pexe : %.nonfinal.pexe |
| 360 | $(SB_FINALIZE) -o $@ $< |
Jim Stichnoth | 7a20a40 | 2016-02-24 21:32:53 -0800 | [diff] [blame] | 361 | |
Reed Kotler | 2c3c82e | 2016-01-21 20:33:08 -0800 | [diff] [blame] | 362 | .PHONY: all compile_only make_symlink runtime bloat sb docs help \ |
| 363 | help-check-lit help-check-xtest |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 364 | |
| 365 | compile_only: $(OBJS) |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 366 | |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 367 | $(OBJDIR)/pnacl-sz: $(OBJS) |
Jim Stichnoth | 3324642 | 2014-11-24 14:36:23 -0800 | [diff] [blame] | 368 | $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 369 | -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib) |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 370 | |
Jim Stichnoth | 7a20a40 | 2016-02-24 21:32:53 -0800 | [diff] [blame] | 371 | $(SB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SB_OBJS) |
| 372 | $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) |
| 373 | |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 374 | $(SBB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SBB_OBJS) |
| 375 | $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) \ |
| 376 | --pnacl-disable-abi-check |
Jim Stichnoth | 7a20a40 | 2016-02-24 21:32:53 -0800 | [diff] [blame] | 377 | |
| 378 | $(SB_OBJDIR)/pnacl-sz.x8632.nexe: $(SB_OBJDIR)/pnacl-sz.pexe |
| 379 | $(SB_TRANSLATE) -arch x86-32 $^ -o $@ |
| 380 | |
| 381 | $(SB_OBJDIR)/pnacl-sz.x8664.nexe: $(SB_OBJDIR)/pnacl-sz.pexe |
| 382 | $(SB_TRANSLATE) -arch x86-64 $^ -o $@ |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 383 | |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 384 | $(SBB_OBJDIR)/pnacl_public_x86_32_pnacl_sz_nexe: $(SBB_OBJDIR)/pnacl-sz.pexe |
| 385 | $(SB_TRANSLATE) -arch x86-32 $^ -o $@ |
| 386 | |
| 387 | $(SBB_OBJDIR)/pnacl_public_x86_64_pnacl_sz_nexe: $(SBB_OBJDIR)/pnacl-sz.pexe |
| 388 | $(SB_TRANSLATE) -arch x86-64 $^ -o $@ |
| 389 | |
John Porto | 2187c84 | 2015-12-16 07:48:25 -0800 | [diff] [blame] | 390 | src/IceRegistersARM32.def: pydir/gen_arm32_reg_tables.py |
| 391 | python $< > $@ |
| 392 | |
Jim Stichnoth | dd842db | 2015-01-27 12:53:53 -0800 | [diff] [blame] | 393 | # TODO(stichnot): Be more precise than "*.h" here and elsewhere. |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 394 | $(OBJS): $(OBJDIR)/%.o: src/%.cpp src/*.h src/*.def |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 395 | $(CXX) -c $(CXXFLAGS) $< -o $@ |
| 396 | |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 397 | $(SB_OBJS): $(SB_OBJDIR)/%.o: src/%.cpp src/*.h src/*.def |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 398 | $(SB_CXX) -c $(SB_CXXFLAGS) -DPNACL_BROWSER_TRANSLATOR=0 $< -o $@ |
| 399 | |
| 400 | $(SBB_OBJS): $(SBB_OBJDIR)/%.o: src/%.cpp src/*.h src/*.def |
| 401 | $(SB_CXX) -c $(SB_CXXFLAGS) -DPNACL_BROWSER_TRANSLATOR=1 $< -o $@ |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 402 | |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 403 | $(OBJDIR)/run_unittests: $(UNITTEST_OBJS) $(UNITTEST_LIB_OBJS) |
Jim Stichnoth | e7e9b02 | 2015-04-21 15:05:22 -0700 | [diff] [blame] | 404 | $(CXX) $(GTEST_LIB_PATH) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 405 | -lgtest -lgtest_main -ldl \ |
| 406 | -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib) |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 407 | |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 408 | $(UNITTEST_OBJS): $(OBJDIR)/unittest/%.o: unittest/%.cpp unittest/*.h \ |
| 409 | src/*.h src/*.def |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 410 | $(CXX) -c $(CXXFLAGS) \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 411 | -Isrc/ \ |
| 412 | -Iunittest/ \ |
| 413 | -I$(LLVM_SRC_PATH)/utils/unittest/googletest/include \ |
| 414 | -I$(LLVM_SRC_PATH) \ |
| 415 | -DGTEST_HAS_RTTI=0 -DGTEST_USE_OWN_TR1_TUPLE \ |
| 416 | $< -o $@ |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 417 | |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 418 | $(OBJS): | $(OBJDIR) |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 419 | $(SB_OBJS): | $(SB_OBJDIR) |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 420 | $(SBB_OBJS): | $(SBB_OBJDIR) |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 421 | |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 422 | $(UNITTEST_OBJS): | $(OBJDIR)/unittest $(OBJDIR)/unittest/AssemblerX8632 \ |
| 423 | $(OBJDIR)/unittest/AssemblerX8664 |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 424 | |
Jim Stichnoth | fddef24 | 2014-09-26 18:53:41 -0700 | [diff] [blame] | 425 | $(OBJDIR): |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 426 | @mkdir -p $@ |
Jan Voung | 44c3a80 | 2015-03-27 16:29:08 -0700 | [diff] [blame] | 427 | $(SB_OBJDIR): |
| 428 | @mkdir -p $@ |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 429 | $(SBB_OBJDIR): |
| 430 | @mkdir -p $@ |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 431 | |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 432 | $(OBJDIR)/unittest: $(OBJDIR) |
| 433 | @mkdir -p $@ |
| 434 | |
John Porto | 2fea26c | 2015-07-28 16:28:07 -0700 | [diff] [blame] | 435 | $(OBJDIR)/unittest/AssemblerX8632: $(OBJDIR)/unittest |
| 436 | @mkdir -p $@ |
| 437 | $(OBJDIR)/unittest/AssemblerX8664: $(OBJDIR)/unittest |
| 438 | @mkdir -p $@ |
| 439 | |
Jim Stichnoth | 8ff4b28 | 2016-01-04 15:39:06 -0800 | [diff] [blame] | 440 | RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c \ |
| 441 | runtime/szrt_asm_x8632.s runtime/szrt_asm_x8664.s \ |
| 442 | runtime/szrt_asm_arm32.s |
Jan Voung | 050deaa | 2015-06-12 15:12:05 -0700 | [diff] [blame] | 443 | RT_OBJ := build/runtime/szrt_native_x8632.o build/runtime/szrt_sb_x8632.o \ |
Jim Stichnoth | 8ff4b28 | 2016-01-04 15:39:06 -0800 | [diff] [blame] | 444 | build/runtime/szrt_nonsfi_x8632.o \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 445 | build/runtime/szrt_native_x8664.o build/runtime/szrt_sb_x8664.o \ |
Jim Stichnoth | 8ff4b28 | 2016-01-04 15:39:06 -0800 | [diff] [blame] | 446 | build/runtime/szrt_nonsfi_x8664.o \ |
| 447 | build/runtime/szrt_native_arm32.o build/runtime/szrt_sb_arm32.o \ |
| 448 | build/runtime/szrt_nonsfi_arm32.o |
Jim Stichnoth | 9738a9e | 2015-02-23 16:39:06 -0800 | [diff] [blame] | 449 | |
| 450 | runtime: $(RT_OBJ) |
| 451 | |
| 452 | # Use runtime.is.built so that build-runtime.py is invoked only once |
| 453 | # even in a parallel build. |
| 454 | .INTERMEDIATE: runtime.is.built |
| 455 | $(RT_OBJ): runtime.is.built |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 456 | runtime.is.built: $(RT_SRC) pydir/build-runtime.py |
Jim Stichnoth | 9738a9e | 2015-02-23 16:39:06 -0800 | [diff] [blame] | 457 | @echo ================ Building Subzero runtime ================ |
Jan Voung | 68a0633 | 2015-03-05 14:33:38 -0800 | [diff] [blame] | 458 | ./pydir/build-runtime.py -v --pnacl-root $(PNACL_TOOLCHAIN_ROOT) |
Jim Stichnoth | 9738a9e | 2015-02-23 16:39:06 -0800 | [diff] [blame] | 459 | |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 460 | check-lit: $(OBJDIR)/pnacl-sz make_symlink |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 461 | PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
Reed Kotler | 2c3c82e | 2016-01-21 20:33:08 -0800 | [diff] [blame] | 462 | $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_LIT_TESTS) \ |
John Porto | 56958cb | 2016-01-14 09:18:18 -0800 | [diff] [blame] | 463 | $(FORCEASM_LIT_TEST_EXCLUDES) $(FORCEASM_LIT_PARAM) |
Jim Stichnoth | ac9c943 | 2014-08-26 14:07:13 -0700 | [diff] [blame] | 464 | |
Karl Schimpf | ab06df3 | 2014-10-29 14:58:25 -0700 | [diff] [blame] | 465 | ifdef MINIMAL |
Jim Stichnoth | c925822 | 2015-03-13 11:59:49 -0700 | [diff] [blame] | 466 | check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| 467 | @echo "Crosstests disabled, minimal build" |
Karl Schimpf | ab06df3 | 2014-10-29 14:58:25 -0700 | [diff] [blame] | 468 | else |
Jim Stichnoth | c925822 | 2015-03-13 11:59:49 -0700 | [diff] [blame] | 469 | check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
Jim Stichnoth | dc7c597 | 2015-03-10 11:17:15 -0700 | [diff] [blame] | 470 | # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. |
| 471 | # For (slow) sandboxed tests, limit to Om1/sse4.1. |
John Porto | 94e97f6 | 2016-02-18 08:02:10 -0800 | [diff] [blame] | 472 | # run.py (used to run the sandboxed xtests) does not support |
| 473 | # specifying -cpu cortex-a15 to qemu, hence we disable the |
| 474 | # hwdiv-arm tests. |
Jim Stichnoth | dc7c597 | 2015-03-10 11:17:15 -0700 | [diff] [blame] | 475 | ./pydir/crosstest_generator.py -v --lit \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 476 | --toolchain-root $(TOOLCHAIN_ROOT) \ |
David Sehr | b19d39c | 2016-01-13 14:17:37 -0800 | [diff] [blame] | 477 | $(FORCEASM_FLAG) \ |
| 478 | $(FORCEASM_XTEST_EXCLUDES) \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 479 | -i x8632,native,sse2 \ |
| 480 | -i x8632,native,sse4.1,test_vector_ops \ |
| 481 | -i x8632,sandbox,sse4.1,Om1 \ |
Jim Stichnoth | 57a8aab | 2016-01-06 09:34:36 -0800 | [diff] [blame] | 482 | -i x8632,nonsfi,sse2,O2 \ |
John Porto | 008f4ce | 2015-12-24 13:22:18 -0800 | [diff] [blame] | 483 | -i x8664,native,sse2 \ |
| 484 | -i x8664,native,sse4.1,test_vector_ops \ |
John Porto | 56958cb | 2016-01-14 09:18:18 -0800 | [diff] [blame] | 485 | -i x8664,sandbox,sse4.1,Om1 \ |
John Porto | 94e97f6 | 2016-02-18 08:02:10 -0800 | [diff] [blame] | 486 | -i arm32 \ |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 487 | -e arm32,sandbox,hwdiv-arm |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 488 | PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
Reed Kotler | 2c3c82e | 2016-01-21 20:33:08 -0800 | [diff] [blame] | 489 | $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS) |
Karl Schimpf | ab06df3 | 2014-10-29 14:58:25 -0700 | [diff] [blame] | 490 | endif |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 491 | |
Jim Stichnoth | c925822 | 2015-03-13 11:59:49 -0700 | [diff] [blame] | 492 | check-unit: $(OBJDIR)/run_unittests |
| 493 | $(OBJDIR)/run_unittests |
| 494 | |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 495 | # List the spec2k components in roughly reverse order of runtime, to help with |
| 496 | # parallel execution speed. |
| 497 | ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ |
| 498 | 175.vpr 176.gcc 181.mcf 186.crafty 197.parser 254.gap 255.vortex \ |
| 499 | 300.twolf 252.eon |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 500 | .PHONY: $(ALLSPEC) |
| 501 | |
| 502 | TARGET := x8632 |
| 503 | ifeq ($(TARGET),x8632) |
| 504 | TARGETFLAG=x8632 |
| 505 | SETUP=SetupGccX8632Opt |
Jim Stichnoth | c8f56a3 | 2016-03-07 09:54:15 -0800 | [diff] [blame^] | 506 | SPEC := --filetype=obj |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 507 | endif |
John Porto | 3c275ce | 2015-12-22 08:14:00 -0800 | [diff] [blame] | 508 | ifeq ($(TARGET),x8664) |
| 509 | TARGETFLAG=x8664 |
| 510 | SETUP=SetupGccX8664Opt |
Jim Stichnoth | c8f56a3 | 2016-03-07 09:54:15 -0800 | [diff] [blame^] | 511 | SPEC := --filetype=obj |
John Porto | 3c275ce | 2015-12-22 08:14:00 -0800 | [diff] [blame] | 512 | endif |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 513 | ifeq ($(TARGET),arm32) |
| 514 | TARGETFLAG=arm32 |
| 515 | SETUP=SetupGccArmOpt |
Jim Stichnoth | c8f56a3 | 2016-03-07 09:54:15 -0800 | [diff] [blame^] | 516 | SPEC := --filetype=obj |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 517 | endif |
Jim Stichnoth | c8f56a3 | 2016-03-07 09:54:15 -0800 | [diff] [blame^] | 518 | SPECFLAGS := -O2 |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 519 | SPECBUILDONLY := false |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 520 | %.spec2k: % $(OBJDIR)/pnacl-sz make_symlink runtime |
Jim Stichnoth | bc3bd50 | 2016-01-20 15:01:39 -0800 | [diff] [blame] | 521 | ./pydir/szbuild_spec2k.py -v \ |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 522 | $(SPECFLAGS) --target=$(TARGETFLAG) $(SPEC) $< |
| 523 | $(SPECBUILDONLY) || ( cd ../../../tests/spec2k; \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 524 | ./run_all.sh RunTimedBenchmarks $(SETUP) train $< ) |
| 525 | |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 526 | check-spec: $(ALLSPEC:=.spec2k) |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 527 | |
Jim Stichnoth | c925822 | 2015-03-13 11:59:49 -0700 | [diff] [blame] | 528 | check: check-lit check-unit check-xtest |
| 529 | |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 530 | check-presubmit presubmit: |
| 531 | # Make sure clang-format gets run. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 532 | +make -f Makefile.standalone format |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 533 | # Verify MINIMAL build, plus proper usage of REQUIRES in lit tests. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 534 | +make -f Makefile.standalone \ |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 535 | MINIMAL=1 check |
Jim Stichnoth | fc22f77 | 2015-11-22 06:06:34 -0800 | [diff] [blame] | 536 | # Check that there are no g++ build errors or warnings. |
| 537 | +make -f Makefile.standalone \ |
| 538 | GPLUSPLUS=1 compile_only |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 539 | # Check the x86 assembler unit tests. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 540 | +make -f Makefile.standalone \ |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 541 | DEBUG=1 CHECK_X86_ASM=1 check-unit sb |
David Sehr | b19d39c | 2016-01-13 14:17:37 -0800 | [diff] [blame] | 542 | # Run lit tests, cross tests, unit tests, and spec2k/x86-32. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 543 | +make -f Makefile.standalone \ |
Jim Stichnoth | 98ba006 | 2016-03-07 09:26:22 -0800 | [diff] [blame] | 544 | check check-spec |
John Porto | 4ab4fbe | 2016-01-20 13:44:30 -0800 | [diff] [blame] | 545 | # Run spec2k/x86-64. |
| 546 | +make -f Makefile.standalone \ |
| 547 | TARGET=x8664 check-spec |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 548 | # Build spec2k under -Om1/x86-32, to check for liveness errors. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 549 | +make -f Makefile.standalone \ |
| 550 | SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec |
John Porto | 4ab4fbe | 2016-01-20 13:44:30 -0800 | [diff] [blame] | 551 | # Build spec2k under -Om1/x86-64, to check for liveness errors. |
| 552 | +make -f Makefile.standalone \ |
| 553 | SPECFLAGS='-Om1' TARGET=x8664 SPECBUILDONLY=true check-spec |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 554 | # Run spec2k for x86-32 without advanced phi lowering. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 555 | +make -f Makefile.standalone \ |
Jim Stichnoth | c8f56a3 | 2016-03-07 09:54:15 -0800 | [diff] [blame^] | 556 | SPECFLAGS='-O2 --sz=--phi-edge-split=0' check-spec |
John Porto | 4ab4fbe | 2016-01-20 13:44:30 -0800 | [diff] [blame] | 557 | # Run spec2k for x86-64 without advanced phi lowering. |
| 558 | +make -f Makefile.standalone \ |
Jim Stichnoth | c8f56a3 | 2016-03-07 09:54:15 -0800 | [diff] [blame^] | 559 | SPECFLAGS='-O2 --sz=--phi-edge-split=0' TARGET=x8664 check-spec |
David Sehr | b19d39c | 2016-01-13 14:17:37 -0800 | [diff] [blame] | 560 | # Run cross tests and lit tests to validate filetype=asm output. |
| 561 | +make -f Makefile.standalone \ |
| 562 | FORCEASM=1 check-xtest check-lit |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 563 | # Build spec2k for arm32. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 564 | +make -f Makefile.standalone \ |
| 565 | TARGET=arm32 SPECBUILDONLY=true check-spec |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 566 | # Build spec2k under -Om1/arm32. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 567 | +make -f Makefile.standalone \ |
| 568 | TARGET=arm32 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec |
John Porto | b819665 | 2016-01-19 06:19:14 -0800 | [diff] [blame] | 569 | # Run a few spec2k tests for arm32 using qemu. Keep the list sorted in |
| 570 | # roughly reverse order of runtime. |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 571 | +make -f Makefile.standalone \ |
John Porto | b819665 | 2016-01-19 06:19:14 -0800 | [diff] [blame] | 572 | TARGET=arm32 ALLSPEC='252.eon 254.gap 176.gcc 181.mcf' check-spec |
Jim Stichnoth | 23bee88 | 2015-11-17 06:14:05 -0800 | [diff] [blame] | 573 | # Provide validation of user awesomeness! |
Jim Stichnoth | 6c4ad84 | 2015-11-16 12:47:57 -0800 | [diff] [blame] | 574 | echo Success |
| 575 | |
Jim Stichnoth | dd842db | 2015-01-27 12:53:53 -0800 | [diff] [blame] | 576 | FORMAT_BLACKLIST = |
| 577 | # Add one of the following lines for each source file to ignore. |
| 578 | FORMAT_BLACKLIST += ! -name IceParseInstsTest.cpp |
Karl Schimpf | 74cd883 | 2015-06-23 11:05:01 -0700 | [diff] [blame] | 579 | FORMAT_BLACKLIST += ! -name IceParseTypesTest.cpp |
Karl Schimpf | 3e53dc9 | 2015-10-07 13:24:01 -0700 | [diff] [blame] | 580 | FORMAT_BLACKLIST += ! -name assembler_arm.h |
| 581 | FORMAT_BLACKLIST += ! -name assembler_arm.cc |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 582 | format: |
Jim Stichnoth | 0a9e126 | 2015-04-21 09:59:21 -0700 | [diff] [blame] | 583 | $(CLANG_FORMAT_PATH)/clang-format -style=LLVM -i \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 584 | `find . -regex '.*\.\(c\|h\|cpp\)' $(FORMAT_BLACKLIST)` |
Jim Stichnoth | 240e0f8 | 2014-07-09 16:53:40 -0700 | [diff] [blame] | 585 | |
Jim Stichnoth | 240e0f8 | 2014-07-09 16:53:40 -0700 | [diff] [blame] | 586 | format-diff: |
Jim Stichnoth | 206833c | 2014-08-07 10:58:05 -0700 | [diff] [blame] | 587 | git diff -U0 `git merge-base HEAD master` | \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 588 | PATH=$(PNACL_BIN_PATH):$(PATH) \ |
| 589 | $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \ |
| 590 | -p1 -style=LLVM -i |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 591 | |
Jim Stichnoth | 307e326 | 2015-02-12 16:10:37 -0800 | [diff] [blame] | 592 | bloat: make_symlink |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 593 | nm -C -S -l pnacl-sz | \ |
Jim Stichnoth | 2e7de23 | 2015-11-02 08:25:57 -0800 | [diff] [blame] | 594 | bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json |
Jim Stichnoth | fa0cfa5 | 2015-02-26 09:42:36 -0800 | [diff] [blame] | 595 | @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
Jim Stichnoth | 307e326 | 2015-02-12 16:10:37 -0800 | [diff] [blame] | 596 | |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 597 | bloat-sb: sb_make_symlink |
| 598 | $(foreach nexe,$(NEXES),nm -C -S -l $(nexe) | bloat/bloat.py \ |
| 599 | --nm-output=/dev/stdin syms > build/$(notdir $(nexe)).bloat.json;) |
| 600 | @echo "See Subzero size breakdown in:" |
| 601 | @$(foreach nexe,$(NEXES),echo " bloat/$(notdir $(nexe)).bloat.html";) |
| 602 | |
Andrew Scull | a509e1d | 2015-06-29 11:07:08 -0700 | [diff] [blame] | 603 | docs: |
Reed Kotler | 4cba1cb | 2016-01-07 08:45:13 -0800 | [diff] [blame] | 604 | make -C docs -f Makefile.standalone |
Andrew Scull | a509e1d | 2015-06-29 11:07:08 -0700 | [diff] [blame] | 605 | |
Reed Kotler | 2c3c82e | 2016-01-21 20:33:08 -0800 | [diff] [blame] | 606 | help: |
| 607 | @cat Makefile.standalone-help/help.txt |
| 608 | |
| 609 | help-check-lit: |
| 610 | @cat Makefile.standalone-help/check-lit.txt |
| 611 | |
| 612 | help-check-xtest: |
| 613 | @cat Makefile.standalone-help/check-xtest.txt |
| 614 | |
Derek Schuff | bc64313 | 2014-05-22 16:39:25 -0700 | [diff] [blame] | 615 | clean: |
Jim Stichnoth | c4ed549 | 2016-02-29 09:16:00 -0800 | [diff] [blame] | 616 | rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ |
| 617 | $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json |
Karl Schimpf | b262c5e | 2014-10-27 14:41:57 -0700 | [diff] [blame] | 618 | |
| 619 | clean-all: clean |
Reed Kotler | 4cba1cb | 2016-01-07 08:45:13 -0800 | [diff] [blame] | 620 | rm -rf build/ crosstest/Output/ |