comparison graal/GraalCompiler/src/com/sun/c1x/ir/MonitorEnter.java @ 2834:bfce42cd9c07

Graph duplication now passes all tests
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 31 May 2011 13:34:52 +0200
parents bd17ac598c6e
children 14708c03abba
comparison
equal deleted inserted replaced
2829:27c00b180416 2834:bfce42cd9c07
43 * Creates a new MonitorEnter instruction. 43 * Creates a new MonitorEnter instruction.
44 * 44 *
45 * @param object the instruction producing the object 45 * @param object the instruction producing the object
46 * @param lockAddress the address of the on-stack lock object or {@code null} if the runtime does not place locks on the stack 46 * @param lockAddress the address of the on-stack lock object or {@code null} if the runtime does not place locks on the stack
47 * @param lockNumber the number of the lock 47 * @param lockNumber the number of the lock
48 * @param stateAfter the state after
49 * @param graph 48 * @param graph
50 */ 49 */
51 public MonitorEnter(Value object, Value lockAddress, int lockNumber, Graph graph) { 50 public MonitorEnter(Value object, Value lockAddress, int lockNumber, Graph graph) {
52 super(object, lockAddress, lockNumber, INPUT_COUNT, SUCCESSOR_COUNT, graph); 51 super(object, lockAddress, lockNumber, INPUT_COUNT, SUCCESSOR_COUNT, graph);
53 } 52 }