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

Side by Side Diff: Makefile.standalone

Issue 1318553003: Compute the loop nest depth of each CfgNode and weight Variables by it. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 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/IceCfg.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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 IceFixups.cpp \ 188 IceFixups.cpp \
189 IceGlobalContext.cpp \ 189 IceGlobalContext.cpp \
190 IceGlobalInits.cpp \ 190 IceGlobalInits.cpp \
191 IceInst.cpp \ 191 IceInst.cpp \
192 IceInstARM32.cpp \ 192 IceInstARM32.cpp \
193 IceInstMIPS32.cpp \ 193 IceInstMIPS32.cpp \
194 IceInstX8632.cpp \ 194 IceInstX8632.cpp \
195 IceInstX8664.cpp \ 195 IceInstX8664.cpp \
196 IceIntrinsics.cpp \ 196 IceIntrinsics.cpp \
197 IceLiveness.cpp \ 197 IceLiveness.cpp \
198 IceLoopAnalyzer.cpp \
198 IceOperand.cpp \ 199 IceOperand.cpp \
199 IceRegAlloc.cpp \ 200 IceRegAlloc.cpp \
200 IceRNG.cpp \ 201 IceRNG.cpp \
201 IceSwitchLowering.cpp \ 202 IceSwitchLowering.cpp \
202 IceTargetLowering.cpp \ 203 IceTargetLowering.cpp \
203 IceTargetLoweringARM32.cpp \ 204 IceTargetLoweringARM32.cpp \
204 IceTargetLoweringMIPS32.cpp \ 205 IceTargetLoweringMIPS32.cpp \
205 IceTargetLoweringX8632.cpp \ 206 IceTargetLoweringX8632.cpp \
206 IceTargetLoweringX8664.cpp \ 207 IceTargetLoweringX8664.cpp \
207 IceThreading.cpp \ 208 IceThreading.cpp \
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 398
398 docs: 399 docs:
399 doxygen Doxyfile 400 doxygen Doxyfile
400 @echo See file://`pwd`/docs/html/index.html 401 @echo See file://`pwd`/docs/html/index.html
401 402
402 clean: 403 clean:
403 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 404 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
404 405
405 clean-all: clean 406 clean-all: clean
406 rm -rf build/ docs/ 407 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | src/IceCfg.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698