diff truffle/com.oracle.truffle.object/src/com/oracle/truffle/object/ObjectStorageOptions.java @ 22291:c3ea80aa5762

make debug counters optional
author Andreas Woess <andreas.woess@oracle.com>
date Thu, 08 Oct 2015 14:21:33 +0200
parents dc83cc1f94f2
children 364bab1763c9
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.object/src/com/oracle/truffle/object/ObjectStorageOptions.java	Thu Oct 08 14:21:19 2015 +0200
+++ b/truffle/com.oracle.truffle.object/src/com/oracle/truffle/object/ObjectStorageOptions.java	Thu Oct 08 14:21:33 2015 +0200
@@ -38,6 +38,7 @@
     public static boolean InObjectFields = booleanOption(OPTION_PREFIX + "InObjectFields", true);
 
     // Debug options (should be final)
+    public static final boolean DebugCounters = booleanOption(OPTION_PREFIX + "DebugCounters", true);
     public static final boolean TraceReshape = booleanOption(OPTION_PREFIX + "TraceReshape", false);
     public static final boolean DumpShapes = booleanOption(OPTION_PREFIX + "DumpShapes", false);