mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
6762d91c05
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76612 91177308-0d34-0410-b5e6-96231b3b80d8
34 lines
1.4 KiB
TableGen
34 lines
1.4 KiB
TableGen
//===- ARMScheduleV7.td - ARM v7 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 v7 processors.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
def V7Itineraries : 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]>]>
|
|
]>;
|
|
|
|
|
|
def CortexA8Itineraries : 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]>]>
|
|
]>;
|