comparison graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java @ 2859:a4fbfbc3c858

Temporarily disabled inlining.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 07 Jun 2011 16:13:08 +0200
parents a97605b0489b
children 4f64bd98f9dc 5c545fef2c81
comparison
equal deleted inserted replaced
2858:a97605b0489b 2859:a4fbfbc3c858
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 boolean Inline = ____;
43 public static int MaximumInstructionCount = 37000; 43 public static int MaximumInstructionCount = 37000;
44 public static float MaximumInlineRatio = 0.90f; 44 public static float MaximumInlineRatio = 0.90f;
45 public static int MaximumInlineSize = 35; 45 public static int MaximumInlineSize = 35;
46 public static int MaximumTrivialSize = 6; 46 public static int MaximumTrivialSize = 6;
47 public static int MaximumInlineLevel = 9; 47 public static int MaximumInlineLevel = 9;