comparison graal/GraalCompiler/src/com/sun/c1x/ir/AccessArray.java @ 2622:91d3952f7eb7

Framestate work : using stateAFter and reducting the number of nodes with framestates. Intermediate state (does not pass tests)
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 10 May 2011 12:37:46 +0200
parents 092e628ddd5d
children 569228710be8
comparison
equal deleted inserted replaced
2621:dd115f80acf8 2622:91d3952f7eb7
64 * @param stateBefore the frame state before the instruction 64 * @param stateBefore the frame state before the instruction
65 * @param inputCount 65 * @param inputCount
66 * @param successorCount 66 * @param successorCount
67 * @param graph 67 * @param graph
68 */ 68 */
69 public AccessArray(CiKind kind, Value array, FrameState stateBefore, int inputCount, int successorCount, Graph graph) { 69 public AccessArray(CiKind kind, Value array, FrameState stateAfter, int inputCount, int successorCount, Graph graph) {
70 super(kind, stateBefore, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph); 70 super(kind, stateAfter, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph);
71 setArray(array); 71 setArray(array);
72 } 72 }
73 73
74 } 74 }