Skip to content

Commit

Permalink
Rename e_prefetchT1 -> e_prefetcht1
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Nov 24, 2023
1 parent 588475c commit 3d4bcc9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions common/h/mnemonics/x86_entryIDs.h
Expand Up @@ -486,9 +486,8 @@ e_por,
e_prefetch,
e_prefetchnta,
e_prefetcht0,
e_prefetchT1,
e_prefetchT2,
e_prefetcht1,
e_prefetchT2,
e_prefetchw,
e_prefetchwt1,
e_psadbw,
Expand Down
4 changes: 2 additions & 2 deletions common/src/arch-x86.C
Expand Up @@ -1276,7 +1276,7 @@ COMMON_EXPORT dyn_hash_map<entryID, std::string> entryNames_IAPI = map_list_of
(e_prefetch, "prefetch")
(e_prefetchnta, "prefetchnta")
(e_prefetcht0, "prefetcht0")
(e_prefetchT1, "prefetchT1")
(e_prefetcht1, "prefetchT1")
(e_prefetchT2, "prefetchT2")
(e_prefetch_w, "prefetchw")
(e_prefetchw, "prefetchw")
Expand Down Expand Up @@ -3920,7 +3920,7 @@ static ia32_entry groupMap2[][2][8] = {
{
{ e_prefetchnta, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHNT << FPOS), 0 },
{ e_prefetcht0, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHT0 << FPOS), 0 },
{ e_prefetchT1, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHT1 << FPOS), 0 },
{ e_prefetcht1, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHT1 << FPOS), 0 },
{ e_prefetchT2, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHT1 << FPOS), 0 },
{ e_No_Entry, t_ill, 0, true, { Zz, Zz, Zz }, 0, 0, 0 },
{ e_No_Entry, t_ill, 0, true, { Zz, Zz, Zz }, 0, 0, 0 },
Expand Down
2 changes: 1 addition & 1 deletion dataflowAPI/src/convertOpcodes.C
Expand Up @@ -164,7 +164,7 @@ X86InstructionKind RoseInsnX86Factory::convertKind(entryID opcode, prefixEntryID
return x86_prefetchnta;
case e_prefetcht0:
return x86_prefetcht0;
case e_prefetchT1:
case e_prefetcht1:
return x86_prefetcht1;
case e_prefetchT2:
return x86_prefetcht2;
Expand Down
2 changes: 1 addition & 1 deletion instructionAPI/src/InstructionCategories.C
Expand Up @@ -100,7 +100,7 @@ namespace Dyninst
case e_prefetch:
case e_prefetchnta:
case e_prefetcht0:
case e_prefetchT1:
case e_prefetcht1:
case e_prefetchT2:
case e_prefetch_w:
case e_prefetchw:
Expand Down

0 comments on commit 3d4bcc9

Please sign in to comment.