comparison graal/com.oracle.graal.lir/src/com/oracle/graal/lir/asm/FrameContext.java @ 13234:7e237378923d

made the frameContext of a CompilationResultBuilder always non-null and added FrameContext.hasFrame() to determine if a frame is actually generated
author Doug Simon <doug.simon@oracle.com>
date Tue, 03 Dec 2013 18:02:11 +0100
parents 1a66453f73db
children
comparison
equal deleted inserted replaced
13233:8ea51438445c 13234:7e237378923d
44 * <li>performing a safepoint</li> 44 * <li>performing a safepoint</li>
45 * <li>destroying the stack frame</li> 45 * <li>destroying the stack frame</li>
46 * </ul> 46 * </ul>
47 */ 47 */
48 void leave(CompilationResultBuilder crb); 48 void leave(CompilationResultBuilder crb);
49
50 /**
51 * Determines if a frame is set up and torn down by this object.
52 */
53 boolean hasFrame();
49 } 54 }