comparison graal/GraalCompiler/src/com/sun/c1x/ir/Invoke.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 1c36b17f7ee0
children 569228710be8
comparison
equal deleted inserted replaced
2621:dd115f80acf8 2622:91d3952f7eb7
78 * @param args the list of instructions producing arguments to the invocation, including the receiver object 78 * @param args the list of instructions producing arguments to the invocation, including the receiver object
79 * @param isStatic {@code true} if this call is static (no receiver object) 79 * @param isStatic {@code true} if this call is static (no receiver object)
80 * @param target the target method being called 80 * @param target the target method being called
81 * @param stateBefore the state before executing the invocation 81 * @param stateBefore the state before executing the invocation
82 */ 82 */
83 public Invoke(int opcode, CiKind result, Value[] args, RiMethod target, RiType returnType, FrameState stateBefore, Graph graph) { 83 public Invoke(int opcode, CiKind result, Value[] args, RiMethod target, RiType returnType, FrameState stateAfter, Graph graph) {
84 super(result, stateBefore, args.length, SUCCESSOR_COUNT, graph); 84 super(result, stateAfter, args.length, SUCCESSOR_COUNT, graph);
85 this.opcode = opcode; 85 this.opcode = opcode;
86 this.target = target; 86 this.target = target;
87 this.returnType = returnType; 87 this.returnType = returnType;
88 88
89 this.argumentCount = args.length; 89 this.argumentCount = args.length;