comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/virtual/VirtualObjectNode.java @ 7024:24950e93b962

only perform PEA iteration if there are analyzable nodes
author Lukas Stadler <lukas.stadler@jku.at>
date Mon, 26 Nov 2012 13:20:00 +0100
parents cc72b8b5edca
children ccade022ec83
comparison
equal deleted inserted replaced
7023:be508977fb47 7024:24950e93b962
50 @Override 50 @Override
51 public void generate(LIRGeneratorTool gen) { 51 public void generate(LIRGeneratorTool gen) {
52 // nothing to do... 52 // nothing to do...
53 } 53 }
54 54
55 public abstract Object fieldName(int i); 55 public abstract String fieldName(int i);
56 56
57 public void materializeAt(@SuppressWarnings("unused") FixedNode fixed) { 57 public void materializeAt(@SuppressWarnings("unused") FixedNode fixed) {
58 // nothing to do in here - this method allows subclasses to respond to materialization 58 // nothing to do in here - this method allows subclasses to respond to materialization
59 } 59 }
60 } 60 }