summaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMScheduleV6.td
blob: 596a57f8aefd5b13d25cfd21b1bc803f1fc65b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===- ARMSchedule.td - ARM v6 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 itinerary class data for the ARM v6 processors.
//
//===----------------------------------------------------------------------===//

def V6Itineraries : ProcessorItineraries<[
  InstrItinData<IIC_iALU    , [InstrStage<1, [FU_iALU]>]>,
  InstrItinData<IIC_iLoad   , [InstrStage<2, [FU_iLdSt]>]>,
  InstrItinData<IIC_iStore  , [InstrStage<1, [FU_iLdSt]>]>,
  InstrItinData<IIC_fpALU   , [InstrStage<6, [FU_FpALU]>]>,
  InstrItinData<IIC_fpLoad  , [InstrStage<2, [FU_FpLdSt]>]>,
  InstrItinData<IIC_fpStore , [InstrStage<1, [FU_FpLdSt]>]>,
  InstrItinData<IIC_Br      , [InstrStage<3, [FU_Br]>]>
]>;
OpenPOWER on IntegriCloud