RFR(M): 8073480: C2 should optimize explicit range checks

Vladimir Kozlov vladimir.kozlov at oracle.com
Thu Feb 19 20:55:21 UTC 2015


Can you explain why you decided to not do next optimization?:

http://cr.openjdk.java.net/~kvn/8042997/webrev/src/share/vm/opto/parse2.cpp.udiff.html

If C2 generates 'throw' code instead of uncommon traps it will be 
handled by the case "merge region". Right? Did you verified it?

You missing in(0) != NULL in a lot of places. This part of graph could 
be dead - you need to check for NULL.

Did you consider to use dominated If for folded cmp? That way you don't 
need adjst middle test if it exists (reroute_side_effect_free_unc). Also 
I think it is correct thing to do since middle test may depend on first 
(dominating) test.

cmpi_if() should also exclude overflow, no_overflow cases.

side_effect_free() does not check that middle test is actual NULL check. 
You only check that there is CastPP. It could be not enough.

Name cmpi_if() should be is_cmpi_folds().
Name proj_cmpi_with - is_ctrl_folds().
Name shared_region() - has_shared_region().
Name side_effect_free() - is_side_effect_free_test()
Name uncommon_traps() - has_only_uncommon_traps()

In ProjNode::other_if_proj() add assert that _con is 0 or 1 only.

Thanks,
Vladimir

On 2/19/15 7:36 AM, Roland Westrelin wrote:
> http://cr.openjdk.java.net/~roland/8073480/webrev.00/
>
> Transform explicit range checks in java code of the form:
>
> if (index < 0 || index >= array.length) {
>    throw new ArrayIndexOutOfBoundsException();
> }
>
> as a single CmpU (rather than 2 CmpIs) that is recognized by c2 as a range check.
>
> To do that, IfNode::fold_compares():
>
> - now works with non constant bounds
> - in addition to 2 consecutive integer comparisons that both branch to a single region, it handles 2 consecutive integer comparisons that both branch to 2 uncommon traps
> - it allows one test between the 2 integer comparisons to be folded: in the expression above array.length may require a null check
>
> If 2 integer comparisons are folded, the second one is the one that is kept but the uncommon trap is changed so execution restarts at the first if. The trap’s reason is changed to a new reason:
>
> - if this pattern does indeed look like a range check, the reason becomes Reason_range_check so the compiler recognizes this test as a range check. If we trap too much at this test, we don’t perform the folding again
> - if this pattern doesn’t look like a range check, the reason becomes new reason Reason_unstable_fused_if (in this implementation, it’s the same value as Reason_range_check due to restrictions on number of trap reasons). If we trap too much with this reason, folding is not performed anymore. It’s a new trap reason because we don’t know what if causes the trap. Deoptimization causes the re-execution of the sequence of ifs so profiling should be updated to reflect what branch is taken for next compilation.
>
> A test in between the 2 integer comparisons is modified so it causes re-executions at the first integer comparison otherwise, an exception due to a null check for instance could be thrown when it shouldn’t have been.
>
> If the compiler doesn’t compile:
> throw new ArrayIndexOutOfBoundsException();
> as an uncommon trap, the 2 comparisons could still be folded but the compiler wouldn’t always recognize the test as a range check because it wouldn’t find an uncommon trap with reason Reason_range_check.
>
> This is related to:
> https://bugs.openjdk.java.net/browse/JDK-8042997
> We’ll introduce an intrinsic to ensure developers can add explicit range checks and have a 100% predictable behavior from the compiler.
>
> Roland.
>


More information about the hotspot-compiler-dev mailing list