comparison graal/GraalCompiler/src/com/sun/c1x/ir/StoreField.java @ 2827:bd17ac598c6e

Graph cloning, initial version (not completely working)
author Lukas Stadler <lukas.stadler@jku.at>
date Mon, 30 May 2011 18:46:57 +0200
parents 569228710be8
children 14708c03abba
comparison
equal deleted inserted replaced
2821:015be60afcf3 2827:bd17ac598c6e
84 print(" := "). 84 print(" := ").
85 print(value()). 85 print(value()).
86 print(" [type: ").print(CiUtil.format("%h.%n:%t", field(), false)). 86 print(" [type: ").print(CiUtil.format("%h.%n:%t", field(), false)).
87 print(']'); 87 print(']');
88 } 88 }
89
90 @Override
91 public Node copy(Graph into) {
92 StoreField x = new StoreField(null, field, null, into);
93 x.setNonNull(isNonNull());
94 return x;
95 }
89 } 96 }