dotnet/runtime
[JIT] Possible optimization for `x % {pow2_cns}` transformation for `ulong` types
Fechada
#81.189 aberto em 25 de jan. de 2023
area-CodeGen-coreclrhelp wantedtenet-performance
Métricas do repositório
- Stars
- (17.886 estrelas)
- Métricas de merge de PR
- (Mesclagem média 12d 11h) (661 fundiu PRs em 30d)
Description
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.