2009-07-21 23:54:22 +00:00
|
|
|
//===- ARMScheduleV6.td - ARM v6 Scheduling Definitions ----*- tablegen -*-===//
|
2009-06-19 01:51:50 +00:00
|
|
|
//
|
|
|
|
// 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 itinerary class data for the ARM v6 processors.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-11 22:38:43 +00:00
|
|
|
// TODO: this should model an ARM11
|
2009-08-10 15:56:13 +00:00
|
|
|
// Single issue pipeline so every itinerary starts with FU_pipe0
|
2009-06-19 01:51:50 +00:00
|
|
|
def V6Itineraries : ProcessorItineraries<[
|
2009-08-10 15:56:13 +00:00
|
|
|
InstrItinData<IIC_iALU , [InstrStage<1, [FU_Pipe0]>]>,
|
2009-08-13 15:51:13 +00:00
|
|
|
InstrItinData<IIC_iMPYh , [InstrStage<1, [FU_Pipe0]>]>,
|
|
|
|
InstrItinData<IIC_iMPYw , [InstrStage<1, [FU_Pipe0]>]>,
|
|
|
|
InstrItinData<IIC_iMPYl , [InstrStage<1, [FU_Pipe0]>]>,
|
2009-08-10 15:56:13 +00:00
|
|
|
InstrItinData<IIC_iLoad , [InstrStage<1, [FU_Pipe0]>, InstrStage<1, [FU_LdSt0]>]>,
|
|
|
|
InstrItinData<IIC_iStore , [InstrStage<1, [FU_Pipe0]>]>,
|
2009-08-11 22:38:43 +00:00
|
|
|
InstrItinData<IIC_Br , [InstrStage<1, [FU_Pipe0]>]>,
|
|
|
|
InstrItinData<IIC_fpALU , [InstrStage<1, [FU_Pipe0]>]>,
|
|
|
|
InstrItinData<IIC_fpMPY , [InstrStage<1, [FU_Pipe0]>]>,
|
|
|
|
InstrItinData<IIC_fpLoad , [InstrStage<1, [FU_Pipe0]>, InstrStage<1, [FU_LdSt0]>]>,
|
|
|
|
InstrItinData<IIC_fpStore , [InstrStage<1, [FU_Pipe0]>]>
|
2009-06-19 01:51:50 +00:00
|
|
|
]>;
|