[9 or 10?] RFR(M): 8176506: C2: loop unswitching and unsafe accesses cause crash

Roland Westrelin rwestrel at redhat.com
Fri Mar 17 09:28:07 UTC 2017


Hi Vladimir,

>> Isn't the plan to remove the membars for 9 and put it back in 10?
>
> JDK-8176513 removed membars around (possibly) mixed accesses and the fix 
> we are discussing makes them obsolete.

If we use unsafe to access a heap allocated object but it's impossible
for the compiler to tell it's heap allocated, then we would compile it
as a raw memory access. If we access the same object's field with a
regular access in the same method, then there's a chance that access
would be reordered with the unsafe access. So we still need the membars?

> My last concern is that by marking possibly mixed accesses as RAW during 
> parsing, we limit what optimizations can be applied later.
>
> I thought about allowing rawptr => oopptr conversions for mixed accesses 
> once they become on-heap (+ some cleanups; full patch [1]):
>
> http://cr.openjdk.java.net/~vlivanov/roland/8176506/webrev.01_00/
>
> What do you think about it?

Thanks for the cleanup and fixes.
Isn't converting rawptr => oopptr a variation of:

http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2016-April/022745.html

that Vladimir K didn't like?

Uses of the AddP records the memory slice they operate on:
MemNode::_adr_type, LoadStoreNode::_adr_type. That would need to be
fixed if the AddP type changes to avoid inconsistencies.

It seems unlikely but if the raw memory type was captured by a node: a
Phi that would merge 2 AddPNodes for instance. If the AddPNode types
change to oop ptr, then the Phi type wouldn't be oop ptr. I wonder if
that could cause problems.

If we think the compiler would find more non null bases after some
optimizations than it does at parse time, then one solution could be to
delay inlining of the unsafe accesses.

> Also, I think the checks in LoadNode::split_through_phi & 
> MemNode::Ideal_common I mentioned before affect normal accesses as well, 
> so probably the problem with loop unswitching you encountered isn't 
> specific to unsafe accesses. But let's keep it separate.

Can you point to the exact code you're referring to?

Roland.


More information about the hotspot-compiler-dev mailing list