Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(913)

Side by Side Diff: Makefile.standalone

Issue 1738443002: Subzero. Performance tweaks. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments -- all of them Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceAssembler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # The following variables will likely need to be modified, depending on where 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 2 # and how you built LLVM & Clang. They can be overridden in a command-line
3 # invocation of make, like: 3 # invocation of make, like:
4 # 4 #
5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \
6 # PNACL_BIN_PATH=<path> ... 6 # PNACL_BIN_PATH=<path> ...
7 # 7 #
8 8
9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This 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/ 10 # directory should contain the configure script, the include/ and lib/
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 IceCompileServer.cpp \ 262 IceCompileServer.cpp \
263 IceELFObjectWriter.cpp \ 263 IceELFObjectWriter.cpp \
264 IceELFSection.cpp \ 264 IceELFSection.cpp \
265 IceFixups.cpp \ 265 IceFixups.cpp \
266 IceGlobalContext.cpp \ 266 IceGlobalContext.cpp \
267 IceGlobalInits.cpp \ 267 IceGlobalInits.cpp \
268 IceInst.cpp \ 268 IceInst.cpp \
269 IceIntrinsics.cpp \ 269 IceIntrinsics.cpp \
270 IceLiveness.cpp \ 270 IceLiveness.cpp \
271 IceLoopAnalyzer.cpp \ 271 IceLoopAnalyzer.cpp \
272 IceMemory.cpp \
272 IceOperand.cpp \ 273 IceOperand.cpp \
273 IceRegAlloc.cpp \ 274 IceRegAlloc.cpp \
274 IceRNG.cpp \ 275 IceRNG.cpp \
275 IceSwitchLowering.cpp \ 276 IceSwitchLowering.cpp \
276 IceThreading.cpp \ 277 IceThreading.cpp \
277 IceTimerTree.cpp \ 278 IceTimerTree.cpp \
278 IceTranslator.cpp \ 279 IceTranslator.cpp \
279 IceTypes.cpp \ 280 IceTypes.cpp \
280 main.cpp \ 281 main.cpp \
281 PNaClTranslator.cpp 282 PNaClTranslator.cpp
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 $(FORCEASM_FLAG) \ 444 $(FORCEASM_FLAG) \
444 $(FORCEASM_XTEST_EXCLUDES) \ 445 $(FORCEASM_XTEST_EXCLUDES) \
445 -i x8632,native,sse2 \ 446 -i x8632,native,sse2 \
446 -i x8632,native,sse4.1,test_vector_ops \ 447 -i x8632,native,sse4.1,test_vector_ops \
447 -i x8632,sandbox,sse4.1,Om1 \ 448 -i x8632,sandbox,sse4.1,Om1 \
448 -i x8632,nonsfi,sse2,O2 \ 449 -i x8632,nonsfi,sse2,O2 \
449 -i x8664,native,sse2 \ 450 -i x8664,native,sse2 \
450 -i x8664,native,sse4.1,test_vector_ops \ 451 -i x8664,native,sse4.1,test_vector_ops \
451 -i x8664,sandbox,sse4.1,Om1 \ 452 -i x8664,sandbox,sse4.1,Om1 \
452 -i arm32 \ 453 -i arm32 \
453 -e arm32,sandbox,hwdiv-arm \ 454 -e arm32,sandbox,hwdiv-arm
454 -e arm32,neon,test_vector_ops
455 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ 455 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
456 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS) 456 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS)
457 endif 457 endif
458 458
459 check-unit: $(OBJDIR)/run_unittests 459 check-unit: $(OBJDIR)/run_unittests
460 $(OBJDIR)/run_unittests 460 $(OBJDIR)/run_unittests
461 461
462 # List the spec2k components in roughly reverse order of runtime, to help with 462 # List the spec2k components in roughly reverse order of runtime, to help with
463 # parallel execution speed. 463 # parallel execution speed.
464 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ 464 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 @cat Makefile.standalone-help/check-lit.txt 571 @cat Makefile.standalone-help/check-lit.txt
572 572
573 help-check-xtest: 573 help-check-xtest:
574 @cat Makefile.standalone-help/check-xtest.txt 574 @cat Makefile.standalone-help/check-xtest.txt
575 575
576 clean: 576 clean:
577 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 577 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
578 578
579 clean-all: clean 579 clean-all: clean
580 rm -rf build/ crosstest/Output/ 580 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | src/IceAssembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698