[llvm-commits] [test-suite] r51935 - /test-suite/trunk/Makefile.programs
Evan Cheng
evan.cheng at apple.com
Wed Jun 4 02:21:46 PDT 2008
Author: evancheng
Date: Wed Jun 4 04:21:46 2008
New Revision: 51935
URL: http://llvm.org/viewvc/llvm-project?rev=51935&view=rev
Log:
Try stack coloring as llcbeta for x86 and ARM.
Modified:
test-suite/trunk/Makefile.programs
Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=51935&r1=51934&r2=51935&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Wed Jun 4 04:21:46 2008
@@ -207,7 +207,6 @@
ifeq ($(ARCH),PowerPC)
LLCBETAOPTION := -enable-sinking
#-machine-licm
-#-coalescer-commute-instrs
#--enable-tail-merge
#--enable-ppc-preinc
#-regalloc=local -fast
@@ -220,15 +219,13 @@
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
-LLCBETAOPTION := -schedule-livein-copies
-#-align-loops=false
+LLCBETAOPTION := -stack-coloring
+#-schedule-livein-copies
#-enable-sinking
-#-coalescer-commute-instrs
#-machine-licm
#-new-coalescer-heuristic=true
#-tailcallopt
#-regalloc=local -fast
-#-disable-rematerialization
#-disable-fp-elim
#-regalloc=bigblock -fast
endif
@@ -236,11 +233,10 @@
LLCBETAOPTION := -enable-sparc-v9-insts
endif
ifeq ($(ARCH),ARM)
-LLCBETAOPTION := -schedule-livein-copies
+LLCBETAOPTION := -stack-coloring
+#-schedule-livein-copies
#-enable-sinking
-#-coalescer-commute-instrs
#-new-coalescer-heuristic=true
-#-disable-rematerialization
#-march=thumb
endif
ifeq ($(ARCH),THUMB)
More information about the llvm-commits
mailing list