comparison graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java @ 2858:a97605b0489b

Renamed Compare=>Materialize and introduced new C1XOption Inline.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 07 Jun 2011 16:11:26 +0200
parents 7596ae867a7b
children a4fbfbc3c858
comparison
equal deleted inserted replaced
2857:c6af2af32b3d 2858:a97605b0489b
37 // Checkstyle: stop 37 // Checkstyle: stop
38 private static final boolean ____ = false; 38 private static final boolean ____ = false;
39 // Checkstyle: resume 39 // Checkstyle: resume
40 40
41 // inlining settings 41 // inlining settings
42 public static boolean Inline = true;
42 public static int MaximumInstructionCount = 37000; 43 public static int MaximumInstructionCount = 37000;
43 public static float MaximumInlineRatio = 0.90f; 44 public static float MaximumInlineRatio = 0.90f;
44 public static int MaximumInlineSize = 35; 45 public static int MaximumInlineSize = 35;
45 public static int MaximumTrivialSize = 6; 46 public static int MaximumTrivialSize = 6;
46 public static int MaximumInlineLevel = 9; 47 public static int MaximumInlineLevel = 9;