mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
f08bdf2271
- Remove all uses of base sched model entries and set them all to Unsupported so all the opcodes are described in AArch64SchedFalkorDetails.td. - Remove entries for unsupported half-float opcodes. - Remove entries for unsupported LSE extension opcodes. - Add entry for MOVbaseTLS (and set Sched in base td file entry to WriteSys) and a few other pseudo ops. - Fix a few FP load/store with reg offset entries to use the LSLfast predicates. - Add Q size BIF/BIT/BSL entries. - Fix swapped Q/D sized CLS/CLZ/CNT/RBIT entires. - Fix pre/post increment address register latency (this operand is always dest 0). - Fix swapped FCVTHD/FCVTHS/FCVTDH/FCVTDS entries. - Fix XYZ resource over usage on LD[1-4] opcodes. llvm-svn: 304108
115 lines
5.1 KiB
TableGen
115 lines
5.1 KiB
TableGen
//==- AArch64SchedFalkor.td - Falkor Scheduling Definitions -*- tablegen -*-==//
|
|
//
|
|
// 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 Qualcomm Falkor to support
|
|
// instruction scheduling and other instruction cost heuristics.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Define the SchedMachineModel and provide basic properties for coarse grained
|
|
// instruction cost model.
|
|
|
|
def FalkorModel : SchedMachineModel {
|
|
let IssueWidth = 8; // 8 uops are dispatched per cycle.
|
|
let MicroOpBufferSize = 128; // Out-of-order with temporary unified issue buffer.
|
|
let LoopMicroOpBufferSize = 16;
|
|
let LoadLatency = 3; // Optimistic load latency.
|
|
let MispredictPenalty = 11; // Minimum branch misprediction penalty.
|
|
let CompleteModel = 1;
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Define each kind of processor resource and number available on Falkor.
|
|
|
|
let SchedModel = FalkorModel in {
|
|
|
|
def FalkorUnitB : ProcResource<1>; // Branch
|
|
def FalkorUnitLD : ProcResource<1>; // Load pipe
|
|
def FalkorUnitSD : ProcResource<1>; // Store data
|
|
def FalkorUnitST : ProcResource<1>; // Store pipe
|
|
def FalkorUnitX : ProcResource<1>; // Complex arithmetic
|
|
def FalkorUnitY : ProcResource<1>; // Simple arithmetic
|
|
def FalkorUnitZ : ProcResource<1>; // Simple arithmetic
|
|
|
|
def FalkorUnitVSD : ProcResource<1>; // Vector store data
|
|
def FalkorUnitVX : ProcResource<1>; // Vector X-pipe
|
|
def FalkorUnitVY : ProcResource<1>; // Vector Y-pipe
|
|
|
|
def FalkorUnitGTOV : ProcResource<1>; // Scalar to Vector
|
|
def FalkorUnitVTOG : ProcResource<1>; // Vector to Scalar
|
|
|
|
// Define the resource groups.
|
|
def FalkorUnitXY : ProcResGroup<[FalkorUnitX, FalkorUnitY]>;
|
|
def FalkorUnitXYZ : ProcResGroup<[FalkorUnitX, FalkorUnitY, FalkorUnitZ]>;
|
|
def FalkorUnitXYZB : ProcResGroup<[FalkorUnitX, FalkorUnitY, FalkorUnitZ,
|
|
FalkorUnitB]>;
|
|
def FalkorUnitZB : ProcResGroup<[FalkorUnitZ, FalkorUnitB]>;
|
|
def FalkorUnitVXVY : ProcResGroup<[FalkorUnitVX, FalkorUnitVY]>;
|
|
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Map the target-defined scheduler read/write resources and latency for
|
|
// Falkor.
|
|
|
|
let SchedModel = FalkorModel in {
|
|
|
|
// These WriteRes entries are not used in the Falkor sched model.
|
|
def : WriteRes<WriteImm, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteI, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteISReg, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteIEReg, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteExtr, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteIS, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteID32, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteID64, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteIM32, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteIM64, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteBr, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteBrReg, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteLD, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteST, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteSTP, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteAdr, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteLDIdx, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteSTIdx, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteF, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteFCmp, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteFCvt, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteFCopy, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteFImm, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteFMul, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteFDiv, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteV, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteVLD, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteVST, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteSys, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteBarrier, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteHint, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteLDHi, []> { let Unsupported = 1; }
|
|
def : WriteRes<WriteAtomic, []> { let Unsupported = 1; }
|
|
|
|
// These ReadAdvance entries are not used in the Falkor sched model.
|
|
def : ReadAdvance<ReadI, 0>;
|
|
def : ReadAdvance<ReadISReg, 0>;
|
|
def : ReadAdvance<ReadIEReg, 0>;
|
|
def : ReadAdvance<ReadIM, 0>;
|
|
def : ReadAdvance<ReadIMA, 0>;
|
|
def : ReadAdvance<ReadID, 0>;
|
|
def : ReadAdvance<ReadExtrHi, 0>;
|
|
def : ReadAdvance<ReadAdrBase, 0>;
|
|
def : ReadAdvance<ReadVLD, 0>;
|
|
|
|
// Detailed Refinements
|
|
// -----------------------------------------------------------------------------
|
|
include "AArch64SchedFalkorDetails.td"
|
|
|
|
}
|