b8d385b6e3dfbcb8b93ad04472cf6a275f319a79
[oota-llvm.git] / lib / Target / ARM / ARMHazardRecognizer.cpp
1 //===-- ARMHazardRecognizer.cpp - ARM postra hazard recognizer ------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "ARMHazardRecognizer.h"
11 #include "ARMBaseInstrInfo.h"
12 #include "ARMSubtarget.h"
13 #include "llvm/CodeGen/MachineInstr.h"
14 #include "llvm/CodeGen/ScheduleDAG.h"
15 #include "llvm/Target/TargetRegisterInfo.h"
16 using namespace llvm;
17
18 static bool hasRAWHazard(MachineInstr *DefMI, MachineInstr *MI,
19                          const TargetRegisterInfo &TRI) {
20   // FIXME: Detect integer instructions properly.
21   const TargetInstrDesc &TID = MI->getDesc();
22   unsigned Domain = TID.TSFlags & ARMII::DomainMask;
23   if (Domain == ARMII::DomainVFP) {
24     unsigned Opcode = MI->getOpcode();
25     if (Opcode == ARM::VSTRS || Opcode == ARM::VSTRD ||
26         Opcode == ARM::VMOVRS || Opcode == ARM::VMOVRRD)
27       return false;
28   } else if (Domain == ARMII::DomainNEON) {
29     if (MI->getDesc().mayStore() || MI->getDesc().mayLoad())
30       return false;
31   } else
32     return false;
33   return MI->readsRegister(DefMI->getOperand(0).getReg(), &TRI);
34 }
35
36 ScheduleHazardRecognizer::HazardType
37 ARMHazardRecognizer::getHazardType(SUnit *SU) {
38   MachineInstr *MI = SU->getInstr();
39
40   if (!MI->isDebugValue()) {
41     if (ITBlockSize && MI != ITBlockMIs[ITBlockSize-1])
42       return Hazard;
43
44     // Look for special VMLA / VMLS hazards. A VMUL / VADD / VSUB following
45     // a VMLA / VMLS will cause 4 cycle stall.
46     const TargetInstrDesc &TID = MI->getDesc();
47     if (LastMI && (TID.TSFlags & ARMII::DomainMask) != ARMII::DomainGeneral) {
48       MachineInstr *DefMI = LastMI;
49       const TargetInstrDesc &LastTID = LastMI->getDesc();
50       // Skip over one non-VFP / NEON instruction.
51       if (!LastTID.isBarrier() &&
52           (LastTID.TSFlags & ARMII::DomainMask) == ARMII::DomainGeneral) {
53         MachineBasicBlock::iterator I = LastMI;
54         if (I != LastMI->getParent()->begin()) {
55           I = llvm::prior(I);
56           DefMI = &*I;
57         }
58       }
59
60       if (TII.isFpMLxInstruction(DefMI->getOpcode()) &&
61           (TII.canCauseFpMLxStall(MI->getOpcode()) ||
62            hasRAWHazard(DefMI, MI, TRI))) {
63         // Try to schedule another instruction for the next 4 cycles.
64         if (Stalls == 0)
65           Stalls = 4;
66         return Hazard;
67       }
68     }
69   }
70
71   return ScoreboardHazardRecognizer::getHazardType(SU);
72 }
73
74 void ARMHazardRecognizer::Reset() {
75   LastMI = 0;
76   Stalls = 0;
77   ITBlockSize = 0;
78   ScoreboardHazardRecognizer::Reset();
79 }
80
81 void ARMHazardRecognizer::EmitInstruction(SUnit *SU) {
82   MachineInstr *MI = SU->getInstr();
83   unsigned Opcode = MI->getOpcode();
84   if (ITBlockSize) {
85     --ITBlockSize;
86   } else if (Opcode == ARM::t2IT) {
87     unsigned Mask = MI->getOperand(1).getImm();
88     unsigned NumTZ = CountTrailingZeros_32(Mask);
89     assert(NumTZ <= 3 && "Invalid IT mask!");
90     ITBlockSize = 4 - NumTZ;
91     MachineBasicBlock::iterator I = MI;
92     for (unsigned i = 0; i < ITBlockSize; ++i) {
93       // Advance to the next instruction, skipping any dbg_value instructions.
94       do {
95         ++I;
96       } while (I->isDebugValue());
97       ITBlockMIs[ITBlockSize-1-i] = &*I;
98     }
99   }
100
101   if (!MI->isDebugValue()) {
102     LastMI = MI;
103     Stalls = 0;
104   }
105
106   ScoreboardHazardRecognizer::EmitInstruction(SU);
107 }
108
109 void ARMHazardRecognizer::AdvanceCycle() {
110   if (Stalls && --Stalls == 0)
111     // Stalled for 4 cycles but still can't schedule any other instructions.
112     LastMI = 0;
113   ScoreboardHazardRecognizer::AdvanceCycle();
114 }
115
116 void ARMHazardRecognizer::RecedeCycle() {
117   llvm_unreachable("reverse ARM hazard checking unsupported");
118 }