blob: 317934faec50b4d1ebf80477c480d895c38f65c0 [file] [log] [blame]
Evan Cheng48575f62010-12-05 22:04:16 +00001//===-- 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"
16using namespace llvm;
17
18static 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
36ScheduleHazardRecognizer::HazardType
37ARMHazardRecognizer::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 PostRAHazardRecognizer::getHazardType(SU);
72}
73
74void ARMHazardRecognizer::Reset() {
75 LastMI = 0;
76 Stalls = 0;
77 ITBlockSize = 0;
78 PostRAHazardRecognizer::Reset();
79}
80
81void 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 PostRAHazardRecognizer::EmitInstruction(SU);
107}
108
109void ARMHazardRecognizer::AdvanceCycle() {
110 if (Stalls && --Stalls == 0)
111 // Stalled for 4 cycles but still can't schedule any other instructions.
112 LastMI = 0;
113 PostRAHazardRecognizer::AdvanceCycle();
114}