Allow a zero cycle stage to reserve/require a FU without advancing the cycle counter.
[oota-llvm.git] / lib / Target / ARM / ARMScheduleV6.td
1 //===- ARMScheduleV6.td - ARM v6 Scheduling Definitions ----*- tablegen -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the itinerary class data for the ARM v6 processors.
11 //
12 //===----------------------------------------------------------------------===//
13
14 // TODO: this should model an ARM11
15 // Single issue pipeline so every itinerary starts with FU_pipe0
16 def V6Itineraries : ProcessorItineraries<[
17   InstrItinData<IIC_iALU    , [InstrStage<1, [FU_Pipe0]>]>,
18   InstrItinData<IIC_iMPY    , [InstrStage<1, [FU_Pipe0]>]>,
19   InstrItinData<IIC_iLoad   , [InstrStage<1, [FU_Pipe0]>, InstrStage<1, [FU_LdSt0]>]>,
20   InstrItinData<IIC_iStore  , [InstrStage<1, [FU_Pipe0]>]>,
21   InstrItinData<IIC_Br      , [InstrStage<1, [FU_Pipe0]>]>,
22   InstrItinData<IIC_fpALU   , [InstrStage<1, [FU_Pipe0]>]>,
23   InstrItinData<IIC_fpMPY   , [InstrStage<1, [FU_Pipe0]>]>,
24   InstrItinData<IIC_fpLoad  , [InstrStage<1, [FU_Pipe0]>, InstrStage<1, [FU_LdSt0]>]>,
25   InstrItinData<IIC_fpStore , [InstrStage<1, [FU_Pipe0]>]>
26 ]>;