mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-28 23:43:50 +00:00
Fix the ARM IIC_iCMPsi itinerary and add an important assert.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a1cb585384
commit
6018deefe8
@ -123,7 +123,8 @@ def CortexA9Itineraries : ProcessorItineraries<
|
||||
InstrItinData<IIC_iCMPr , [InstrStage<1, [A9_Issue0, A9_Issue1], 0>,
|
||||
InstrStage<1, [A9_ALU0, A9_ALU1]>],
|
||||
[1, 1], [A9_LdBypass, A9_LdBypass]>,
|
||||
InstrItinData<IIC_iCMPsi , [InstrStage<2, [A9_ALU0, A9_ALU1]>],
|
||||
InstrItinData<IIC_iCMPsi , [InstrStage<1, [A9_Issue0, A9_Issue1], 0>,
|
||||
InstrStage<2, [A9_ALU0, A9_ALU1]>],
|
||||
[1, 1], [A9_LdBypass, NoBypass]>,
|
||||
InstrItinData<IIC_iCMPsr , [InstrStage<1, [A9_Issue0, A9_Issue1], 0>,
|
||||
InstrStage<3, [A9_ALU0, A9_ALU1]>],
|
||||
|
@ -240,6 +240,7 @@ void ARMSubtarget::computeIssueWidth() {
|
||||
// clear the lowest bit
|
||||
allStage1Units ^= allStage1Units & ~(allStage1Units - 1);
|
||||
}
|
||||
assert(InstrItins.IssueWidth <= 2 && "itinerary bug, too many stage 1 units");
|
||||
}
|
||||
|
||||
bool ARMSubtarget::enablePostRAScheduler(
|
||||
|
Loading…
Reference in New Issue
Block a user