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

Side by Side Diff: Makefile.standalone

Issue 1278173009: Inline memove for small constant sizes and refactor memcpy and memset. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix memmove and add tests Created 5 years, 4 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 | crosstest/mem_intrin.h » ('j') | src/IceTargetLoweringX86Base.h » ('J')
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 -i x8632,sandbox,sse4.1,Om1 \ 354 -i x8632,sandbox,sse4.1,Om1 \
355 -i arm32,native,neon,simple_loop \ 355 -i arm32,native,neon,simple_loop \
356 -i arm32,native,neon,mem_intrin \ 356 -i arm32,native,neon,mem_intrin \
357 -i arm32,native,neon,test_bitmanip \ 357 -i arm32,native,neon,test_bitmanip \
358 -i arm32,native,neon,test_stacksave \ 358 -i arm32,native,neon,test_stacksave \
359 -i arm32,native,neon,test_strengthreduce 359 -i arm32,native,neon,test_strengthreduce
360 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ 360 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
361 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output 361 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
362 endif 362 endif
363 363
364 ifdef DEBUG
364 check-unit: $(OBJDIR)/run_unittests 365 check-unit: $(OBJDIR)/run_unittests
365 $(OBJDIR)/run_unittests 366 $(OBJDIR)/run_unittests
367 else
368 check-unit:
369 @echo "Run with DEBUG=1 lest your machine perish."
jvoung (off chromium) 2015/08/18 17:18:22 Thanks =) Would it make sense to put this by the
ascull 2015/08/18 18:38:00 Done.
370 endif
366 371
367 check: check-lit check-unit check-xtest 372 check: check-lit check-unit check-xtest
368 373
369 FORMAT_BLACKLIST = 374 FORMAT_BLACKLIST =
370 # Add one of the following lines for each source file to ignore. 375 # Add one of the following lines for each source file to ignore.
371 FORMAT_BLACKLIST += ! -name IceParseInstsTest.cpp 376 FORMAT_BLACKLIST += ! -name IceParseInstsTest.cpp
372 FORMAT_BLACKLIST += ! -name IceParseTypesTest.cpp 377 FORMAT_BLACKLIST += ! -name IceParseTypesTest.cpp
373 format: 378 format:
374 $(CLANG_FORMAT_PATH)/clang-format -style=LLVM -i \ 379 $(CLANG_FORMAT_PATH)/clang-format -style=LLVM -i \
375 `find . -regex '.*\.\(c\|h\|cpp\)' $(FORMAT_BLACKLIST)` 380 `find . -regex '.*\.\(c\|h\|cpp\)' $(FORMAT_BLACKLIST)`
(...skipping 11 matching lines...) Expand all
387 392
388 docs: 393 docs:
389 doxygen Doxyfile 394 doxygen Doxyfile
390 @echo See file://`pwd`/docs/html/index.html 395 @echo See file://`pwd`/docs/html/index.html
391 396
392 clean: 397 clean:
393 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 398 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
394 399
395 clean-all: clean 400 clean-all: clean
396 rm -rf build/ docs/ 401 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | crosstest/mem_intrin.h » ('j') | src/IceTargetLoweringX86Base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698