# HG changeset patch # User Doug Simon # Date 1355742131 -3600 # Node ID 885a6849ee9ecd42674025022ca4a421d70f646b # Parent 7f55fd5f897d751a80ccaf1f608a27770dc1ce2e (temp) forcing slow path for TLAB refill during array allocation diff -r 7f55fd5f897d -r 885a6849ee9e graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/NewArrayStub.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/NewArrayStub.java Mon Dec 17 11:45:09 2012 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/NewArrayStub.java Mon Dec 17 12:02:11 2012 +0100 @@ -102,6 +102,7 @@ @Fold private static boolean forceSlowPath() { - return Boolean.getBoolean("graal.newArrayStub.forceSlowPath"); + // TODO (ds) make default "false" once refill issue is resolved + return "true".equalsIgnoreCase(System.getProperty("graal.newArrayStub.forceSlowPath", "true")); } }