diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-10-09 01:03:04 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-10-09 01:03:04 +0000 |
commit | 05f13e94bf080d3e3beb93352d8fc70258d7a56c (patch) | |
tree | d5a7aec1345bbdcf0ae31e06825ef4e625632013 /llvm/lib/Target/ARM/ARMSchedule.td | |
parent | b7c046248cb140d42772c72c249b29d3267d9e14 (diff) | |
download | bcm5719-llvm-05f13e94bf080d3e3beb93352d8fc70258d7a56c.tar.gz bcm5719-llvm-05f13e94bf080d3e3beb93352d8fc70258d7a56c.zip |
Correct some load / store instruction itinerary mistakes:
1. Cortex-A8 load / store multiplies can only issue on ALU0.
2. Eliminate A8_Issue, A8_LSPipe will correctly limit the load / store issues.
3. Correctly model all vld1 and vld2 variants.
llvm-svn: 116134
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSchedule.td')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSchedule.td | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMSchedule.td b/llvm/lib/Target/ARM/ARMSchedule.td index d4abc3534de..521faa196d0 100644 --- a/llvm/lib/Target/ARM/ARMSchedule.td +++ b/llvm/lib/Target/ARM/ARMSchedule.td @@ -127,7 +127,19 @@ def IIC_fpStore64 : InstrItinClass; def IIC_fpStore_m : InstrItinClass<0>; // micro-coded def IIC_fpStore_mu : InstrItinClass<0>; // micro-coded def IIC_VLD1 : InstrItinClass; +def IIC_VLD1x2 : InstrItinClass; +def IIC_VLD1x3 : InstrItinClass; +def IIC_VLD1x4 : InstrItinClass; +def IIC_VLD1u : InstrItinClass; +def IIC_VLD1x2u : InstrItinClass; +def IIC_VLD1x3u : InstrItinClass; +def IIC_VLD1x4u : InstrItinClass; def IIC_VLD2 : InstrItinClass; +def IIC_VLD2x2 : InstrItinClass; +def IIC_VLD2u : InstrItinClass; +def IIC_VLD2x2u : InstrItinClass; +def IIC_VLD2ln : InstrItinClass; +def IIC_VLD2lnu : InstrItinClass; def IIC_VLD3 : InstrItinClass; def IIC_VLD4 : InstrItinClass; def IIC_VST : InstrItinClass; |