comparison graal/GraalCompiler/src/com/sun/c1x/ir/AccessArray.java @ 2628:569228710be8

More FrameState work
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 10 May 2011 16:49:50 +0200
parents 91d3952f7eb7
children
comparison
equal deleted inserted replaced
2623:b129b7da1397 2628:569228710be8
21 * questions. 21 * questions.
22 */ 22 */
23 package com.sun.c1x.ir; 23 package com.sun.c1x.ir;
24 24
25 import com.oracle.graal.graph.*; 25 import com.oracle.graal.graph.*;
26 import com.sun.c1x.value.*;
27 import com.sun.cri.ci.*; 26 import com.sun.cri.ci.*;
28 27
29 /** 28 /**
30 * This the base class of all array operations. 29 * This the base class of all array operations.
31 */ 30 */
64 * @param stateBefore the frame state before the instruction 63 * @param stateBefore the frame state before the instruction
65 * @param inputCount 64 * @param inputCount
66 * @param successorCount 65 * @param successorCount
67 * @param graph 66 * @param graph
68 */ 67 */
69 public AccessArray(CiKind kind, Value array, FrameState stateAfter, int inputCount, int successorCount, Graph graph) { 68 public AccessArray(CiKind kind, Value array, int inputCount, int successorCount, Graph graph) {
70 super(kind, stateAfter, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph); 69 super(kind, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph);
71 setArray(array); 70 setArray(array);
72 } 71 }
73 72
74 } 73 }