comparison graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/nodes/ReadRegisterNode.java @ 22604:b00cc0475f31

Update jvmci import: Refactoring: Rename Kind to JavaKind.
author Roland Schatz <roland.schatz@oracle.com>
date Tue, 08 Sep 2015 19:57:39 +0200
parents 0e095e2c24e2
children 05183a084a08
comparison
equal deleted inserted replaced
22603:6d339ba0edc5 22604:b00cc0475f31
54 * i.e., the register is an implicit incoming value; when false, the register must be defined in 54 * i.e., the register is an implicit incoming value; when false, the register must be defined in
55 * the same method or must be an register excluded from register allocation. 55 * the same method or must be an register excluded from register allocation.
56 */ 56 */
57 protected final boolean incoming; 57 protected final boolean incoming;
58 58
59 public ReadRegisterNode(Register register, Kind kind, boolean directUse, boolean incoming) { 59 public ReadRegisterNode(Register register, JavaKind kind, boolean directUse, boolean incoming) {
60 super(TYPE, StampFactory.forKind(kind)); 60 super(TYPE, StampFactory.forKind(kind));
61 assert register != null; 61 assert register != null;
62 this.register = register; 62 this.register = register;
63 this.directUse = directUse; 63 this.directUse = directUse;
64 this.incoming = incoming; 64 this.incoming = incoming;