mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
327be6483d
Summary: - Conditional moves acting on 64-bit GPR's should require MIPS-IV rather than MIPS64 - ISD::MUL, and ISD::MULH[US] should be lowered on all 64-bit ISA's Patch by David Chisnall His work was sponsored by: DARPA, AFRL I've added additional testcases to cover as much of the codegen changes affecting MIPS-IV as I can. Where I've been unable to find an existing MIPS64 testcase that can be re-used for MIPS-IV (mainly tests covering ISD::GlobalAddress and similar), I at least agree that MIPS-IV should behave like MIPS64. Further testcases that are fixed by this patch will follow in my next commit. The testcases from that commit that fail for MIPS-IV without this patch are: LLVM :: CodeGen/Mips/2010-07-20-Switch.ll LLVM :: CodeGen/Mips/cmov.ll LLVM :: CodeGen/Mips/eh-dwarf-cfa.ll LLVM :: CodeGen/Mips/largeimmprinting.ll LLVM :: CodeGen/Mips/longbranch.ll LLVM :: CodeGen/Mips/mips64-f128.ll LLVM :: CodeGen/Mips/mips64directive.ll LLVM :: CodeGen/Mips/mips64ext.ll LLVM :: CodeGen/Mips/mips64fpldst.ll LLVM :: CodeGen/Mips/mips64intldst.ll LLVM :: CodeGen/Mips/mips64load-store-left-right.ll LLVM :: CodeGen/Mips/sint-fp-store_pattern.ll Reviewers: dsanders Reviewed By: dsanders CC: matheusalmeida Differential Revision: http://reviews.llvm.org/D3343 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206183 91177308-0d34-0410-b5e6-96231b3b80d8
246 lines
11 KiB
TableGen
246 lines
11 KiB
TableGen
//===-- MipsCondMov.td - Describe Mips Conditional Moves --*- tablegen -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This is the Conditional Moves implementation.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Conditional moves:
|
|
// These instructions are expanded in
|
|
// MipsISelLowering::EmitInstrWithCustomInserter if target does not have
|
|
// conditional move instructions.
|
|
// cond:int, data:int
|
|
class CMov_I_I_FT<string opstr, RegisterOperand CRC, RegisterOperand DRC,
|
|
InstrItinClass Itin> :
|
|
InstSE<(outs DRC:$rd), (ins DRC:$rs, CRC:$rt, DRC:$F),
|
|
!strconcat(opstr, "\t$rd, $rs, $rt"), [], Itin, FrmFR, opstr> {
|
|
let Constraints = "$F = $rd";
|
|
}
|
|
|
|
// cond:int, data:float
|
|
class CMov_I_F_FT<string opstr, RegisterOperand CRC, RegisterOperand DRC,
|
|
InstrItinClass Itin> :
|
|
InstSE<(outs DRC:$fd), (ins DRC:$fs, CRC:$rt, DRC:$F),
|
|
!strconcat(opstr, "\t$fd, $fs, $rt"), [], Itin, FrmFR, opstr> {
|
|
let Constraints = "$F = $fd";
|
|
}
|
|
|
|
// cond:float, data:int
|
|
class CMov_F_I_FT<string opstr, RegisterOperand RC, InstrItinClass Itin,
|
|
SDPatternOperator OpNode = null_frag> :
|
|
InstSE<(outs RC:$rd), (ins RC:$rs, FCCRegsOpnd:$fcc, RC:$F),
|
|
!strconcat(opstr, "\t$rd, $rs, $fcc"),
|
|
[(set RC:$rd, (OpNode RC:$rs, FCCRegsOpnd:$fcc, RC:$F))],
|
|
Itin, FrmFR, opstr> {
|
|
let Constraints = "$F = $rd";
|
|
}
|
|
|
|
// cond:float, data:float
|
|
class CMov_F_F_FT<string opstr, RegisterOperand RC, InstrItinClass Itin,
|
|
SDPatternOperator OpNode = null_frag> :
|
|
InstSE<(outs RC:$fd), (ins RC:$fs, FCCRegsOpnd:$fcc, RC:$F),
|
|
!strconcat(opstr, "\t$fd, $fs, $fcc"),
|
|
[(set RC:$fd, (OpNode RC:$fs, FCCRegsOpnd:$fcc, RC:$F))],
|
|
Itin, FrmFR, opstr> {
|
|
let Constraints = "$F = $fd";
|
|
}
|
|
|
|
// select patterns
|
|
multiclass MovzPats0<RegisterClass CRC, RegisterClass DRC,
|
|
Instruction MOVZInst, Instruction SLTOp,
|
|
Instruction SLTuOp, Instruction SLTiOp,
|
|
Instruction SLTiuOp> {
|
|
def : MipsPat<(select (i32 (setge CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTOp CRC:$lhs, CRC:$rhs), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setuge CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTuOp CRC:$lhs, CRC:$rhs), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setge CRC:$lhs, immSExt16:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTiOp CRC:$lhs, immSExt16:$rhs), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setuge CRC:$lh, immSExt16:$rh)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTiuOp CRC:$lh, immSExt16:$rh), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setle CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTOp CRC:$rhs, CRC:$lhs), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setule CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTuOp CRC:$rhs, CRC:$lhs), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setgt CRC:$lhs, immSExt16Plus1:$rhs)),
|
|
DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTiOp CRC:$lhs, (Plus1 imm:$rhs)), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setugt CRC:$lhs, immSExt16Plus1:$rhs)),
|
|
DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (SLTiuOp CRC:$lhs, (Plus1 imm:$rhs)),
|
|
DRC:$F)>;
|
|
}
|
|
|
|
multiclass MovzPats1<RegisterClass CRC, RegisterClass DRC,
|
|
Instruction MOVZInst, Instruction XOROp> {
|
|
def : MipsPat<(select (i32 (seteq CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (XOROp CRC:$lhs, CRC:$rhs), DRC:$F)>;
|
|
def : MipsPat<(select (i32 (seteq CRC:$lhs, 0)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, CRC:$lhs, DRC:$F)>;
|
|
}
|
|
|
|
multiclass MovzPats2<RegisterClass CRC, RegisterClass DRC,
|
|
Instruction MOVZInst, Instruction XORiOp> {
|
|
def : MipsPat<
|
|
(select (i32 (seteq CRC:$lhs, immZExt16:$uimm16)), DRC:$T, DRC:$F),
|
|
(MOVZInst DRC:$T, (XORiOp CRC:$lhs, immZExt16:$uimm16), DRC:$F)>;
|
|
}
|
|
|
|
multiclass MovnPats<RegisterClass CRC, RegisterClass DRC, Instruction MOVNInst,
|
|
Instruction XOROp> {
|
|
def : MipsPat<(select (i32 (setne CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
|
|
(MOVNInst DRC:$T, (XOROp CRC:$lhs, CRC:$rhs), DRC:$F)>;
|
|
def : MipsPat<(select CRC:$cond, DRC:$T, DRC:$F),
|
|
(MOVNInst DRC:$T, CRC:$cond, DRC:$F)>;
|
|
def : MipsPat<(select (i32 (setne CRC:$lhs, 0)),DRC:$T, DRC:$F),
|
|
(MOVNInst DRC:$T, CRC:$lhs, DRC:$F)>;
|
|
}
|
|
|
|
// Instantiation of instructions.
|
|
def MOVZ_I_I : MMRel, CMov_I_I_FT<"movz", GPR32Opnd, GPR32Opnd, II_MOVZ>,
|
|
ADD_FM<0, 0xa>;
|
|
|
|
let Predicates = [HasStdEnc], isCodeGenOnly = 1 in {
|
|
def MOVZ_I_I64 : CMov_I_I_FT<"movz", GPR32Opnd, GPR64Opnd, II_MOVZ>,
|
|
ADD_FM<0, 0xa>;
|
|
def MOVZ_I64_I : CMov_I_I_FT<"movz", GPR64Opnd, GPR32Opnd, II_MOVZ>,
|
|
ADD_FM<0, 0xa>;
|
|
def MOVZ_I64_I64 : CMov_I_I_FT<"movz", GPR64Opnd, GPR64Opnd, II_MOVZ>,
|
|
ADD_FM<0, 0xa>;
|
|
}
|
|
|
|
def MOVN_I_I : MMRel, CMov_I_I_FT<"movn", GPR32Opnd, GPR32Opnd, II_MOVN>,
|
|
ADD_FM<0, 0xb>;
|
|
|
|
let Predicates = [HasStdEnc], isCodeGenOnly = 1 in {
|
|
def MOVN_I_I64 : CMov_I_I_FT<"movn", GPR32Opnd, GPR64Opnd, II_MOVN>,
|
|
ADD_FM<0, 0xb>;
|
|
def MOVN_I64_I : CMov_I_I_FT<"movn", GPR64Opnd, GPR32Opnd, II_MOVN>,
|
|
ADD_FM<0, 0xb>;
|
|
def MOVN_I64_I64 : CMov_I_I_FT<"movn", GPR64Opnd, GPR64Opnd, II_MOVN>,
|
|
ADD_FM<0, 0xb>;
|
|
}
|
|
|
|
def MOVZ_I_S : MMRel, CMov_I_F_FT<"movz.s", GPR32Opnd, FGR32Opnd, II_MOVZ_S>,
|
|
CMov_I_F_FM<18, 16>;
|
|
|
|
let isCodeGenOnly = 1 in
|
|
def MOVZ_I64_S : CMov_I_F_FT<"movz.s", GPR64Opnd, FGR32Opnd, II_MOVZ_S>,
|
|
CMov_I_F_FM<18, 16>, Requires<[HasMips64, HasStdEnc]>;
|
|
|
|
def MOVN_I_S : MMRel, CMov_I_F_FT<"movn.s", GPR32Opnd, FGR32Opnd, II_MOVN_S>,
|
|
CMov_I_F_FM<19, 16>;
|
|
|
|
let isCodeGenOnly = 1 in
|
|
def MOVN_I64_S : CMov_I_F_FT<"movn.s", GPR64Opnd, FGR32Opnd, II_MOVN_S>,
|
|
CMov_I_F_FM<19, 16>, Requires<[IsGP64bit, HasStdEnc]>;
|
|
|
|
let Predicates = [NotFP64bit, HasStdEnc] in {
|
|
def MOVZ_I_D32 : MMRel, CMov_I_F_FT<"movz.d", GPR32Opnd, AFGR64Opnd,
|
|
II_MOVZ_D>, CMov_I_F_FM<18, 17>;
|
|
def MOVN_I_D32 : MMRel, CMov_I_F_FT<"movn.d", GPR32Opnd, AFGR64Opnd,
|
|
II_MOVN_D>, CMov_I_F_FM<19, 17>;
|
|
}
|
|
|
|
let Predicates = [IsFP64bit, HasStdEnc], DecoderNamespace = "Mips64" in {
|
|
def MOVZ_I_D64 : CMov_I_F_FT<"movz.d", GPR32Opnd, FGR64Opnd, II_MOVZ_D>,
|
|
CMov_I_F_FM<18, 17>;
|
|
def MOVN_I_D64 : CMov_I_F_FT<"movn.d", GPR32Opnd, FGR64Opnd, II_MOVN_D>,
|
|
CMov_I_F_FM<19, 17>;
|
|
let isCodeGenOnly = 1 in {
|
|
def MOVZ_I64_D64 : CMov_I_F_FT<"movz.d", GPR64Opnd, FGR64Opnd,
|
|
II_MOVZ_D>, CMov_I_F_FM<18, 17>;
|
|
def MOVN_I64_D64 : CMov_I_F_FT<"movn.d", GPR64Opnd, FGR64Opnd,
|
|
II_MOVN_D>, CMov_I_F_FM<19, 17>;
|
|
}
|
|
}
|
|
|
|
def MOVT_I : MMRel, CMov_F_I_FT<"movt", GPR32Opnd, II_MOVT, MipsCMovFP_T>,
|
|
CMov_F_I_FM<1>;
|
|
|
|
let isCodeGenOnly = 1 in
|
|
def MOVT_I64 : CMov_F_I_FT<"movt", GPR64Opnd, II_MOVT, MipsCMovFP_T>,
|
|
CMov_F_I_FM<1>, Requires<[IsGP64bit, HasStdEnc]>;
|
|
|
|
def MOVF_I : MMRel, CMov_F_I_FT<"movf", GPR32Opnd, II_MOVF, MipsCMovFP_F>,
|
|
CMov_F_I_FM<0>;
|
|
|
|
let isCodeGenOnly = 1 in
|
|
def MOVF_I64 : CMov_F_I_FT<"movf", GPR64Opnd, II_MOVF, MipsCMovFP_F>,
|
|
CMov_F_I_FM<0>, Requires<[IsGP64bit, HasStdEnc]>;
|
|
|
|
def MOVT_S : MMRel, CMov_F_F_FT<"movt.s", FGR32Opnd, II_MOVT_S, MipsCMovFP_T>,
|
|
CMov_F_F_FM<16, 1>;
|
|
def MOVF_S : MMRel, CMov_F_F_FT<"movf.s", FGR32Opnd, II_MOVF_S, MipsCMovFP_F>,
|
|
CMov_F_F_FM<16, 0>;
|
|
|
|
let Predicates = [NotFP64bit, HasStdEnc] in {
|
|
def MOVT_D32 : MMRel, CMov_F_F_FT<"movt.d", AFGR64Opnd, II_MOVT_D,
|
|
MipsCMovFP_T>, CMov_F_F_FM<17, 1>;
|
|
def MOVF_D32 : MMRel, CMov_F_F_FT<"movf.d", AFGR64Opnd, II_MOVF_D,
|
|
MipsCMovFP_F>, CMov_F_F_FM<17, 0>;
|
|
}
|
|
|
|
let Predicates = [IsFP64bit, HasStdEnc], DecoderNamespace = "Mips64" in {
|
|
def MOVT_D64 : CMov_F_F_FT<"movt.d", FGR64Opnd, II_MOVT_D, MipsCMovFP_T>,
|
|
CMov_F_F_FM<17, 1>;
|
|
def MOVF_D64 : CMov_F_F_FT<"movf.d", FGR64Opnd, II_MOVF_D, MipsCMovFP_F>,
|
|
CMov_F_F_FM<17, 0>;
|
|
}
|
|
|
|
// Instantiation of conditional move patterns.
|
|
defm : MovzPats0<GPR32, GPR32, MOVZ_I_I, SLT, SLTu, SLTi, SLTiu>;
|
|
defm : MovzPats1<GPR32, GPR32, MOVZ_I_I, XOR>;
|
|
defm : MovzPats2<GPR32, GPR32, MOVZ_I_I, XORi>;
|
|
let Predicates = [IsGP64bit, HasStdEnc] in {
|
|
defm : MovzPats0<GPR32, GPR64, MOVZ_I_I64, SLT, SLTu, SLTi, SLTiu>;
|
|
defm : MovzPats0<GPR64, GPR32, MOVZ_I_I, SLT64, SLTu64, SLTi64,
|
|
SLTiu64>;
|
|
defm : MovzPats0<GPR64, GPR64, MOVZ_I_I64, SLT64, SLTu64, SLTi64,
|
|
SLTiu64>;
|
|
defm : MovzPats1<GPR32, GPR64, MOVZ_I_I64, XOR>;
|
|
defm : MovzPats1<GPR64, GPR32, MOVZ_I64_I, XOR64>;
|
|
defm : MovzPats1<GPR64, GPR64, MOVZ_I64_I64, XOR64>;
|
|
defm : MovzPats2<GPR32, GPR64, MOVZ_I_I64, XORi>;
|
|
defm : MovzPats2<GPR64, GPR32, MOVZ_I64_I, XORi64>;
|
|
defm : MovzPats2<GPR64, GPR64, MOVZ_I64_I64, XORi64>;
|
|
}
|
|
|
|
defm : MovnPats<GPR32, GPR32, MOVN_I_I, XOR>;
|
|
let Predicates = [IsGP64bit, HasStdEnc] in {
|
|
defm : MovnPats<GPR32, GPR64, MOVN_I_I64, XOR>;
|
|
defm : MovnPats<GPR64, GPR32, MOVN_I64_I, XOR64>;
|
|
defm : MovnPats<GPR64, GPR64, MOVN_I64_I64, XOR64>;
|
|
}
|
|
|
|
defm : MovzPats0<GPR32, FGR32, MOVZ_I_S, SLT, SLTu, SLTi, SLTiu>;
|
|
defm : MovzPats1<GPR32, FGR32, MOVZ_I_S, XOR>;
|
|
defm : MovnPats<GPR32, FGR32, MOVN_I_S, XOR>;
|
|
let Predicates = [IsGP64bit, HasStdEnc] in {
|
|
defm : MovzPats0<GPR64, FGR32, MOVZ_I_S, SLT64, SLTu64, SLTi64,
|
|
SLTiu64>;
|
|
defm : MovzPats1<GPR64, FGR32, MOVZ_I64_S, XOR64>;
|
|
defm : MovnPats<GPR64, FGR32, MOVN_I64_S, XOR64>;
|
|
}
|
|
|
|
let Predicates = [NotFP64bit, HasStdEnc] in {
|
|
defm : MovzPats0<GPR32, AFGR64, MOVZ_I_D32, SLT, SLTu, SLTi, SLTiu>;
|
|
defm : MovzPats1<GPR32, AFGR64, MOVZ_I_D32, XOR>;
|
|
defm : MovnPats<GPR32, AFGR64, MOVN_I_D32, XOR>;
|
|
}
|
|
let Predicates = [IsFP64bit, HasStdEnc] in {
|
|
defm : MovzPats0<GPR32, FGR64, MOVZ_I_D64, SLT, SLTu, SLTi, SLTiu>;
|
|
defm : MovzPats0<GPR64, FGR64, MOVZ_I_D64, SLT64, SLTu64, SLTi64,
|
|
SLTiu64>;
|
|
defm : MovzPats1<GPR32, FGR64, MOVZ_I_D64, XOR>;
|
|
defm : MovzPats1<GPR64, FGR64, MOVZ_I64_D64, XOR64>;
|
|
defm : MovnPats<GPR32, FGR64, MOVN_I_D64, XOR>;
|
|
defm : MovnPats<GPR64, FGR64, MOVN_I64_D64, XOR64>;
|
|
}
|