-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMIoptimization
Milestone
Description
The following C#
long lengthToExamine = length - Vector256<byte>.Count;
if (lengthToExamine != 0)
{
Produces asm:
add r8, -32
test r8, r8
je SHORT G_M64667_IG11
However add
sets flags so could this be?
add r8, -32
jz SHORT G_M64667_IG11
category:cq
theme:optimization
skill-level:expert
cost:medium
pentp
Metadata
Metadata
Assignees
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMIoptimization