comparison graal/com.oracle.max.criutils/src/com/oracle/max/criutils/TypeCheckHints.java @ 5510:426c605c9d3c

Move cri.ci to api.code.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 18:55:34 +0200
parents dc71b06d09f8
children b4c406861c33
comparison
equal deleted inserted replaced
5509:6ed763809de7 5510:426c605c9d3c
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.code.*;
28 import com.oracle.graal.api.meta.*; 29 import com.oracle.graal.api.meta.*;
29 import com.oracle.graal.api.meta.RiTypeProfile.*; 30 import com.oracle.graal.api.meta.RiTypeProfile.*;
30 import com.oracle.max.cri.ci.*;
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 */