Commit 31b7d4f5 authored by Milad Fa's avatar Milad Fa Committed by Commit Bot

PPC: Add VX_OPCODE_C_FORM instructions to the disassembler

Instructions include:
vupkhsw
vupklsh
vupkhsh
vupklsb
vupkhsb

Change-Id: Ie11961dbf1f4838e96efe6704c8d938a62213b93
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2601660Reviewed-by: 's avatarJunliang Yan <junyan@redhat.com>
Reviewed-by: 's avatarMilad Fa <mfarazma@redhat.com>
Commit-Queue: Milad Fa <mfarazma@redhat.com>
Cr-Commit-Position: refs/heads/master@{#71872}
parent 0d8d1332
......@@ -428,6 +428,13 @@ void Decoder::DecodeExt0(Instruction* instr) {
}
PPC_VX_OPCODE_B_FORM_LIST(DECODE_VX_B_FORM__INSTRUCTIONS)
#undef DECODE_VX_B_FORM__INSTRUCTIONS
#define DECODE_VX_C_FORM__INSTRUCTIONS(name, opcode_name, opcode_value) \
case opcode_name: { \
Format(instr, #name " 'Vt, 'Vb"); \
return; \
}
PPC_VX_OPCODE_C_FORM_LIST(DECODE_VX_C_FORM__INSTRUCTIONS)
#undef DECODE_VX_C_FORM__INSTRUCTIONS
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment