comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/AllocaNode.java @ 17450:45b45f902bed

removed Node generation (GRAAL-857)
author Doug Simon <doug.simon@oracle.com>
date Wed, 15 Oct 2014 15:35:33 +0200
parents c9bb0da795d4
children c6086a18c9ce
comparison
equal deleted inserted replaced
17449:cca154b1bf91 17450:45b45f902bed
50 * garbage values when processing these slots. 50 * garbage values when processing these slots.
51 */ 51 */
52 protected final BitSet objects; 52 protected final BitSet objects;
53 53
54 public static AllocaNode create(int slots, BitSet objects) { 54 public static AllocaNode create(int slots, BitSet objects) {
55 return USE_GENERATED_NODES ? new AllocaNodeGen(slots, objects) : new AllocaNode(slots, objects); 55 return new AllocaNode(slots, objects);
56 } 56 }
57 57
58 protected AllocaNode(int slots, BitSet objects) { 58 protected AllocaNode(int slots, BitSet objects) {
59 super(StampFactory.forKind(HotSpotGraalRuntime.getHostWordKind())); 59 super(StampFactory.forKind(HotSpotGraalRuntime.getHostWordKind()));
60 this.slots = slots; 60 this.slots = slots;