# HG changeset patch # User Lukas Stadler # Date 1400241680 -7200 # Node ID bd9be86ce6344b2a40809ee986ee23347866f5fc # Parent c66c28e1f8665439b13e91050c01207f77040a19 do not reprofile upon exceptions thrown in NewArrayStub or NewInstanceStub diff -r c66c28e1f866 -r bd9be86ce634 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/StubUtil.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/StubUtil.java Fri May 16 12:23:09 2014 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/StubUtil.java Fri May 16 14:01:20 2014 +0200 @@ -78,7 +78,7 @@ if (isObjectResult) { getAndClearObjectResult(thread); } - DeoptimizeCallerNode.deopt(InvalidateReprofile, RuntimeConstraint); + DeoptimizeCallerNode.deopt(DeoptimizationAction.None, RuntimeConstraint); } }