mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
[mips] Remove unnecessary predicates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
70d3bebc8b
commit
ab9705f8fa
@ -66,7 +66,7 @@ multiclass AtomicCmpSwap64<PatFrag Op, string Width> {
|
||||
}
|
||||
}
|
||||
}
|
||||
let usesCustomInserter = 1, Predicates = [HasMips64, HasStandardEncoding],
|
||||
let usesCustomInserter = 1, Predicates = [HasStandardEncoding],
|
||||
DecoderNamespace = "Mips64" in {
|
||||
defm ATOMIC_LOAD_ADD_I64 : Atomic2Ops64<atomic_load_add_64, "load_add_64">;
|
||||
defm ATOMIC_LOAD_SUB_I64 : Atomic2Ops64<atomic_load_sub_64, "load_sub_64">;
|
||||
|
@ -107,7 +107,7 @@ multiclass MovnPats<RegisterClass CRC, RegisterClass DRC, Instruction MOVNInst,
|
||||
|
||||
// Instantiation of instructions.
|
||||
def MOVZ_I_I : CondMovIntInt<CPURegs, CPURegs, 0x0a, "movz">;
|
||||
let Predicates = [HasMips64, HasStandardEncoding],
|
||||
let Predicates = [HasStandardEncoding],
|
||||
DecoderNamespace = "Mips64" in {
|
||||
def MOVZ_I_I64 : CondMovIntInt<CPURegs, CPU64Regs, 0x0a, "movz">;
|
||||
def MOVZ_I64_I : CondMovIntInt<CPU64Regs, CPURegs, 0x0a, "movz"> {
|
||||
@ -119,7 +119,7 @@ let Predicates = [HasMips64, HasStandardEncoding],
|
||||
}
|
||||
|
||||
def MOVN_I_I : CondMovIntInt<CPURegs, CPURegs, 0x0b, "movn">;
|
||||
let Predicates = [HasMips64, HasStandardEncoding],
|
||||
let Predicates = [HasStandardEncoding],
|
||||
DecoderNamespace = "Mips64" in {
|
||||
def MOVN_I_I64 : CondMovIntInt<CPURegs, CPU64Regs, 0x0b, "movn">;
|
||||
def MOVN_I64_I : CondMovIntInt<CPU64Regs, CPURegs, 0x0b, "movn"> {
|
||||
|
@ -1084,7 +1084,7 @@ def MSUBU : MArithR<5, "msubu", MipsMSubu>;
|
||||
// MUL is a assembly macro in the current used ISAs. In recent ISA's
|
||||
// it is a real instruction.
|
||||
def MUL : ArithLogicR<0x1c, 0x02, "mul", mul, IIImul, CPURegs, 1>,
|
||||
Requires<[HasMips32, HasStandardEncoding]>;
|
||||
Requires<[HasStandardEncoding]>;
|
||||
|
||||
def RDHWR : ReadHardware<CPURegs, HWRegs>;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user