comparison graal/GraalCompiler/src/com/sun/c1x/value/FrameStateAccess.java @ 2763:5e8a69041cd7

Model phi inputs as direct inputs in the graph instead of referring to the framestates of the predecessors.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 23 May 2011 14:51:18 +0200
parents 7ed72769d51a
children 75e0d39833a0
comparison
equal deleted inserted replaced
2762:ca31e84ff154 2763:5e8a69041cd7
42 42
43 Value stackAt(int i); 43 Value stackAt(int i);
44 44
45 FrameState duplicateWithEmptyStack(int bci); 45 FrameState duplicateWithEmptyStack(int bci);
46 46
47 void setValueAt(int j, Value v);
48
47 } 49 }