Skip to content

Commit

Permalink
Rename e_prefetchNTA -> e_prefetchnta
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Nov 24, 2023
1 parent 9777fb2 commit 299759c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common/h/mnemonics/x86_entryIDs.h
Expand Up @@ -484,7 +484,7 @@ e_popfd,
e_popfq,
e_por,
e_prefetch,
e_prefetchNTA,
e_prefetchnta,
e_prefetchT0,
e_prefetchT1,
e_prefetchT2,
Expand Down
4 changes: 2 additions & 2 deletions common/src/arch-x86.C
Expand Up @@ -1274,7 +1274,7 @@ COMMON_EXPORT dyn_hash_map<entryID, std::string> entryNames_IAPI = map_list_of
(e_popfd, "popfd")
(e_por, "por")
(e_prefetch, "prefetch")
(e_prefetchNTA, "prefetchNTA")
(e_prefetchnta, "prefetchnta")
(e_prefetchT0, "prefetchT0")
(e_prefetchT1, "prefetchT1")
(e_prefetchT2, "prefetchT2")
Expand Down Expand Up @@ -3918,7 +3918,7 @@ static ia32_entry groupMap2[][2][8] = {
},
{ /* group 16 */
{
{ e_prefetchNTA, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHNT << FPOS), 0 },
{ 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_prefetchT2, t_done, 0, true, { Mb, Zz, Zz }, 0, s1R | (fPREFETCHT1 << FPOS), 0 },
Expand Down
2 changes: 1 addition & 1 deletion dataflowAPI/src/convertOpcodes.C
Expand Up @@ -160,7 +160,7 @@ X86InstructionKind RoseInsnX86Factory::convertKind(entryID opcode, prefixEntryID
return x86_ret;
case e_prefetch:
return x86_prefetch;
case e_prefetchNTA:
case e_prefetchnta:
return x86_prefetchnta;
case e_prefetchT0:
return x86_prefetcht0;
Expand Down
2 changes: 1 addition & 1 deletion instructionAPI/src/InstructionCategories.C
Expand Up @@ -98,7 +98,7 @@ namespace Dyninst
case power_op_cmpli:
return c_CompareInsn;
case e_prefetch:
case e_prefetchNTA:
case e_prefetchnta:
case e_prefetchT0:
case e_prefetchT1:
case e_prefetchT2:
Expand Down

0 comments on commit 299759c

Please sign in to comment.