diff options
author | Simon Dardis <simon.dardis@mips.com> | 2018-04-25 10:19:22 +0000 |
---|---|---|
committer | Simon Dardis <simon.dardis@mips.com> | 2018-04-25 10:19:22 +0000 |
commit | eac9301cdbf529202da98c58faadf84b55655731 (patch) | |
tree | dc3df970c9593bb4043a88d6ef1d31a27d55ab1d /llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp | |
parent | 93c49d5e58d25cde1a6b0acac8e2a322534c8c36 (diff) | |
download | bcm5719-llvm-eac9301cdbf529202da98c58faadf84b55655731.tar.gz bcm5719-llvm-eac9301cdbf529202da98c58faadf84b55655731.zip |
[mips] Fix the definition of sync, synci
Also, fix the disassembly of synci for microMIPS.
Reviewers: abeserminji, smaksimovic, atanasyan
Differential Revision: https://reviews.llvm.org/D45870
llvm-svn: 330810
Diffstat (limited to 'llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp b/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp index 2f9c2868ca7..f7d80b40c3f 100644 --- a/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp +++ b/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp @@ -305,6 +305,11 @@ static DecodeStatus DecodeSyncI(MCInst &Inst, uint64_t Address, const void *Decoder); +static DecodeStatus DecodeSyncI_MM(MCInst &Inst, + unsigned Insn, + uint64_t Address, + const void *Decoder); + static DecodeStatus DecodeSynciR6(MCInst &Inst, unsigned Insn, uint64_t Address, @@ -1649,6 +1654,19 @@ static DecodeStatus DecodeSyncI(MCInst &Inst, return MCDisassembler::Success; } +static DecodeStatus DecodeSyncI_MM(MCInst &Inst, unsigned Insn, + uint64_t Address, const void *Decoder) { + int Offset = SignExtend32<16>(Insn & 0xffff); + unsigned Base = fieldFromInstruction(Insn, 16, 5); + + Base = getReg(Decoder, Mips::GPR32RegClassID, Base); + + Inst.addOperand(MCOperand::createReg(Base)); + Inst.addOperand(MCOperand::createImm(Offset)); + + return MCDisassembler::Success; +} + static DecodeStatus DecodeSynciR6(MCInst &Inst, unsigned Insn, uint64_t Address, |