1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

[mips][microMIPSr6] Implement mips32 to microMIPSr6 mapping support

Differential Revision: http://reviews.llvm.org/D8661

llvm-svn: 235505
This commit is contained in:
Zoran Jovanovic 2015-04-22 13:27:34 +00:00
parent df195a3bea
commit 324b320beb
2 changed files with 24 additions and 3 deletions

View File

@ -179,13 +179,20 @@ EncodeInstruction(const MCInst &MI, raw_ostream &OS,
(Opcode != Mips::SLL_MM) && !Binary)
llvm_unreachable("unimplemented opcode in EncodeInstruction()");
int NewOpcode = -1;
if (isMicroMips(STI)) {
int NewOpcode = isMips32r6(STI) ?
Mips::MipsR62MicroMipsR6(Opcode, Mips::Arch_micromipsr6) :
Mips::Std2MicroMips(Opcode, Mips::Arch_micromips);
if (isMips32r6(STI)) {
NewOpcode = Mips::MipsR62MicroMipsR6(Opcode, Mips::Arch_micromipsr6);
if (NewOpcode == -1)
NewOpcode = Mips::Std2MicroMipsR6(Opcode, Mips::Arch_micromipsr6);
}
else
NewOpcode = Mips::Std2MicroMips(Opcode, Mips::Arch_micromips);
if (NewOpcode != -1) {
if (Fixups.size() > N)
Fixups.pop_back();
Opcode = NewOpcode;
TmpInst.setOpcode (NewOpcode);
Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI);

View File

@ -50,6 +50,20 @@ def Std2MicroMips : InstrMapping {
let ValueCols = [["se"], ["micromips"]];
}
class StdMMR6Rel;
def Std2MicroMipsR6 : InstrMapping {
let FilterClass = "StdMMR6Rel";
// Instructions with the same BaseOpcode and isNVStore values form a row.
let RowFields = ["BaseOpcode"];
// Instructions with the same predicate sense form a column.
let ColFields = ["Arch"];
// The key column is the unpredicated instructions.
let KeyCol = ["se"];
// Value columns are PredSense=true and PredSense=false
let ValueCols = [["se"], ["micromipsr6"]];
}
class StdArch {
string Arch = "se";
}