# HG changeset patch # User Doug Simon # Date 1334868062 -7200 # Node ID e8e1278101d9047dd7c03d46366359edf4559cdc # Parent 1a9a048386d6212949605751e48bda5d050260ad stack overflow check is now commented in disassembly diff -r 1a9a048386d6 -r e8e1278101d9 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/target/Backend.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/target/Backend.java Thu Apr 19 16:26:16 2012 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/target/Backend.java Thu Apr 19 22:41:02 2012 +0200 @@ -80,7 +80,7 @@ /** * Emits code to do stack overflow checking. - * + * * @param afterFrameInit specifies if the stack pointer has already been adjusted to allocate the current frame */ protected static void emitStackOverflowCheck(TargetMethodAssembler tasm, boolean afterFrameInit) { @@ -94,6 +94,7 @@ if (afterFrameInit) { disp -= frameSize; } + tasm.blockComment("[stack overflow check]"); tasm.asm.bangStack(disp); } }