@@ -1446,7 +1446,7 @@ bool GenTree::Compare(GenTree* op1, GenTree* op2, bool swapOK)
1446
1446
#endif // FEATURE_SIMD
1447
1447
1448
1448
#ifdef FEATURE_HW_INTRINSICS
1449
- case GT_HWIntrinsic :
1449
+ case GT_HWINTRINSIC :
1450
1450
if ((op1->AsHWIntrinsic()->gtHWIntrinsicId != op2->AsHWIntrinsic()->gtHWIntrinsicId) ||
1451
1451
(op1->AsHWIntrinsic()->gtSIMDBaseType != op2->AsHWIntrinsic()->gtSIMDBaseType) ||
1452
1452
(op1->AsHWIntrinsic()->gtSIMDSize != op2->AsHWIntrinsic()->gtSIMDSize) ||
@@ -2116,7 +2116,7 @@ unsigned Compiler::gtHashValue(GenTree* tree)
2116
2116
#endif // FEATURE_SIMD
2117
2117
2118
2118
#ifdef FEATURE_HW_INTRINSICS
2119
- case GT_HWIntrinsic :
2119
+ case GT_HWINTRINSIC :
2120
2120
hash += tree->AsHWIntrinsic()->gtHWIntrinsicId;
2121
2121
hash += tree->AsHWIntrinsic()->gtSIMDBaseType;
2122
2122
hash += tree->AsHWIntrinsic()->gtSIMDSize;
@@ -3645,7 +3645,7 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
3645
3645
break;
3646
3646
3647
3647
#if defined(FEATURE_HW_INTRINSICS) && defined(_TARGET_XARCH_)
3648
- case GT_HWIntrinsic :
3648
+ case GT_HWINTRINSIC :
3649
3649
{
3650
3650
if (tree->AsHWIntrinsic()->OperIsMemoryLoadOrStore())
3651
3651
{
@@ -4558,7 +4558,7 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
4558
4558
DONE:
4559
4559
4560
4560
#ifdef FEATURE_HW_INTRINSICS
4561
- if ((oper == GT_HWIntrinsic ) && (tree->gtGetOp1() == nullptr))
4561
+ if ((oper == GT_HWINTRINSIC ) && (tree->gtGetOp1() == nullptr))
4562
4562
{
4563
4563
// We can have nullary HWIntrinsic nodes, and we must have non-zero cost.
4564
4564
costEx = 1;
@@ -4981,7 +4981,7 @@ bool GenTree::TryGetUse(GenTree* def, GenTree*** use)
4981
4981
#endif // FEATURE_SIMD
4982
4982
4983
4983
#ifdef FEATURE_HW_INTRINSICS
4984
- case GT_HWIntrinsic :
4984
+ case GT_HWINTRINSIC :
4985
4985
if ((this->AsHWIntrinsic()->gtOp1 != nullptr) && this->AsHWIntrinsic()->gtOp1->OperIsList())
4986
4986
{
4987
4987
return this->AsHWIntrinsic()->gtOp1->TryGetUseList(def, use);
@@ -5306,7 +5306,7 @@ bool GenTree::OperRequiresAsgFlag()
5306
5306
return true;
5307
5307
}
5308
5308
#ifdef FEATURE_HW_INTRINSICS
5309
- if (gtOper == GT_HWIntrinsic )
5309
+ if (gtOper == GT_HWINTRINSIC )
5310
5310
{
5311
5311
GenTreeHWIntrinsic* hwIntrinsicNode = this->AsHWIntrinsic();
5312
5312
if (hwIntrinsicNode->OperIsMemoryStore())
@@ -5364,7 +5364,7 @@ bool GenTree::OperRequiresCallFlag(Compiler* comp)
5364
5364
// Return Value:
5365
5365
// True if the given node contains an implicit indirection
5366
5366
//
5367
- // Note that for the GT_HWIntrinsic node we have to examine the
5367
+ // Note that for the GT_HWINTRINSIC node we have to examine the
5368
5368
// details of the node to determine its result.
5369
5369
//
5370
5370
@@ -5388,7 +5388,7 @@ bool GenTree::OperIsImplicitIndir() const
5388
5388
case GT_ARR_OFFSET:
5389
5389
return true;
5390
5390
#ifdef FEATURE_HW_INTRINSICS
5391
- case GT_HWIntrinsic :
5391
+ case GT_HWINTRINSIC :
5392
5392
{
5393
5393
GenTreeHWIntrinsic* hwIntrinsicNode = (const_cast<GenTree*>(this))->AsHWIntrinsic();
5394
5394
return hwIntrinsicNode->OperIsMemoryLoadOrStore();
@@ -5487,7 +5487,7 @@ bool GenTree::OperMayThrow(Compiler* comp)
5487
5487
return true;
5488
5488
5489
5489
#ifdef FEATURE_HW_INTRINSICS
5490
- case GT_HWIntrinsic :
5490
+ case GT_HWINTRINSIC :
5491
5491
{
5492
5492
GenTreeHWIntrinsic* hwIntrinsicNode = this->AsHWIntrinsic();
5493
5493
assert(hwIntrinsicNode != nullptr);
@@ -6696,7 +6696,7 @@ void Compiler::gtBlockOpInit(GenTree* result, GenTree* dst, GenTree* srcOrFillVa
6696
6696
src = src->AsIndir()->Addr()->gtGetOp1();
6697
6697
}
6698
6698
#ifdef FEATURE_HW_INTRINSICS
6699
- if ((src->OperGet() == GT_SIMD) || (src->OperGet() == GT_HWIntrinsic ))
6699
+ if ((src->OperGet() == GT_SIMD) || (src->OperGet() == GT_HWINTRINSIC ))
6700
6700
#else
6701
6701
if (src->OperGet() == GT_SIMD)
6702
6702
#endif // FEATURE_HW_INTRINSICS
@@ -7362,10 +7362,10 @@ GenTree* Compiler::gtCloneExpr(
7362
7362
#endif
7363
7363
7364
7364
#ifdef FEATURE_HW_INTRINSICS
7365
- case GT_HWIntrinsic :
7365
+ case GT_HWINTRINSIC :
7366
7366
{
7367
7367
GenTreeHWIntrinsic* hwintrinsicOp = tree->AsHWIntrinsic();
7368
- copy = new (this, GT_HWIntrinsic )
7368
+ copy = new (this, GT_HWINTRINSIC )
7369
7369
GenTreeHWIntrinsic(hwintrinsicOp->TypeGet(), hwintrinsicOp->gtGetOp1(),
7370
7370
hwintrinsicOp->gtGetOp2IfPresent(), hwintrinsicOp->gtHWIntrinsicId,
7371
7371
hwintrinsicOp->gtSIMDBaseType, hwintrinsicOp->gtSIMDSize);
@@ -8282,8 +8282,8 @@ unsigned GenTree::NumChildren()
8282
8282
return childCount;
8283
8283
}
8284
8284
#ifdef FEATURE_HW_INTRINSICS
8285
- // GT_HWIntrinsic require special handling
8286
- if (OperGet() == GT_HWIntrinsic )
8285
+ // GT_HWINTRINSIC require special handling
8286
+ if (OperGet() == GT_HWINTRINSIC )
8287
8287
{
8288
8288
if (AsOp()->gtOp1 == nullptr)
8289
8289
{
@@ -8729,7 +8729,7 @@ GenTreeUseEdgeIterator::GenTreeUseEdgeIterator(GenTree* node)
8729
8729
#endif // FEATURE_SIMD
8730
8730
8731
8731
#ifdef FEATURE_HW_INTRINSICS
8732
- case GT_HWIntrinsic :
8732
+ case GT_HWINTRINSIC :
8733
8733
if (m_node->AsHWIntrinsic()->gtOp1 == nullptr)
8734
8734
{
8735
8735
assert(m_node->NullOp1Legal());
@@ -11042,7 +11042,7 @@ void Compiler::gtDispTree(GenTree* tree,
11042
11042
#endif // FEATURE_SIMD
11043
11043
11044
11044
#ifdef FEATURE_HW_INTRINSICS
11045
- if (tree->gtOper == GT_HWIntrinsic )
11045
+ if (tree->gtOper == GT_HWINTRINSIC )
11046
11046
{
11047
11047
printf(" %s %s", tree->AsHWIntrinsic()->gtSIMDBaseType == TYP_UNKNOWN
11048
11048
? ""
@@ -13340,7 +13340,7 @@ GenTree* Compiler::gtFoldExprConst(GenTree* tree)
13340
13340
}
13341
13341
#endif // FEATURE_SIMD
13342
13342
#ifdef FEATURE_HW_INTRINSICS
13343
- if (tree->OperGet() == GT_HWIntrinsic )
13343
+ if (tree->OperGet() == GT_HWINTRINSIC )
13344
13344
{
13345
13345
return tree;
13346
13346
}
@@ -16871,7 +16871,7 @@ CORINFO_CLASS_HANDLE Compiler::gtGetStructHandleIfPresent(GenTree* tree)
16871
16871
break;
16872
16872
#endif // FEATURE_SIMD
16873
16873
#ifdef FEATURE_HW_INTRINSICS
16874
- case GT_HWIntrinsic :
16874
+ case GT_HWINTRINSIC :
16875
16875
structHnd = gtGetStructHandleForHWSIMD(tree->gtType, tree->AsHWIntrinsic()->gtSIMDBaseType);
16876
16876
break;
16877
16877
#endif
@@ -18017,7 +18017,7 @@ bool GenTree::isCommutativeSIMDIntrinsic()
18017
18017
#ifdef FEATURE_HW_INTRINSICS
18018
18018
bool GenTree::isCommutativeHWIntrinsic() const
18019
18019
{
18020
- assert(gtOper == GT_HWIntrinsic );
18020
+ assert(gtOper == GT_HWINTRINSIC );
18021
18021
18022
18022
#ifdef _TARGET_XARCH_
18023
18023
return HWIntrinsicInfo::IsCommutative(AsHWIntrinsic()->gtHWIntrinsicId);
@@ -18028,7 +18028,7 @@ bool GenTree::isCommutativeHWIntrinsic() const
18028
18028
18029
18029
bool GenTree::isContainableHWIntrinsic() const
18030
18030
{
18031
- assert(gtOper == GT_HWIntrinsic );
18031
+ assert(gtOper == GT_HWINTRINSIC );
18032
18032
18033
18033
#ifdef _TARGET_XARCH_
18034
18034
switch (AsHWIntrinsic()->gtHWIntrinsicId)
@@ -18059,7 +18059,7 @@ bool GenTree::isContainableHWIntrinsic() const
18059
18059
18060
18060
bool GenTree::isRMWHWIntrinsic(Compiler* comp)
18061
18061
{
18062
- assert(gtOper == GT_HWIntrinsic );
18062
+ assert(gtOper == GT_HWINTRINSIC );
18063
18063
assert(comp != nullptr);
18064
18064
18065
18065
#ifdef _TARGET_XARCH_
@@ -18103,15 +18103,15 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
18103
18103
var_types baseType,
18104
18104
unsigned size)
18105
18105
{
18106
- return new (this, GT_HWIntrinsic ) GenTreeHWIntrinsic(type, hwIntrinsicID, baseType, size);
18106
+ return new (this, GT_HWINTRINSIC ) GenTreeHWIntrinsic(type, hwIntrinsicID, baseType, size);
18107
18107
}
18108
18108
18109
18109
GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(
18110
18110
var_types type, GenTree* op1, NamedIntrinsic hwIntrinsicID, var_types baseType, unsigned simdSize)
18111
18111
{
18112
18112
SetOpLclRelatedToSIMDIntrinsic(op1);
18113
18113
18114
- return new (this, GT_HWIntrinsic ) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, baseType, simdSize);
18114
+ return new (this, GT_HWINTRINSIC ) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, baseType, simdSize);
18115
18115
}
18116
18116
18117
18117
GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(
@@ -18120,7 +18120,7 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(
18120
18120
SetOpLclRelatedToSIMDIntrinsic(op1);
18121
18121
SetOpLclRelatedToSIMDIntrinsic(op2);
18122
18122
18123
- return new (this, GT_HWIntrinsic ) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, baseType, simdSize);
18123
+ return new (this, GT_HWINTRINSIC ) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, baseType, simdSize);
18124
18124
}
18125
18125
18126
18126
GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
@@ -18135,7 +18135,7 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
18135
18135
SetOpLclRelatedToSIMDIntrinsic(op2);
18136
18136
SetOpLclRelatedToSIMDIntrinsic(op3);
18137
18137
18138
- return new (this, GT_HWIntrinsic )
18138
+ return new (this, GT_HWINTRINSIC )
18139
18139
GenTreeHWIntrinsic(type, gtNewArgList(op1, op2, op3), hwIntrinsicID, baseType, size);
18140
18140
}
18141
18141
@@ -18153,15 +18153,15 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
18153
18153
SetOpLclRelatedToSIMDIntrinsic(op3);
18154
18154
SetOpLclRelatedToSIMDIntrinsic(op4);
18155
18155
18156
- return new (this, GT_HWIntrinsic )
18156
+ return new (this, GT_HWINTRINSIC )
18157
18157
GenTreeHWIntrinsic(type, gtNewArgList(op1, op2, op3, op4), hwIntrinsicID, baseType, size);
18158
18158
}
18159
18159
18160
18160
GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(var_types type, GenTree* op1, NamedIntrinsic hwIntrinsicID)
18161
18161
{
18162
18162
SetOpLclRelatedToSIMDIntrinsic(op1);
18163
18163
18164
- return new (this, GT_HWIntrinsic ) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, TYP_UNKNOWN, 0);
18164
+ return new (this, GT_HWINTRINSIC ) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, TYP_UNKNOWN, 0);
18165
18165
}
18166
18166
18167
18167
GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(var_types type,
@@ -18172,7 +18172,7 @@ GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(var_types type,
18172
18172
SetOpLclRelatedToSIMDIntrinsic(op1);
18173
18173
SetOpLclRelatedToSIMDIntrinsic(op2);
18174
18174
18175
- return new (this, GT_HWIntrinsic ) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, TYP_UNKNOWN, 0);
18175
+ return new (this, GT_HWINTRINSIC ) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, TYP_UNKNOWN, 0);
18176
18176
}
18177
18177
18178
18178
GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(
@@ -18182,7 +18182,7 @@ GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(
18182
18182
SetOpLclRelatedToSIMDIntrinsic(op2);
18183
18183
SetOpLclRelatedToSIMDIntrinsic(op3);
18184
18184
18185
- return new (this, GT_HWIntrinsic )
18185
+ return new (this, GT_HWINTRINSIC )
18186
18186
GenTreeHWIntrinsic(type, gtNewArgList(op1, op2, op3), hwIntrinsicID, TYP_UNKNOWN, 0);
18187
18187
}
18188
18188
0 commit comments