@@ -10948,7 +10948,7 @@ void emitter::emitDispInsHex(instrDesc* id, BYTE* code, size_t sz)
10948
10948
//
10949
10949
void emitter::emitDispEmbBroadcastCount(instrDesc* id) const
10950
10950
{
10951
- if (!IsAvx512OrPriorInstruction (id->idIns()) || !id->idIsEvexbContextSet())
10951
+ if (!IsEvexEncodableInstruction (id->idIns()) || !id->idIsEvexbContextSet())
10952
10952
{
10953
10953
return;
10954
10954
}
@@ -10995,7 +10995,7 @@ void emitter::emitDispEmbRounding(instrDesc* id) const
10995
10995
//
10996
10996
void emitter::emitDispEmbMasking(instrDesc* id) const
10997
10997
{
10998
- if (!IsAvx512OrPriorInstruction (id->idIns()))
10998
+ if (!IsEvexEncodableInstruction (id->idIns()))
10999
10999
{
11000
11000
return;
11001
11001
}
@@ -11215,7 +11215,7 @@ void emitter::emitDispIns(
11215
11215
11216
11216
case IF_CNS:
11217
11217
{
11218
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
11218
+ assert(!IsEvexEncodableInstruction (id->idIns()));
11219
11219
11220
11220
val = emitGetInsSC(id);
11221
11221
#ifdef TARGET_AMD64
@@ -11260,7 +11260,7 @@ void emitter::emitDispIns(
11260
11260
case IF_AWR:
11261
11261
case IF_ARW:
11262
11262
{
11263
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
11263
+ assert(!IsEvexEncodableInstruction (id->idIns()));
11264
11264
11265
11265
if (((ins == INS_call) || (ins == INS_tail_i_jmp)) && id->idIsCallRegPtr())
11266
11266
{
@@ -11554,7 +11554,7 @@ void emitter::emitDispIns(
11554
11554
case IF_SWR:
11555
11555
case IF_SRW:
11556
11556
{
11557
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
11557
+ assert(!IsEvexEncodableInstruction (id->idIns()));
11558
11558
printf("%s", sstr);
11559
11559
11560
11560
#if !FEATURE_FIXED_OUT_ARGS
@@ -12106,7 +12106,7 @@ void emitter::emitDispIns(
12106
12106
case IF_RWR:
12107
12107
case IF_RRW:
12108
12108
{
12109
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
12109
+ assert(!IsEvexEncodableInstruction (id->idIns()));
12110
12110
printf("%s", emitRegName(id->idReg1(), attr));
12111
12111
emitDispShift(ins);
12112
12112
break;
@@ -12317,7 +12317,7 @@ void emitter::emitDispIns(
12317
12317
12318
12318
case IF_RWR_MRD_OFF:
12319
12319
{
12320
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
12320
+ assert(!IsEvexEncodableInstruction (id->idIns()));
12321
12321
printf("%s, %s", emitRegName(id->idReg1(), attr), "offset");
12322
12322
offs = emitGetInsDsp(id);
12323
12323
emitDispClsVar(id->idAddr()->iiaFieldHnd, offs, ID_INFO_DSP_RELOC);
@@ -12372,7 +12372,7 @@ void emitter::emitDispIns(
12372
12372
case IF_MWR:
12373
12373
case IF_MRW:
12374
12374
{
12375
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
12375
+ assert(!IsEvexEncodableInstruction (id->idIns()));
12376
12376
printf("%s", sstr);
12377
12377
offs = emitGetInsDsp(id);
12378
12378
emitDispClsVar(id->idAddr()->iiaFieldHnd, offs, ID_INFO_DSP_RELOC);
@@ -12382,7 +12382,7 @@ void emitter::emitDispIns(
12382
12382
12383
12383
case IF_MRD_OFF:
12384
12384
{
12385
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
12385
+ assert(!IsEvexEncodableInstruction (id->idIns()));
12386
12386
printf("offset ");
12387
12387
offs = emitGetInsDsp(id);
12388
12388
emitDispClsVar(id->idAddr()->iiaFieldHnd, offs, ID_INFO_DSP_RELOC);
@@ -12417,7 +12417,7 @@ void emitter::emitDispIns(
12417
12417
case IF_RWR_LABEL:
12418
12418
case IF_SWR_LABEL:
12419
12419
{
12420
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
12420
+ assert(!IsEvexEncodableInstruction (id->idIns()));
12421
12421
12422
12422
if (ins == INS_lea)
12423
12423
{
@@ -12460,7 +12460,7 @@ void emitter::emitDispIns(
12460
12460
case IF_METHOD:
12461
12461
case IF_METHPTR:
12462
12462
{
12463
- assert(!IsAvx512OrPriorInstruction (id->idIns()));
12463
+ assert(!IsEvexEncodableInstruction (id->idIns()));
12464
12464
methodName = emitComp->eeGetMethodFullName((CORINFO_METHOD_HANDLE)id->idDebugOnlyInfo()->idMemCookie);
12465
12465
12466
12466
if (id->idInsFmt() == IF_METHPTR)
0 commit comments