RFR: 8325541: C2 SuperWord: refactor filter / split [v4]

Emanuel Peter epeter at openjdk.org
Fri Feb 9 19:14:16 UTC 2024


> A few filter / split methods are currently bunched together. We should peal them apart so that moving / changing things becomes easier in the future.
> 
> 
> combine_packs -> refactored into:
>   combine_packs (now really only combines)
>   split_packs_for_max_vector_size
>   filter_packs_for_power_of_2_size
>   filter_packs_for_mutual_independence
> 
> filter_packs -> refactored into:
>   filter_packs_for_implemented
>   filter_packs_for_profitable
> 
> 
> Since we have so many "filter" passes, I created a dedicated `SuperWord::filter_packs` method, that takes a `FilterPredicate` lambda. This also allows me now to systematically debug dump any packs that are rejected .
> 
> I also took the liberty to enforce a new invariant between passes: there cannot be any `nullptr` in the packlist.
> Before the "filter" passes just set some packs to `nullptr`. I now shift all surviving packs down, and truncate the packlist.

Emanuel Peter has updated the pull request incrementally with one additional commit since the last revision:

  refactored filter_packs_for_alignment using filter_packs

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

Changes:
  - all: https://git.openjdk.org/jdk/pull/17785/files
  - new: https://git.openjdk.org/jdk/pull/17785/files/6ac85e57..9f75b452

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jdk&pr=17785&range=03
 - incr: https://webrevs.openjdk.org/?repo=jdk&pr=17785&range=02-03

  Stats: 56 lines in 2 files changed: 7 ins; 29 del; 20 mod
  Patch: https://git.openjdk.org/jdk/pull/17785.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/17785/head:pull/17785

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


More information about the hotspot-compiler-dev mailing list