dotnet/runtime
[JIT] Possible optimization for `x % {pow2_cns}` transformation for `ulong` types
Geschlossen
#81.189 geöffnet am 25.01.2023
area-CodeGen-coreclrhelp wantedtenet-performance
Repository-Metriken
- Stars
- (17.886 Sterne)
- PR-Merge-Metriken
- (Durchschn. Merge 12T 11h) (661 gemergte PRs in 30 T)
Beschreibung
At the moment, we do not optimize x % {pow2_cns} to x & (pow2_cns - 1) for ulong types as they get transformed differently in morph.cpp. I believe we should only do this for X64 and not X86.