comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TruffleOptions.java @ 10690:a0309f88306c

Added truffle option to enable detailed rewrite messages. Disabled by default.
author Christian Humer <christian.humer@gmail.com>
date Wed, 10 Jul 2013 09:42:22 +0200
parents 9db1377b0580
children 494b818b527c
comparison
equal deleted inserted replaced
10689:3ae117e62905 10690:a0309f88306c
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 boolean TraceRewrites = false; 34 public static boolean TraceRewrites = false;
35 35
36 /** 36 /**
37 * Enables the generation of detailed rewrite reasons. Enabling this may introduce some overhead
38 * for rewriting nodes.
39 */
40 public static final boolean DetailedRewriteReasons = false;
41
42 /**
37 * Filters rewrites that do not contain the given string in the qualified name of the source or 43 * Filters rewrites that do not contain the given string in the qualified name of the source or
38 * target class hierarchy. 44 * target class hierarchy.
39 */ 45 */
40 public static String TraceRewritesFilterClass = null; 46 public static String TraceRewritesFilterClass = null;
41 47