comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/UnboxNode.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 a891c53a295b
children b6617d13ea44
comparison
equal deleted inserted replaced
5540:a891c53a295b 5541:b4c406861c33
50 public Kind destinationKind() { 50 public Kind destinationKind() {
51 return destinationKind; 51 return destinationKind;
52 } 52 }
53 53
54 public void expand(BoxingMethodPool pool) { 54 public void expand(BoxingMethodPool pool) {
55 RiResolvedField field = pool.getBoxField(kind()); 55 ResolvedJavaField field = pool.getBoxField(kind());
56 LoadFieldNode loadField = graph().add(new LoadFieldNode(source, field, StructuredGraph.INVALID_GRAPH_ID)); 56 LoadFieldNode loadField = graph().add(new LoadFieldNode(source, field, StructuredGraph.INVALID_GRAPH_ID));
57 loadField.setProbability(probability()); 57 loadField.setProbability(probability());
58 ((StructuredGraph) graph()).replaceFixedWithFixed(this, loadField); 58 ((StructuredGraph) graph()).replaceFixedWithFixed(this, loadField);
59 } 59 }
60 60