comparison graal/GraalCompiler/src/com/sun/c1x/ir/StateSplit.java @ 2565:cc1f1d396288

Remove inlining (3rd part)
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Fri, 29 Apr 2011 16:46:30 +0200
parents c58a301eb2d7
children fec99fc30af1
comparison
equal deleted inserted replaced
2564:274360f98f97 2565:cc1f1d396288
34 public abstract class StateSplit extends Instruction { 34 public abstract class StateSplit extends Instruction {
35 35
36 /** 36 /**
37 * Sentinel denoting an explicitly cleared state. 37 * Sentinel denoting an explicitly cleared state.
38 */ 38 */
39 private static final FrameState CLEARED_STATE = new MutableFrameState(null, -5, 0, 0); 39 private static final FrameState CLEARED_STATE = new MutableFrameState(-5, 0, 0);
40 40
41 private FrameState stateBefore; 41 private FrameState stateBefore;
42 42
43 /** 43 /**
44 * Creates a new state split with the specified value type. 44 * Creates a new state split with the specified value type.