mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-09 10:05:41 +00:00
bcf81629b8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78564 91177308-0d34-0410-b5e6-96231b3b80d8
45 lines
1.7 KiB
TableGen
45 lines
1.7 KiB
TableGen
//===- ARMSchedule.td - ARM Scheduling Definitions ---------*- tablegen -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Functional units across ARM processors
|
|
//
|
|
def FU_Pipe0 : FuncUnit; // pipeline 0 issue
|
|
def FU_Pipe1 : FuncUnit; // pipeline 1 issue
|
|
def FU_LdSt0 : FuncUnit; // pipeline 0 load/store
|
|
def FU_LdSt1 : FuncUnit; // pipeline 1 load/store
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Instruction Itinerary classes used for ARM
|
|
//
|
|
def IIC_iALU : InstrItinClass;
|
|
def IIC_iLoad : InstrItinClass;
|
|
def IIC_iStore : InstrItinClass;
|
|
def IIC_fpALU : InstrItinClass;
|
|
def IIC_fpLoad : InstrItinClass;
|
|
def IIC_fpStore : InstrItinClass;
|
|
def IIC_Br : InstrItinClass;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Processor instruction itineraries.
|
|
|
|
def GenericItineraries : ProcessorItineraries<[
|
|
InstrItinData<IIC_iALU , [InstrStage<1, [FU_Pipe0]>]>,
|
|
InstrItinData<IIC_iLoad , [InstrStage<1, [FU_Pipe0]>, InstrStage<1, [FU_LdSt0]>]>,
|
|
InstrItinData<IIC_fpLoad , [InstrStage<1, [FU_Pipe0]>, InstrStage<1, [FU_LdSt0]>]>,
|
|
InstrItinData<IIC_iStore , [InstrStage<1, [FU_Pipe0]>]>,
|
|
InstrItinData<IIC_fpStore , [InstrStage<1, [FU_Pipe0]>]>,
|
|
InstrItinData<IIC_fpALU , [InstrStage<1, [FU_Pipe0]>]>,
|
|
InstrItinData<IIC_Br , [InstrStage<1, [FU_Pipe0]>]>
|
|
]>;
|
|
|
|
|
|
include "ARMScheduleV6.td"
|
|
include "ARMScheduleV7.td"
|