comparison graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java @ 2519:f6125fb5bfbc

Removed intrinsics.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 16:25:32 +0200
parents 16b9a8b5ad39
children 2f271a85d104
comparison
equal deleted inserted replaced
2516:a384fac3fd34 2519:f6125fb5bfbc
49 public static int MaximumTrivialSize = 6; 49 public static int MaximumTrivialSize = 6;
50 public static int MaximumInlineLevel = 9; 50 public static int MaximumInlineLevel = 9;
51 public static int MaximumRecursiveInlineLevel = 1; 51 public static int MaximumRecursiveInlineLevel = 1;
52 public static int MaximumDesiredSize = 8000; 52 public static int MaximumDesiredSize = 8000;
53 public static int MaximumShortLoopSize = 5; 53 public static int MaximumShortLoopSize = 5;
54
55 // intrinsification settings
56 public static boolean OptIntrinsify = ____;
57 54
58 // debugging settings 55 // debugging settings
59 public static boolean VerifyPointerMaps = ____; 56 public static boolean VerifyPointerMaps = ____;
60 public static boolean PinAllInstructions = ____; 57 public static boolean PinAllInstructions = ____;
61 public static boolean TestPatching = ____; 58 public static boolean TestPatching = ____;
194 OptInline = ll; 191 OptInline = ll;
195 OptBlockMerging = ll; 192 OptBlockMerging = ll;
196 193
197 // Level 3 optimizations 194 // Level 3 optimizations
198 OptCSEArrayLength = lll; 195 OptCSEArrayLength = lll;
199 OptIntrinsify = lll;
200 OptInlineExcept = lll; 196 OptInlineExcept = lll;
201 OptInlineSynchronized = lll; 197 OptInlineSynchronized = lll;
202 UseStackMapTableLiveness = lll; 198 UseStackMapTableLiveness = lll;
203 UseAssumptions = lll; 199 UseAssumptions = lll;
204 OptIterativeNCE = lll; 200 OptIterativeNCE = lll;