From c61db467357337aad60771fde06d7433444f0d67 Mon Sep 17 00:00:00 2001 From: SingleAccretion <62474226+SingleAccretion@users.noreply.github.com> Date: Mon, 6 Jun 2022 13:51:35 +0300 Subject: [PATCH] Generalize the "BOX(nullable) cmp null" opt (#69961) We can obtain the "Nullable" class handle from the helper's arg. --- src/coreclr/inc/corinfo.h | 1 + src/coreclr/jit/gentree.cpp | 36 +++++++++++++++--------------------- 2 files changed, 16 insertions(+), 21 deletions(-) diff --git a/src/coreclr/inc/corinfo.h b/src/coreclr/inc/corinfo.h index 156444dfeb895..21bfaef379527 100644 --- a/src/coreclr/inc/corinfo.h +++ b/src/coreclr/inc/corinfo.h @@ -1936,6 +1936,7 @@ struct CORINFO_VarArgInfo #define OFFSETOF__CORINFO_String__stringLen SIZEOF__CORINFO_Object #define OFFSETOF__CORINFO_String__chars (OFFSETOF__CORINFO_String__stringLen + sizeof(uint32_t) /* stringLen */) +#define OFFSETOF__CORINFO_NullableOfT__hasValue 0 /* data to optimize delegate construction */ struct DelegateCtorArgs diff --git a/src/coreclr/jit/gentree.cpp b/src/coreclr/jit/gentree.cpp index 5503947cf5895..48cb9b16f99e1 100644 --- a/src/coreclr/jit/gentree.cpp +++ b/src/coreclr/jit/gentree.cpp @@ -13516,32 +13516,26 @@ GenTree* Compiler::gtFoldBoxNullable(GenTree* tree) return tree; } - JITDUMP("\nAttempting to optimize BOX_NULLABLE(&x) %s null [%06u]\n", GenTree::OpName(oper), dspTreeID(tree)); + JITDUMP("\nReplacing BOX_NULLABLE(&x) %s null [%06u] with x.hasValue\n", GenTree::OpName(oper), dspTreeID(tree)); - // Get the address of the struct being boxed - GenTree* const arg = call->gtArgs.GetArgByIndex(1)->GetNode(); + GenTree* nullableHndNode = call->gtArgs.GetArgByIndex(0)->GetNode(); + CORINFO_CLASS_HANDLE nullableClassHnd = gtGetHelperArgClassHandle(nullableHndNode); + CORINFO_FIELD_HANDLE hasValueFieldHnd = info.compCompHnd->getFieldInClass(nullableClassHnd, 0); - if (arg->OperIs(GT_ADDR)) - { - CORINFO_CLASS_HANDLE nullableHnd = gtGetStructHandle(arg->AsOp()->gtOp1); - CORINFO_FIELD_HANDLE fieldHnd = info.compCompHnd->getFieldInClass(nullableHnd, 0); - - // Replace the box with an access of the nullable 'hasValue' field. - JITDUMP("\nSuccess: replacing BOX_NULLABLE(&x) [%06u] with x.hasValue\n", dspTreeID(op)); - GenTree* newOp = gtNewFieldRef(TYP_BOOL, fieldHnd, arg, 0); + GenTree* srcAddr = call->gtArgs.GetArgByIndex(1)->GetNode(); + GenTree* fieldNode = gtNewFieldRef(TYP_BOOL, hasValueFieldHnd, srcAddr, OFFSETOF__CORINFO_NullableOfT__hasValue); - if (op == op1) - { - tree->AsOp()->gtOp1 = newOp; - } - else - { - tree->AsOp()->gtOp2 = newOp; - } - - cons->gtType = TYP_INT; + if (op == op1) + { + tree->AsOp()->gtOp1 = fieldNode; + } + else + { + tree->AsOp()->gtOp2 = fieldNode; } + cons->gtType = TYP_INT; + return tree; }