comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiExceptionSeen.java @ 4564:8fc6920e064b

avoid recursive inlining, escape analysis does no longer restart inlining with level 0, bugfixes
author Christian Haeubl <christian.haeubl@oracle.com>
date Fri, 10 Feb 2012 14:36:19 -0800
parents a0cca63cd366
children
comparison
equal deleted inserted replaced
4563:b27666ff9bd6 4564:8fc6920e064b
27 * Represents the three possibilities that an exception was seen at a specific BCI. 27 * Represents the three possibilities that an exception was seen at a specific BCI.
28 */ 28 */
29 public enum RiExceptionSeen { 29 public enum RiExceptionSeen {
30 TRUE, 30 TRUE,
31 FALSE, 31 FALSE,
32 UNKNOWN; 32 NOT_SUPPORTED;
33 33
34 public static RiExceptionSeen get(boolean value) { 34 public static RiExceptionSeen get(boolean value) {
35 return value ? TRUE : FALSE; 35 return value ? TRUE : FALSE;
36 } 36 }
37 } 37 }