Commit 1659197f authored by paul.lind@imgtec.com's avatar paul.lind@imgtec.com

MIPS: Add cvt_d_s to disassembler.

BUG=
R=dusan.milosavljevic@imgtec.com

Review URL: https://codereview.chromium.org/605113002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24343 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 953af8bd
......@@ -555,7 +555,13 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
}
break;
case S:
UNIMPLEMENTED_MIPS();
switch (instr->FunctionFieldRaw()) {
case CVT_D_S:
Format(instr, "cvt.d.s 'fd, 'fs");
break;
default:
UNIMPLEMENTED_MIPS();
}
break;
case W:
switch (instr->FunctionFieldRaw()) {
......
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