Skip to content

Commit

Permalink
Enable lxvh8x instruction for PPC
Browse files Browse the repository at this point in the history
This commit enables lxvh8x vector instruction for PPC.
  • Loading branch information
mnalam-p committed Aug 25, 2021
1 parent 1d0a329 commit c3e28ce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion compiler/p/codegen/OMRInstOpCode.enum
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@
// lxsihzx, // Load VSX scalar as integer Hword & zero indexed
lxv, // Load VSX vector
lxvb16x, // Load VSX vector byte*16 indexed
// lxvh8x, // Load VSX vector Hword*8 indexed
lxvh8x, // Load VSX vector Hword*8 indexed
lxvll, // Load VSX vector left-justified with length
// lxvwsx, // Load VSX vector word & splat indexed
// lxvx, // Load VSX vector indexed
Expand Down
26 changes: 13 additions & 13 deletions compiler/p/codegen/OMRInstOpCodeProperties.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9665,18 +9665,18 @@
PPCOpProp_IsVSX,
},

/* { */
/* .mnemonic = OMR::InstOpCode::lxvh8x, */
/* .name = "lxvh8x", */
{
/* .mnemonic = */ OMR::InstOpCode::lxvh8x,
/* .name = */ "lxvh8x",
/* .description = "Load VSX vector Hword*8 indexed", */
/* .prefix = 0x00000000, */
/* .opcode = 0x7C000658, */
/* .format = FORMAT_UNKNOWN, */
/* .minimumALS = OMR_PROCESSOR_PPC_P9, */
/* .properties = PPCOpProp_IsLoad | */
/* PPCOpProp_ExcludeR0ForRA | */
/* PPCOpProp_IsVSX, */
/* }, */
/* .prefix = */ 0x00000000,
/* .opcode = */ 0x7C000658,
/* .format = */ FORMAT_XT_RA_RB,
/* .minimumALS = */ OMR_PROCESSOR_PPC_P9,
/* .properties = */ PPCOpProp_IsLoad |
PPCOpProp_ExcludeR0ForRA |
PPCOpProp_IsVSX,
},

{
/* .mnemonic = */ OMR::InstOpCode::lxvll,
Expand Down Expand Up @@ -14380,8 +14380,8 @@
/* .name = */ "vrlq",
/* .description = "Vector Rotate Left Quadword", */
/* .prefix = */ 0x00000000,
/* .opcode = */ 0x00000000,
/* .format = */ FORMAT_UNKNOWN,
/* .opcode = */ 0x10000005,
/* .format = */ FORMAT_VRT_VRA_VRB,
/* .minimumALS = */ OMR_PROCESSOR_PPC_P10,
/* .properties = */ PPCOpProp_IsVMX |
PPCOpProp_SyncSideEffectFree,
Expand Down

0 comments on commit c3e28ce

Please sign in to comment.