comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TruffleOptions.java @ 10676:9db1377b0580

Fix for TruffleCache.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 09 Jul 2013 17:38:32 +0200
parents ebf5c5c23564
children a0309f88306c
comparison
equal deleted inserted replaced
10675:41362ec88331 10676:9db1377b0580
29 * Class containing general Truffle options. 29 * Class containing general Truffle options.
30 */ 30 */
31 public class TruffleOptions { 31 public class TruffleOptions {
32 32
33 /** Enables/disables the rewriting of traces in the truffle runtime to stdout. */ 33 /** Enables/disables the rewriting of traces in the truffle runtime to stdout. */
34 public static final boolean TraceRewrites = false; 34 public static boolean TraceRewrites = false;
35 35
36 /** 36 /**
37 * Filters rewrites that do not contain the given string in the qualified name of the source or 37 * Filters rewrites that do not contain the given string in the qualified name of the source or
38 * target class hierarchy. 38 * target class hierarchy.
39 */ 39 */
40 public static final String TraceRewritesFilterClass = null; 40 public static String TraceRewritesFilterClass = null;
41 41
42 /** 42 /**
43 * Filters rewrites which does not contain the {@link Kind} in its source {@link NodeInfo}. If 43 * Filters rewrites which does not contain the {@link Kind} in its source {@link NodeInfo}. If
44 * no {@link NodeInfo} is defined the element is filtered if the filter value is set. 44 * no {@link NodeInfo} is defined the element is filtered if the filter value is set.
45 */ 45 */
46 public static final NodeInfo.Kind TraceRewritesFilterFromKind = null; 46 public static NodeInfo.Kind TraceRewritesFilterFromKind = null;
47 47
48 /** 48 /**
49 * Filters rewrites which does not contain the {@link Kind} in its target {@link NodeInfo}. If 49 * Filters rewrites which does not contain the {@link Kind} in its target {@link NodeInfo}. If
50 * no {@link NodeInfo} is defined the element is filtered if the filter value is set. 50 * no {@link NodeInfo} is defined the element is filtered if the filter value is set.
51 */ 51 */
52 public static final NodeInfo.Kind TraceRewritesFilterToKind = null; 52 public static NodeInfo.Kind TraceRewritesFilterToKind = null;
53 53
54 } 54 }