summaryrefslogtreecommitdiff
path: root/src/jit/simd.cpp
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2019-03-05 17:32:13 -0800
committerCarol Eidt <carol.eidt@microsoft.com>2019-03-05 17:32:13 -0800
commit140e519ef8fe494ac794f4d050dd87c23dc85f22 (patch)
tree1370efd38510d583ff32ad9f8cb55076efc1029a /src/jit/simd.cpp
parentd17b66c8bbc21fc8be18d901e691ed7e9bc8d7ce (diff)
downloadcoreclr-140e519ef8fe494ac794f4d050dd87c23dc85f22.tar.gz
coreclr-140e519ef8fe494ac794f4d050dd87c23dc85f22.tar.bz2
coreclr-140e519ef8fe494ac794f4d050dd87c23dc85f22.zip
Correctly type SIMD stack values
When `impSIMDPopStack` pops a struct value, it needs to retype the `OBJ` if it exists and doesn't match. Fix #22850
Diffstat (limited to 'src/jit/simd.cpp')
-rw-r--r--src/jit/simd.cpp32
1 files changed, 20 insertions, 12 deletions
diff --git a/src/jit/simd.cpp b/src/jit/simd.cpp
index 3d265ee12d..4f3f8eb04c 100644
--- a/src/jit/simd.cpp
+++ b/src/jit/simd.cpp
@@ -1022,17 +1022,17 @@ const SIMDIntrinsicInfo* Compiler::getSIMDIntrinsicInfo(CORINFO_CLASS_HANDLE* in
// Normalizes TYP_STRUCT value in case of GT_CALL, GT_RET_EXPR and arg nodes.
//
// Arguments:
-// type - the type of value that the caller expects to be popped off the stack.
-// expectAddr - if true indicates we are expecting type stack entry to be a TYP_BYREF.
-// structType - the class handle to use when normalizing if it is not the same as the stack entry class handle;
-// this can happen for certain scenarios, such as folding away a static cast, where we want the
-// value popped to have the type that would have been returned.
+// type - the type of value that the caller expects to be popped off the stack.
+// expectAddr - if true indicates we are expecting type stack entry to be a TYP_BYREF.
+// structHandle - the class handle to use when normalizing if it is not the same as the stack entry class handle;
+// this can happen for certain scenarios, such as folding away a static cast, where we want the
+// value popped to have the type that would have been returned.
//
// Notes:
// If the popped value is a struct, and the expected type is a simd type, it will be set
// to that type, otherwise it will assert if the type being popped is not the expected type.
-GenTree* Compiler::impSIMDPopStack(var_types type, bool expectAddr, CORINFO_CLASS_HANDLE structType)
+GenTree* Compiler::impSIMDPopStack(var_types type, bool expectAddr, CORINFO_CLASS_HANDLE structHandle)
{
StackEntry se = impPopStack();
typeInfo ti = se.seTypeInfo;
@@ -1058,10 +1058,18 @@ GenTree* Compiler::impSIMDPopStack(var_types type, bool expectAddr, CORINFO_CLAS
// If we have a ldobj of a SIMD local we need to transform it.
if (tree->OperGet() == GT_OBJ)
{
- GenTree* addr = tree->gtOp.gtOp1;
- if ((addr->OperGet() == GT_ADDR) && isSIMDTypeLocal(addr->gtOp.gtOp1))
+ if (tree->AsObj()->gtClass != structHandle)
{
- tree = addr->gtOp.gtOp1;
+ // In this case we need to retain the GT_OBJ to retype the value.
+ tree->AsObj()->gtClass = structHandle;
+ }
+ else
+ {
+ GenTree* addr = tree->gtOp.gtOp1;
+ if ((addr->OperGet() == GT_ADDR) && isSIMDTypeLocal(addr->gtOp.gtOp1))
+ {
+ tree = addr->gtOp.gtOp1;
+ }
}
}
@@ -1077,12 +1085,12 @@ GenTree* Compiler::impSIMDPopStack(var_types type, bool expectAddr, CORINFO_CLAS
{
assert(ti.IsType(TI_STRUCT));
- if (structType == nullptr)
+ if (structHandle == nullptr)
{
- structType = ti.GetClassHandleForValueClass();
+ structHandle = ti.GetClassHandleForValueClass();
}
- tree = impNormStructVal(tree, structType, (unsigned)CHECK_SPILL_ALL);
+ tree = impNormStructVal(tree, structHandle, (unsigned)CHECK_SPILL_ALL);
}
// Now set the type of the tree to the specialized SIMD struct type, if applicable.