Integrated: JDK-8322854: Incorrect rematerialization of scalar replaced objects in C2

Cesar Soares Lucas cslucas at openjdk.org
Tue Feb 13 13:54:09 UTC 2024


On Wed, 24 Jan 2024 22:40:59 GMT, Cesar Soares Lucas <cslucas at openjdk.org> wrote:

> Current implementation of `PhaseMacroExpand::value_from_mem` returns `return _igvn.zerocon(ft);` when it hits a sentinel while searching for a memory operation on a given slice. One of the sentinels is the memory input of the allocate node origin of the memory slice. Therefore, `value_from_mem` may return `zeroconf(ft)` if `sfpt_mem` is the same memory edge used by the Allocate node origin of the memory slice being traversed.
> 
> The scalar replacement implementation uses `value_from_mem` during creation of metadata describing object scalar replaced (see `PhaseMacroExpand::create_scalarized_object_description`). The `create_scalarized_object_description` method is also used as part of RAM optimization implementation. The RAM optimization targets Phi nodes and therefore a memory graph loop created by a _memory phi_ node is possible to seen as part of the transformation. See image below:
> 
> <img src="https://github.com/openjdk/jdk/assets/2249648/288681b7-4461-41ea-8dab-bbaebac4727f" height="500" />
> 
> This pattern doesn't show up when scalarizing objects that don't participate in allocation merges. 
> 
> To fix the issue I changed the code in `value_from_mem` to instead of using the _input_ memory edge of the Allocate as a stop condition, it will now use the projection memory edge of the Allocate.
> 
> Tested locally on windows, mac and linux x86_64 with JTREG tier1-3 and didn't observe any regression.

This pull request has now been integrated.

Changeset: 7cd25ed6
Author:    Cesar Soares Lucas <cslucas at openjdk.org>
Committer: Tobias Hartmann <thartmann at openjdk.org>
URL:       https://git.openjdk.org/jdk/commit/7cd25ed605469e3946a204b7b18d975c9768f2df
Stats:     76 lines in 2 files changed: 73 ins; 0 del; 3 mod

8322854: Incorrect rematerialization of scalar replaced objects in C2

Reviewed-by: kvn, thartmann

-------------

PR: https://git.openjdk.org/jdk/pull/17562


More information about the hotspot-compiler-dev mailing list