comparison graal/GraalCompiler/src/com/sun/c1x/ir/NewArray.java @ 2537:4a016ff4d2df

Clean up on LIRGenerator and related.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 19:53:46 +0200
parents 16b9a8b5ad39
children c58a301eb2d7
comparison
equal deleted inserted replaced
2536:099f2a12788a 2537:4a016ff4d2df
41 */ 41 */
42 NewArray(Value length, FrameState stateBefore) { 42 NewArray(Value length, FrameState stateBefore) {
43 super(CiKind.Object, stateBefore); 43 super(CiKind.Object, stateBefore);
44 this.length = length; 44 this.length = length;
45 setFlag(Flag.NonNull); 45 setFlag(Flag.NonNull);
46 setFlag(Flag.ResultIsUnique);
47 } 46 }
48 47
49 /** 48 /**
50 * Gets the instruction that produces the length of this array. 49 * Gets the instruction that produces the length of this array.
51 * @return the instruction that produces the length 50 * @return the instruction that produces the length