comparison graal/com.oracle.max.criutils/src/com/oracle/max/criutils/TypeCheckHints.java @ 5507:dc71b06d09f8

Moving classes from cri.ri to api.meta.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 18:24:06 +0200
parents 2e9a5365dfb0
children 426c605c9d3c
comparison
equal deleted inserted replaced
5506:56860d3f9f39 5507:dc71b06d09f8
23 package com.oracle.max.criutils; 23 package com.oracle.max.criutils;
24 24
25 import java.lang.reflect.*; 25 import java.lang.reflect.*;
26 import java.util.*; 26 import java.util.*;
27 27
28 import com.oracle.graal.api.meta.*;
29 import com.oracle.graal.api.meta.RiTypeProfile.*;
28 import com.oracle.max.cri.ci.*; 30 import com.oracle.max.cri.ci.*;
29 import com.oracle.max.cri.ri.*;
30 import com.oracle.max.cri.ri.RiTypeProfile.ProfiledType;
31 31
32 /** 32 /**
33 * Utility for deriving hint types for a type check instruction (e.g. checkcast or instanceof) 33 * Utility for deriving hint types for a type check instruction (e.g. checkcast or instanceof)
34 * based on the target type of the check and any profiling information available for the instruction. 34 * based on the target type of the check and any profiling information available for the instruction.
35 */ 35 */