comparison graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java @ 2644:4694daa6af3a

Removed CSE array length.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 14:18:49 +0200
parents 8932f1027050
children d456b679b6de ccab1d5f345e
comparison
equal deleted inserted replaced
2643:3b807c0c5eeb 2644:4694daa6af3a
85 public static int TraceBytecodeParserLevel = 0; 85 public static int TraceBytecodeParserLevel = 0;
86 public static boolean PrintAssumptions = ____; 86 public static boolean PrintAssumptions = ____;
87 public static boolean QuietBailout = ____; 87 public static boolean QuietBailout = ____;
88 88
89 // all optimization settings 89 // all optimization settings
90 public static boolean OptCSEArrayLength;
91 public static boolean OptBlockSkipping; 90 public static boolean OptBlockSkipping;
92 public static boolean OptControlFlow; 91 public static boolean OptControlFlow;
93 92
94 // optimistic optimization settings 93 // optimistic optimization settings
95 public static boolean UseAssumptions = true; 94 public static boolean UseAssumptions = true;
154 153
155 // Level 2 optimizations 154 // Level 2 optimizations
156 OptInline = ll; 155 OptInline = ll;
157 156
158 // Level 3 optimizations 157 // Level 3 optimizations
159 OptCSEArrayLength = lll;
160 UseStackMapTableLiveness = lll; 158 UseStackMapTableLiveness = lll;
161 UseAssumptions = lll; 159 UseAssumptions = lll;
162 OptBlockSkipping = lll; 160 OptBlockSkipping = lll;
163 } 161 }
164 } 162 }