2016-10-20 10:27:16 +02:00
|
|
|
//=- SystemZScheduleZEC12.td - SystemZ Scheduling Definitions --*- tblgen -*-=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the machine model for ZEC12 to support instruction
|
|
|
|
// scheduling and other instruction cost heuristics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def ZEC12Model : SchedMachineModel {
|
2016-10-31 15:33:29 +01:00
|
|
|
|
|
|
|
let UnsupportedFeatures = Arch10UnsupportedFeatures.List;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
2016-11-07 15:47:25 +01:00
|
|
|
let IssueWidth = 5;
|
2016-10-20 10:27:16 +02:00
|
|
|
let MicroOpBufferSize = 40; // Issue queues
|
|
|
|
let LoadLatency = 1; // Optimistic load latency.
|
|
|
|
|
|
|
|
let PostRAScheduler = 1;
|
|
|
|
|
|
|
|
// Extra cycles for a mispredicted branch.
|
2016-11-28 14:34:08 +01:00
|
|
|
let MispredictPenalty = 16;
|
2016-10-20 10:27:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let SchedModel = ZEC12Model in {
|
|
|
|
|
|
|
|
// These definitions could be put in a subtarget common include file,
|
|
|
|
// but it seems the include system in Tablegen currently rejects
|
|
|
|
// multiple includes of same file.
|
|
|
|
def : WriteRes<GroupAlone, []> {
|
|
|
|
let NumMicroOps = 0;
|
|
|
|
let BeginGroup = 1;
|
|
|
|
let EndGroup = 1;
|
|
|
|
}
|
|
|
|
def : WriteRes<EndGroup, []> {
|
|
|
|
let NumMicroOps = 0;
|
|
|
|
let EndGroup = 1;
|
|
|
|
}
|
|
|
|
def : WriteRes<Lat2, []> { let Latency = 2; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat3, []> { let Latency = 3; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat4, []> { let Latency = 4; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat5, []> { let Latency = 5; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat6, []> { let Latency = 6; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat7, []> { let Latency = 7; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat8, []> { let Latency = 8; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat9, []> { let Latency = 9; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat10, []> { let Latency = 10; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat11, []> { let Latency = 11; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat12, []> { let Latency = 12; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat15, []> { let Latency = 15; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat20, []> { let Latency = 20; let NumMicroOps = 0;}
|
|
|
|
def : WriteRes<Lat30, []> { let Latency = 30; let NumMicroOps = 0;}
|
|
|
|
|
|
|
|
// Execution units.
|
2016-11-07 15:47:25 +01:00
|
|
|
def ZEC12_FXUnit : ProcResource<2>;
|
|
|
|
def ZEC12_LSUnit : ProcResource<2>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def ZEC12_FPUnit : ProcResource<1>;
|
2016-11-07 15:47:25 +01:00
|
|
|
def ZEC12_VBUnit : ProcResource<1>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Subtarget specific definitions of scheduling resources.
|
|
|
|
def : WriteRes<FXU, [ZEC12_FXUnit]> { let Latency = 1; }
|
|
|
|
def : WriteRes<LSU, [ZEC12_LSUnit]> { let Latency = 4; }
|
|
|
|
def : WriteRes<LSU_lat1, [ZEC12_LSUnit]> { let Latency = 1; }
|
|
|
|
def : WriteRes<FPU, [ZEC12_FPUnit]> { let Latency = 8; }
|
2016-11-07 16:45:06 +01:00
|
|
|
def : WriteRes<FPU2, [ZEC12_FPUnit, ZEC12_FPUnit]> { let Latency = 9; }
|
2016-10-20 10:27:16 +02:00
|
|
|
def : WriteRes<VBU, [ZEC12_VBUnit]>; // Virtual Branching Unit
|
|
|
|
|
|
|
|
// -------------------------- INSTRUCTIONS ---------------------------------- //
|
|
|
|
|
|
|
|
// InstRW constructs have been used in order to preserve the
|
|
|
|
// readability of the InstrInfo files.
|
|
|
|
|
|
|
|
// For each instruction, as matched by a regexp, provide a list of
|
|
|
|
// resources that it needs. These will be combined into a SchedClass.
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Stack allocation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "ADJDYNALLOC$")>; // Pseudo -> LA / LAY
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-11-08 19:30:50 +01:00
|
|
|
// Branch instructions
|
2016-10-20 10:27:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Branch
|
2016-11-08 19:30:50 +01:00
|
|
|
def : InstRW<[VBU], (instregex "(Call)?BRC(L)?(Asm.*)?$")>;
|
|
|
|
def : InstRW<[VBU], (instregex "(Call)?J(G)?(Asm.*)?$")>;
|
|
|
|
def : InstRW<[LSU, Lat4], (instregex "(Call)?BC(R)?(Asm.*)?$")>;
|
|
|
|
def : InstRW<[LSU, Lat4], (instregex "(Call)?B(R)?(Asm.*)?$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[FXU, EndGroup], (instregex "BRCT(G)?$")>;
|
2016-11-28 14:40:08 +01:00
|
|
|
def : InstRW<[FXU, LSU, Lat5, GroupAlone], (instregex "BRCTH$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5, GroupAlone], (instregex "BCT(G)?(R)?$")>;
|
|
|
|
def : InstRW<[FXU, FXU, FXU, LSU, Lat7, GroupAlone],
|
|
|
|
(instregex "B(R)?X(H|L).*$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
2016-11-08 19:30:50 +01:00
|
|
|
// Compare and branch
|
|
|
|
def : InstRW<[FXU], (instregex "C(L)?(G)?(I|R)J(Asm.*)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5, GroupAlone],
|
|
|
|
(instregex "C(L)?(G)?(I|R)B(Call|Return|Asm.*)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Trap instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
// Trap
|
|
|
|
def : InstRW<[VBU], (instregex "(Cond)?Trap$")>;
|
|
|
|
|
|
|
|
// Compare and trap
|
2016-11-08 19:30:50 +01:00
|
|
|
def : InstRW<[FXU], (instregex "C(G)?(I|R)T(Asm.*)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CL(G)?RT(Asm.*)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CL(F|G)IT(Asm.*)?$")>;
|
2016-11-11 13:48:26 +01:00
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CL(G)?T(Asm.*)?$")>;
|
2016-11-08 19:30:50 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Call and return instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Call
|
|
|
|
def : InstRW<[VBU, FXU, FXU, Lat3, GroupAlone], (instregex "(Call)?BRAS$")>;
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat6, GroupAlone], (instregex "(Call)?BRASL$")>;
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat6, GroupAlone], (instregex "(Call)?BAS(R)?$")>;
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat6, GroupAlone], (instregex "TLS_(G|L)DCALL$")>;
|
|
|
|
|
|
|
|
// Return
|
|
|
|
def : InstRW<[LSU_lat1, EndGroup], (instregex "Return$")>;
|
|
|
|
def : InstRW<[LSU_lat1], (instregex "CondReturn$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Select instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Select pseudo
|
|
|
|
def : InstRW<[FXU], (instregex "Select(32|64|32Mux)$")>;
|
|
|
|
|
|
|
|
// CondStore pseudos
|
|
|
|
def : InstRW<[FXU], (instregex "CondStore16(Inv)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStore16Mux(Inv)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStore32(Inv)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStore64(Inv)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStore8(Inv)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStore8Mux(Inv)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Move instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Moves
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "MV(G|H)?HI$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "MVI(Y)?$")>;
|
|
|
|
|
|
|
|
// Move character
|
|
|
|
def : InstRW<[LSU, LSU, LSU, FXU, Lat8, GroupAlone], (instregex "MVC$")>;
|
2017-05-10 14:40:15 +02:00
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "MVCL(E|U)?$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Pseudo -> reg move
|
|
|
|
def : InstRW<[FXU], (instregex "COPY(_TO_REGCLASS)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "EXTRACT_SUBREG$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "INSERT_SUBREG$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "REG_SEQUENCE$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SUBREG_TO_REG$")>;
|
|
|
|
|
|
|
|
// Loads
|
|
|
|
def : InstRW<[LSU], (instregex "L(Y|FH|RL|Mux)?$")>;
|
|
|
|
def : InstRW<[LSU], (instregex "LG(RL)?$")>;
|
|
|
|
def : InstRW<[LSU], (instregex "L128$")>;
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "LLIH(F|H|L)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LLIL(F|H|L)$")>;
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "LG(F|H)I$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LHI(Mux)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LR(Mux)?$")>;
|
|
|
|
|
2016-11-28 14:59:22 +01:00
|
|
|
// Load and trap
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "L(FH|G)?AT$")>;
|
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
// Load and test
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LT(G)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LT(G)?R$")>;
|
|
|
|
|
|
|
|
// Stores
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STG(RL)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "ST128$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "ST(Y|FH|RL|Mux)?$")>;
|
|
|
|
|
|
|
|
// String moves.
|
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "MVST$")>;
|
|
|
|
|
2016-11-08 19:30:50 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Conditional move instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, Lat2], (instregex "LOC(G)?R(Asm.*)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "LOC(G)?(Asm.*)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STOC(G)?(Asm.*)?$")>;
|
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Sign extensions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "L(B|H|G)R$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LG(B|H|F)R$")>;
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LTGF$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LTGFR$")>;
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LB(H|Mux)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LH(Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LH(H|Mux|RL)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LG(B|H|F)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LG(H|F)RL$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Zero extensions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "LLCR(Mux)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LLHR(Mux)?$")>;
|
2016-11-11 13:43:51 +01:00
|
|
|
def : InstRW<[FXU], (instregex "LLG(C|H|F|T)R$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[LSU], (instregex "LLC(Mux)?$")>;
|
|
|
|
def : InstRW<[LSU], (instregex "LLH(Mux)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LL(C|H)H$")>;
|
|
|
|
def : InstRW<[LSU], (instregex "LLHRL$")>;
|
2016-11-11 13:43:51 +01:00
|
|
|
def : InstRW<[LSU], (instregex "LLG(C|H|F|T|HRL|FRL)$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
2016-11-28 14:59:22 +01:00
|
|
|
// Load and trap
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LLG(F|T)?AT$")>;
|
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Truncations
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STC(H|Y|Mux)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STH(H|Y|RL|Mux)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Multi-register moves
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Load multiple (estimated average of 5 ops)
|
|
|
|
def : InstRW<[LSU, LSU, LSU, LSU, LSU, Lat10, GroupAlone],
|
|
|
|
(instregex "LM(H|Y|G)?$")>;
|
|
|
|
|
|
|
|
// Store multiple (estimated average of 3 ops)
|
|
|
|
def : InstRW<[LSU, LSU, FXU, FXU, FXU, Lat10, GroupAlone],
|
|
|
|
(instregex "STM(H|Y|G)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Byte swaps
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "LRV(G)?R$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LRV(G|H)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STRV(G|H)?$")>;
|
2017-05-10 14:40:15 +02:00
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "MVCIN$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Load address instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "LA(Y|RL)?$")>;
|
|
|
|
|
|
|
|
// Load the Global Offset Table address
|
|
|
|
def : InstRW<[FXU], (instregex "GOT$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Absolute and Negation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, Lat2], (instregex "LP(G)?R$")>;
|
|
|
|
def : InstRW<[FXU, FXU, Lat3, GroupAlone], (instregex "L(N|P)GFR$")>;
|
|
|
|
def : InstRW<[FXU, Lat2], (instregex "LN(R|GR)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LC(R|GR)$")>;
|
|
|
|
def : InstRW<[FXU, FXU, Lat2, GroupAlone], (instregex "LCGFR$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Insertion
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "IC(Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "IC32(Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "ICM(H|Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "II(F|H|L)Mux$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "IIHF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "IIHH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "IIHL(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "IILF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "IILH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "IILL(64)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Addition
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "A(Y|SI)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "AH(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AIH$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AFI(Mux)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AGFI$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AGHI(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AHI(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AHIMux(K)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "AL(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AL(FI|HSIK)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "ALG(F)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "ALGHSIK$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "ALGF(I|R)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "ALGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "ALR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "AR(K)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "AG(SI)?$")>;
|
|
|
|
|
|
|
|
// Logical addition with carry
|
|
|
|
def : InstRW<[FXU, LSU, Lat7, GroupAlone], (instregex "ALC(G)?$")>;
|
|
|
|
def : InstRW<[FXU, Lat3, GroupAlone], (instregex "ALC(G)?R$")>;
|
|
|
|
|
|
|
|
// Add with sign extension (32 -> 64)
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "AGF$")>;
|
|
|
|
def : InstRW<[FXU, Lat2], (instregex "AGFR$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Subtraction
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "S(G|Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "SH(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SLFI$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "SL(G|GF|Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SLGF(I|R)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SLGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SLR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SR(K)?$")>;
|
|
|
|
|
|
|
|
// Subtraction with borrow
|
|
|
|
def : InstRW<[FXU, LSU, Lat7, GroupAlone], (instregex "SLB(G)?$")>;
|
|
|
|
def : InstRW<[FXU, Lat3, GroupAlone], (instregex "SLB(G)?R$")>;
|
|
|
|
|
|
|
|
// Subtraction with sign extension (32 -> 64)
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "SGF$")>;
|
|
|
|
def : InstRW<[FXU, Lat2], (instregex "SGFR$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AND
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "N(G|Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NI(FMux|HMux|LMux)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "NI(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NIHF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NIHH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NIHL(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NILF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NILH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NILL(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NR(K)?$")>;
|
|
|
|
def : InstRW<[LSU, LSU, FXU, Lat9, GroupAlone], (instregex "NC$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// OR
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "O(G|Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "OI(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OI(FMux|HMux|LMux)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OIHF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OIHH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OIHL(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OILF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OILH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OILL(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "OR(K)?$")>;
|
|
|
|
def : InstRW<[LSU, LSU, FXU, Lat9, GroupAlone], (instregex "OC$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// XOR
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "X(G|Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "XI(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "XIFMux$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "XGR(K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "XIHF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "XILF(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "XR(K)?$")>;
|
|
|
|
def : InstRW<[LSU, LSU, FXU, Lat9, GroupAlone], (instregex "XC$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Multiplication
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat10], (instregex "MS(GF|Y)?$")>;
|
|
|
|
def : InstRW<[FXU, Lat6], (instregex "MS(R|FI)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat12], (instregex "MSG$")>;
|
|
|
|
def : InstRW<[FXU, Lat8], (instregex "MSGR$")>;
|
|
|
|
def : InstRW<[FXU, Lat6], (instregex "MSGF(I|R)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat15, GroupAlone], (instregex "MLG$")>;
|
|
|
|
def : InstRW<[FXU, Lat9, GroupAlone], (instregex "MLGR$")>;
|
|
|
|
def : InstRW<[FXU, Lat5], (instregex "MGHI$")>;
|
|
|
|
def : InstRW<[FXU, Lat5], (instregex "MHI$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat9], (instregex "MH(Y)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Division and remainder
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, FXU, FXU, FXU, FXU, Lat30, GroupAlone],
|
2016-10-20 10:27:16 +02:00
|
|
|
(instregex "DSG(F)?R$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, LSU, FXU, FXU, FXU, Lat30, GroupAlone],
|
2016-10-20 10:27:16 +02:00
|
|
|
(instregex "DSG(F)?$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, FXU, FXU, FXU, FXU, FXU, Lat30, GroupAlone],
|
2016-10-20 10:27:16 +02:00
|
|
|
(instregex "DL(G)?R$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, LSU, FXU, FXU, FXU, FXU, Lat30, GroupAlone],
|
2016-10-20 10:27:16 +02:00
|
|
|
(instregex "DL(G)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Shifts
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "SLL(G|K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SRL(G|K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SRA(G|K)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "SLA(K)?$")>;
|
|
|
|
|
|
|
|
// Rotate
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "RLL(G)?$")>;
|
|
|
|
|
|
|
|
// Rotate and insert
|
|
|
|
def : InstRW<[FXU], (instregex "RISBG(N|32)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "RISBH(G|H|L)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "RISBL(G|H|L)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "RISBMux$")>;
|
|
|
|
|
|
|
|
// Rotate and Select
|
|
|
|
def : InstRW<[FXU, FXU, Lat3, GroupAlone], (instregex "R(N|O|X)SBG$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Comparison
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "C(G|Y|Mux|RL)?$")>;
|
2016-11-28 14:40:08 +01:00
|
|
|
def : InstRW<[FXU], (instregex "C(F|H)I(Mux)?$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[FXU], (instregex "CG(F|H)I$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CG(HSI|RL)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "C(G)?R$")>;
|
2016-11-28 14:40:08 +01:00
|
|
|
def : InstRW<[FXU], (instregex "CIH$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CH(F|SI)$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CL(Y|Mux|FHSI)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CLFI(Mux)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CLG(HRL|HSI)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CLGF(RL)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CLGF(I|R)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CLGR$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CLGRL$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CLH(F|RL|HSI)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CLIH$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CLI(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CLR$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "CLRL$")>;
|
|
|
|
|
|
|
|
// Compare halfword
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "CH(Y|RL)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "CGH(RL)?$")>;
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat6, GroupAlone], (instregex "CHHSI$")>;
|
|
|
|
|
|
|
|
// Compare with sign extension (32 -> 64)
|
|
|
|
def : InstRW<[FXU, LSU, Lat6], (instregex "CGF(RL)?$")>;
|
|
|
|
def : InstRW<[FXU, Lat2], (instregex "CGFR$")>;
|
|
|
|
|
|
|
|
// Compare logical character
|
|
|
|
def : InstRW<[FXU, LSU, LSU, Lat9, GroupAlone], (instregex "CLC$")>;
|
2017-05-10 14:40:15 +02:00
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "CLCL(E|U)?$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "CLST$")>;
|
|
|
|
|
|
|
|
// Test under mask
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "TM(Y)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "TM(H|L)Mux$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "TMHH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "TMHL(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "TMLH(64)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "TMLL(64)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-11-28 15:01:51 +01:00
|
|
|
// Prefetch and execution hint
|
2016-10-20 10:27:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[LSU], (instregex "PFD(RL)?$")>;
|
2016-11-28 15:01:51 +01:00
|
|
|
def : InstRW<[LSU], (instregex "BP(R)?P$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "NIAI$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Atomic operations
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[LSU, EndGroup], (instregex "Serialize$")>;
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LAA(G)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LAAL(G)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LAN(G)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LAO(G)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "LAX(G)?$")>;
|
|
|
|
|
2016-12-02 19:24:16 +01:00
|
|
|
// Test and set
|
|
|
|
def : InstRW<[FXU, LSU, Lat5, EndGroup], (instregex "TS$")>;
|
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
// Compare and swap
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat6, GroupAlone], (instregex "CS(G|Y)?$")>;
|
|
|
|
|
2016-12-02 19:24:16 +01:00
|
|
|
// Compare double and swap
|
|
|
|
def : InstRW<[FXU, FXU, FXU, FXU, FXU, LSU, Lat10, GroupAlone],
|
|
|
|
(instregex "CDS(Y)?$")>;
|
|
|
|
def : InstRW<[FXU, FXU, FXU, FXU, FXU, FXU, LSU, LSU, Lat12, GroupAlone],
|
|
|
|
(instregex "CDSG$")>;
|
|
|
|
|
|
|
|
// Compare and swap and store
|
|
|
|
def : InstRW<[FXU, Lat30, GroupAlone], (instregex "CSST$")>;
|
|
|
|
|
|
|
|
// Perform locked operation
|
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "PLO$")>;
|
|
|
|
|
|
|
|
// Load/store pair from/to quadword
|
|
|
|
def : InstRW<[LSU, LSU, Lat5, GroupAlone], (instregex "LPQ$")>;
|
|
|
|
def : InstRW<[FXU, FXU, LSU, LSU, Lat6, GroupAlone], (instregex "STPQ$")>;
|
|
|
|
|
|
|
|
// Load pair disjoint
|
|
|
|
def : InstRW<[LSU, LSU, Lat5, GroupAlone], (instregex "LPD(G)?$")>;
|
|
|
|
|
2016-11-08 21:15:26 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Access registers
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Extract/set/copy access register
|
|
|
|
def : InstRW<[LSU], (instregex "(EAR|SAR|CPYA)$")>;
|
|
|
|
|
|
|
|
// Load address extended
|
2016-11-09 13:47:57 +01:00
|
|
|
def : InstRW<[LSU, FXU, Lat5, GroupAlone], (instregex "LAE(Y)?$")>;
|
2016-11-08 21:15:26 +01:00
|
|
|
|
|
|
|
// Load/store access multiple (not modeled precisely)
|
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "(L|ST)AM(Y)?$")>;
|
|
|
|
|
2016-11-08 21:17:02 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Program mask and addressing mode
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Insert Program Mask
|
|
|
|
def : InstRW<[FXU, Lat3, EndGroup], (instregex "IPM$")>;
|
|
|
|
|
|
|
|
// Set Program Mask
|
|
|
|
def : InstRW<[LSU, EndGroup], (instregex "SPM$")>;
|
|
|
|
|
|
|
|
// Branch and link
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat8, GroupAlone], (instregex "BAL(R)?$")>;
|
|
|
|
|
|
|
|
// Test addressing mode
|
2016-11-09 13:47:57 +01:00
|
|
|
def : InstRW<[FXU], (instregex "TAM$")>;
|
2016-11-08 21:17:02 +01:00
|
|
|
|
|
|
|
// Set addressing mode
|
|
|
|
def : InstRW<[LSU, EndGroup], (instregex "SAM(24|31|64)$")>;
|
|
|
|
|
|
|
|
// Branch (and save) and set mode.
|
2016-11-09 13:47:57 +01:00
|
|
|
def : InstRW<[FXU, LSU, Lat5, GroupAlone], (instregex "BSM$")>;
|
|
|
|
def : InstRW<[FXU, FXU, LSU, Lat6, GroupAlone], (instregex "BASSM$")>;
|
2016-11-08 21:17:02 +01:00
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Transactional execution
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Transaction begin
|
|
|
|
def : InstRW<[LSU, LSU, FXU, FXU, FXU, FXU, FXU, Lat15, GroupAlone],
|
|
|
|
(instregex "TBEGIN(C|_nofloat)?$")>;
|
|
|
|
|
|
|
|
// Transaction end
|
|
|
|
def : InstRW<[LSU, GroupAlone], (instregex "TEND$")>;
|
|
|
|
|
|
|
|
// Transaction abort
|
|
|
|
def : InstRW<[LSU, GroupAlone], (instregex "TABORT$")>;
|
|
|
|
|
|
|
|
// Extract Transaction Nesting Depth
|
|
|
|
def : InstRW<[FXU], (instregex "ETND$")>;
|
|
|
|
|
|
|
|
// Nontransactional store
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "NTSTG$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Processor assist
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "PPA$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Miscellaneous Instructions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Find leftmost one
|
|
|
|
def : InstRW<[FXU, Lat7, GroupAlone], (instregex "FLOGR$")>;
|
|
|
|
|
|
|
|
// Population count
|
|
|
|
def : InstRW<[FXU, Lat3], (instregex "POPCNT$")>;
|
|
|
|
|
|
|
|
// Extend
|
|
|
|
def : InstRW<[FXU], (instregex "AEXT128_64$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "ZEXT128_(32|64)$")>;
|
|
|
|
|
|
|
|
// String instructions
|
|
|
|
def : InstRW<[FXU, LSU, Lat30], (instregex "SRST$")>;
|
2017-05-10 14:40:15 +02:00
|
|
|
def : InstRW<[LSU, Lat30], (instregex "SRSTU$")>;
|
|
|
|
def : InstRW<[LSU, Lat30, GroupAlone], (instregex "CUSE$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Move with key
|
|
|
|
def : InstRW<[LSU, Lat8, GroupAlone], (instregex "MVCK$")>;
|
|
|
|
|
|
|
|
// Extract CPU Time
|
|
|
|
def : InstRW<[FXU, Lat5, LSU], (instregex "ECTG$")>;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
def : InstRW<[LSU, GroupAlone], (instregex "EX(RL)?$")>;
|
|
|
|
|
|
|
|
// Program return
|
|
|
|
def : InstRW<[FXU, Lat30], (instregex "PR$")>;
|
|
|
|
|
|
|
|
// Inline assembly
|
|
|
|
def : InstRW<[FXU, LSU, LSU, Lat9, GroupAlone], (instregex "STCK(F)?$")>;
|
|
|
|
def : InstRW<[LSU, LSU, LSU, LSU, FXU, FXU, Lat20, GroupAlone],
|
|
|
|
(instregex "STCKE$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STFLE$")>;
|
|
|
|
def : InstRW<[FXU, Lat30], (instregex "SVC$")>;
|
|
|
|
|
|
|
|
// Store real address
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STRAG$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// .insn directive instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// An "empty" sched-class will be assigned instead of the "invalid sched-class".
|
|
|
|
// getNumDecoderSlots() will then return 1 instead of 0.
|
|
|
|
def : InstRW<[], (instregex "Insn.*")>;
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------- Floating point ----------------------------- //
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Select instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU], (instregex "SelectF(32|64|128)$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStoreF32(Inv)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "CondStoreF64(Inv)?$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Move instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Load zero
|
|
|
|
def : InstRW<[FXU], (instregex "LZ(DR|ER)$")>;
|
|
|
|
def : InstRW<[FXU, FXU, Lat2, GroupAlone], (instregex "LZXR$")>;
|
|
|
|
|
|
|
|
// Load
|
|
|
|
def : InstRW<[FXU], (instregex "LER$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LD(R|R32|GR)$")>;
|
|
|
|
def : InstRW<[FXU, Lat3], (instregex "LGDR$")>;
|
|
|
|
def : InstRW<[FXU, FXU, Lat2, GroupAlone], (instregex "LXR$")>;
|
|
|
|
|
|
|
|
// Load and Test
|
|
|
|
def : InstRW<[FPU], (instregex "LT(D|E)BR$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "LTEBRCompare(_VecPseudo)?$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "LTDBRCompare(_VecPseudo)?$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat9, GroupAlone], (instregex "LTXBR$")>;
|
|
|
|
def : InstRW<[FPU2, FPU2, Lat9, GroupAlone],
|
2016-10-20 10:27:16 +02:00
|
|
|
(instregex "LTXBRCompare(_VecPseudo)?$")>;
|
|
|
|
|
|
|
|
// Copy sign
|
|
|
|
def : InstRW<[FXU, FXU, Lat5, GroupAlone], (instregex "CPSDRd(d|s)$")>;
|
|
|
|
def : InstRW<[FXU, FXU, Lat5, GroupAlone], (instregex "CPSDRs(d|s)$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Load instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[LSU], (instregex "LE(Y)?$")>;
|
|
|
|
def : InstRW<[LSU], (instregex "LD(Y|E32)?$")>;
|
|
|
|
def : InstRW<[LSU], (instregex "LX$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Store instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat7], (instregex "STD(Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat7], (instregex "STE(Y)?$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat5], (instregex "STX$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Conversion instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Load rounded
|
|
|
|
def : InstRW<[FPU], (instregex "LEDBR(A)?$")>;
|
|
|
|
def : InstRW<[FPU, FPU, Lat20], (instregex "LEXBR(A)?$")>;
|
|
|
|
def : InstRW<[FPU, FPU, Lat20], (instregex "LDXBR(A)?$")>;
|
|
|
|
|
|
|
|
// Load lengthened
|
|
|
|
def : InstRW<[FPU, LSU, Lat12], (instregex "LDEB$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "LDEBR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, LSU, Lat15, GroupAlone], (instregex "LX(D|E)B$")>;
|
|
|
|
def : InstRW<[FPU2, FPU2, Lat10, GroupAlone], (instregex "LX(D|E)BR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Convert from fixed / logical
|
2016-11-08 21:18:41 +01:00
|
|
|
def : InstRW<[FXU, FPU, Lat9, GroupAlone], (instregex "CE(F|G)BR(A?)$")>;
|
|
|
|
def : InstRW<[FXU, FPU, Lat9, GroupAlone], (instregex "CD(F|G)BR(A?)$")>;
|
|
|
|
def : InstRW<[FXU, FPU2, FPU2, Lat11, GroupAlone], (instregex "CX(F|G)BR(A?)$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[FXU, FPU, Lat9, GroupAlone], (instregex "CEL(F|G)BR$")>;
|
|
|
|
def : InstRW<[FXU, FPU, Lat9, GroupAlone], (instregex "CDL(F|G)BR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FXU, FPU2, FPU2, Lat11, GroupAlone], (instregex "CXL(F|G)BR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Convert to fixed / logical
|
2016-11-08 21:18:41 +01:00
|
|
|
def : InstRW<[FXU, FPU, Lat12, GroupAlone], (instregex "CF(E|D)BR(A?)$")>;
|
|
|
|
def : InstRW<[FXU, FPU, Lat12, GroupAlone], (instregex "CG(E|D)BR(A?)$")>;
|
|
|
|
def : InstRW<[FXU, FPU, FPU, Lat20, GroupAlone], (instregex "C(F|G)XBR(A?)$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
def : InstRW<[FXU, FPU, Lat11, GroupAlone], (instregex "CLF(E|D)BR$")>;
|
|
|
|
def : InstRW<[FXU, FPU, Lat11, GroupAlone], (instregex "CLG(E|D)BR$")>;
|
|
|
|
def : InstRW<[FXU, FPU, FPU, Lat20, GroupAlone], (instregex "CL(F|G)XBR$")>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Unary arithmetic
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Load Complement / Negative / Positive
|
|
|
|
def : InstRW<[FPU], (instregex "L(C|N|P)DBR$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "L(C|N|P)EBR$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LCDFR(_32)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LNDFR(_32)?$")>;
|
|
|
|
def : InstRW<[FXU], (instregex "LPDFR(_32)?$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat9, GroupAlone], (instregex "L(C|N|P)XBR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Square root
|
|
|
|
def : InstRW<[FPU, LSU, Lat30], (instregex "SQ(E|D)B$")>;
|
|
|
|
def : InstRW<[FPU, Lat30], (instregex "SQ(E|D)BR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat30, GroupAlone], (instregex "SQXBR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Load FP integer
|
|
|
|
def : InstRW<[FPU], (instregex "FIEBR(A)?$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "FIDBR(A)?$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat15, GroupAlone], (instregex "FIXBR(A)?$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Binary arithmetic
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Addition
|
|
|
|
def : InstRW<[FPU, LSU, Lat12], (instregex "A(E|D)B$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "A(E|D)BR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat20, GroupAlone], (instregex "AXBR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Subtraction
|
|
|
|
def : InstRW<[FPU, LSU, Lat12], (instregex "S(E|D)B$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "S(E|D)BR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat20, GroupAlone], (instregex "SXBR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Multiply
|
|
|
|
def : InstRW<[FPU, LSU, Lat12], (instregex "M(D|DE|EE)B$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "M(D|DE|EE)BR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, LSU, Lat15, GroupAlone], (instregex "MXDB$")>;
|
|
|
|
def : InstRW<[FPU2, FPU2, Lat10, GroupAlone], (instregex "MXDBR$")>;
|
|
|
|
def : InstRW<[FPU2, FPU2, Lat30, GroupAlone], (instregex "MXBR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
// Multiply and add / subtract
|
|
|
|
def : InstRW<[FPU, LSU, Lat12, GroupAlone], (instregex "M(A|S)EB$")>;
|
|
|
|
def : InstRW<[FPU, GroupAlone], (instregex "M(A|S)EBR$")>;
|
|
|
|
def : InstRW<[FPU, LSU, Lat12, GroupAlone], (instregex "M(A|S)DB$")>;
|
|
|
|
def : InstRW<[FPU, GroupAlone], (instregex "M(A|S)DBR$")>;
|
|
|
|
|
|
|
|
// Division
|
|
|
|
def : InstRW<[FPU, LSU, Lat30], (instregex "D(E|D)B$")>;
|
|
|
|
def : InstRW<[FPU, Lat30], (instregex "D(E|D)BR$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, Lat30, GroupAlone], (instregex "DXBR$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Comparisons
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Compare
|
|
|
|
def : InstRW<[FPU, LSU, Lat12], (instregex "C(E|D)B$")>;
|
|
|
|
def : InstRW<[FPU], (instregex "C(E|D)BR$")>;
|
|
|
|
def : InstRW<[FPU, FPU, Lat30], (instregex "CXBR$")>;
|
|
|
|
|
|
|
|
// Test Data Class
|
|
|
|
def : InstRW<[FPU, LSU, Lat15], (instregex "TC(E|D)B$")>;
|
2016-11-07 16:45:06 +01:00
|
|
|
def : InstRW<[FPU2, FPU2, LSU, Lat15, GroupAlone], (instregex "TCXB$")>;
|
2016-10-20 10:27:16 +02:00
|
|
|
|
2016-12-02 19:21:53 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FP: Floating-point control register instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def : InstRW<[FXU, LSU, Lat4, GroupAlone], (instregex "EFPC$")>;
|
|
|
|
def : InstRW<[LSU, Lat3, GroupAlone], (instregex "SFPC$")>;
|
|
|
|
def : InstRW<[LSU, LSU, Lat6, GroupAlone], (instregex "LFPC$")>;
|
|
|
|
def : InstRW<[LSU, Lat3, GroupAlone], (instregex "STFPC$")>;
|
|
|
|
def : InstRW<[FXU, Lat30, GroupAlone], (instregex "SFASR$")>;
|
|
|
|
def : InstRW<[FXU, LSU, Lat30, GroupAlone], (instregex "LFAS$")>;
|
|
|
|
def : InstRW<[FXU, Lat2, GroupAlone], (instregex "SRNM(B|T)?$")>;
|
|
|
|
|
2016-10-20 10:27:16 +02:00
|
|
|
}
|
|
|
|
|