comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/types/ObjectTypeQuery.java @ 5541:b4c406861c33

More renamings to drop Ri* prefix completely. Deleted graph.BitMap class and replaced with java.util.BitSet.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 09 Jun 2012 16:52:12 +0200
parents e18ba36bfebc
children
comparison
equal deleted inserted replaced
5540:a891c53a295b 5541:b4c406861c33
30 30
31 boolean constantBound(Condition condition, Constant constant); 31 boolean constantBound(Condition condition, Constant constant);
32 32
33 boolean valueBound(Condition condition, ValueNode otherValue); 33 boolean valueBound(Condition condition, ValueNode otherValue);
34 34
35 boolean declaredType(RiResolvedType type); 35 boolean declaredType(ResolvedJavaType type);
36 36
37 boolean exactType(RiResolvedType type); 37 boolean exactType(ResolvedJavaType type);
38 38
39 boolean notDeclaredType(RiResolvedType type); 39 boolean notDeclaredType(ResolvedJavaType type);
40 40
41 boolean notExactType(RiResolvedType type); 41 boolean notExactType(ResolvedJavaType type);
42 42
43 ObjectTypeFeedbackStore store(); 43 ObjectTypeFeedbackStore store();
44 } 44 }