# HG changeset patch # User Christos Kotselidis # Date 1375791366 -7200 # Node ID db33e696de4dba052b0dc9af8d9b6e571e8942ee # Parent 9f647712f984fd469340245a9300062a461a11be Add util method for gc diff -r 9f647712f984 -r db33e696de4d graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/HotSpotReplacementsUtil.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/HotSpotReplacementsUtil.java Tue Aug 06 14:11:01 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/HotSpotReplacementsUtil.java Tue Aug 06 14:16:06 2013 +0200 @@ -434,6 +434,11 @@ } @Fold + public static boolean useCompressedOops() { + return config().useCompressedOops; + } + + @Fold static int uninitializedIdentityHashCodeValue() { return config().uninitializedIdentityHashCodeValue; }