diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-06-12 19:01:24 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-06-12 19:01:24 +0000 |
commit | 8c33dde66657721f21b76470e2be3b519d4ba594 (patch) | |
tree | 83506d8b4056b52f198e6776ef1bef9cd6499652 /llvm/lib/Target/PowerPC/PPCScheduleG4.td | |
parent | 6d6baa88f65ac6ae68f4bc4f81afa3d9f9b83299 (diff) | |
download | bcm5719-llvm-8c33dde66657721f21b76470e2be3b519d4ba594.tar.gz bcm5719-llvm-8c33dde66657721f21b76470e2be3b519d4ba594.zip |
Split out the PPC instruction class IntSimple from IntGeneral.
On the POWER7, adds and logical operations can also be handled
in the load/store pipelines. We'll call these IntSimple.
llvm-svn: 158366
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCScheduleG4.td')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCScheduleG4.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCScheduleG4.td b/llvm/lib/Target/PowerPC/PPCScheduleG4.td index f7ec1e01333..e19ddfa80ea 100644 --- a/llvm/lib/Target/PowerPC/PPCScheduleG4.td +++ b/llvm/lib/Target/PowerPC/PPCScheduleG4.td @@ -13,6 +13,7 @@ def G4Itineraries : ProcessorItineraries< [IU1, IU2, SLU, SRU, BPU, FPU1, VIU1, VIU2, VPU, VFPU], [], [ + InstrItinData<IntSimple , [InstrStage<1, [IU1, IU2]>]>, InstrItinData<IntGeneral , [InstrStage<1, [IU1, IU2]>]>, InstrItinData<IntCompare , [InstrStage<1, [IU1, IU2]>]>, InstrItinData<IntDivW , [InstrStage<19, [IU1]>]>, |