mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
[mips][microMIPSr6] Implement mips32 to microMIPSr6 mapping support
Differential Revision: http://reviews.llvm.org/D8661 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235505 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
61ffda59f9
commit
d311051513
@ -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);
|
||||
|
@ -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";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user