Skip to content

Commit 40a47f2

Browse files
committed
[aarch64] Set the UI comment for PMULL instruction
1 parent dd98868 commit 40a47f2

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

aarch64/corefreq-cli-rsc-en.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,7 @@
906906
#define RSC_ISA_PAUTH2_COMM_CODE_EN " Enhanced Pointer Authentication "
907907
#define RSC_ISA_PAUTH_LR_COMM_CODE_EN " Pointer Authentication Link Register "
908908
#define RSC_ISA_PCDPHINT_COMM_CODE_EN " Producer-Consumer Data Placement Hints "
909+
#define RSC_ISA_PMULL_COMM_CODE_EN " Multi-vector Polynomial Multiply Long "
909910
#define RSC_ISA_PRFMSLC_COMM_CODE_EN " PRFM instructions support SLC target "
910911
#define RSC_ISA_FPRCVT_COMM_CODE_EN \
911912
" Floating-point to/from integer in scalar FP register "

aarch64/corefreq-cli-rsc-fr.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,7 @@ do echo -en "$h$l\t""\xc3""\x$h$l""\t"; done; done;echo
573573
#define RSC_ISA_PAUTH2_COMM_CODE_FR RSC_ISA_PAUTH2_COMM_CODE_EN
574574
#define RSC_ISA_PAUTH_LR_COMM_CODE_FR RSC_ISA_PAUTH_LR_COMM_CODE_EN
575575
#define RSC_ISA_PCDPHINT_COMM_CODE_FR RSC_ISA_PCDPHINT_COMM_CODE_EN
576+
#define RSC_ISA_PMULL_COMM_CODE_FR RSC_ISA_PMULL_COMM_CODE_EN
576577
#define RSC_ISA_PRFMSLC_COMM_CODE_FR RSC_ISA_PRFMSLC_COMM_CODE_EN
577578
#define RSC_ISA_FPRCVT_COMM_CODE_FR RSC_ISA_FPRCVT_COMM_CODE_EN
578579
#define RSC_ISA_FRINTTS_COMM_CODE_FR RSC_ISA_FRINTTS_COMM_CODE_EN

aarch64/corefreq-cli-rsc.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,7 @@ RESOURCE_ST Resource[] = {
759759
LDQ(RSC_ISA_AES),
760760
LDT(RSC_ISA_AES_COMM),
761761
LDQ(RSC_ISA_PMULL),
762+
LDT(RSC_ISA_PMULL_COMM),
762763
LDQ(RSC_ISA_LSE),
763764
LDT(RSC_ISA_LSE_COMM),
764765
LDQ(RSC_ISA_LSE128),

aarch64/corefreq-cli-rsc.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ enum {
582582
RSC_ISA_AES,
583583
RSC_ISA_AES_COMM,
584584
RSC_ISA_PMULL,
585+
RSC_ISA_PMULL_COMM,
585586
RSC_ISA_LSE,
586587
RSC_ISA_LSE_COMM,
587588
RSC_ISA_LSE128,

aarch64/corefreq-cli.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2192,17 +2192,17 @@ REASON_CODE SysInfoISA( Window *win,
21922192
/* Row Mark */
21932193
{
21942194
NULL,
2195-
RSC(ISA_PRFMSLC).CODE(), RSC(ISA_PRFMSLC_COMM).CODE(),
2196-
{ 0, RO(Shm)->Proc.Features.PRFMSLC },
2195+
RSC(ISA_PMULL).CODE(), RSC(ISA_PMULL_COMM).CODE(),
2196+
{ 0, RO(Shm)->Proc.Features.PMULL },
21972197
(unsigned short[])
2198-
{ RO(Shm)->Proc.Features.PRFMSLC },
2198+
{ RO(Shm)->Proc.Features.PMULL },
21992199
},
22002200
{
22012201
NULL,
2202-
RSC(ISA_PMULL).CODE(), RSC(ISA_AES_COMM).CODE(),
2203-
{ 0, RO(Shm)->Proc.Features.PMULL },
2202+
RSC(ISA_PRFMSLC).CODE(), RSC(ISA_PRFMSLC_COMM).CODE(),
2203+
{ 0, RO(Shm)->Proc.Features.PRFMSLC },
22042204
(unsigned short[])
2205-
{ RO(Shm)->Proc.Features.PMULL },
2205+
{ RO(Shm)->Proc.Features.PRFMSLC },
22062206
},
22072207
{
22082208
NULL,

0 commit comments

Comments
 (0)