blob: e45126bec6efe4943c066089c444128a46bf8d0a [file] [log] [blame]
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +00001//===-- HexagonHazardRecognizer.cpp - Hexagon Post RA Hazard Recognizer ---===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the hazard recognizer for scheduling on Hexagon.
10// Use a DFA based hazard recognizer.
11//
12//===----------------------------------------------------------------------===//
13
14#include "HexagonHazardRecognizer.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000015#include "llvm/CodeGen/MachineFunction.h"
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000016#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000017#include "llvm/CodeGen/MachineOperand.h"
18#include "llvm/CodeGen/ScheduleDAG.h"
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000019#include "llvm/Support/Debug.h"
20#include "llvm/Support/raw_ostream.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000021#include <cassert>
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000022
23using namespace llvm;
24
25#define DEBUG_TYPE "post-RA-sched"
26
27void HexagonHazardRecognizer::Reset() {
Nicola Zaghend34e60c2018-05-14 12:53:11 +000028 LLVM_DEBUG(dbgs() << "Reset hazard recognizer\n");
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000029 Resources->clearResources();
30 PacketNum = 0;
31 UsesDotCur = nullptr;
32 DotCurPNum = -1;
Krzysztof Parzyszekf81a8d02018-03-16 20:55:49 +000033 UsesLoad = false;
Krzysztof Parzyszek5ffd8082018-03-20 14:54:01 +000034 PrefVectorStoreNew = nullptr;
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000035 RegDefs.clear();
36}
37
38ScheduleHazardRecognizer::HazardType
39HexagonHazardRecognizer::getHazardType(SUnit *SU, int stalls) {
40 MachineInstr *MI = SU->getInstr();
41 if (!MI || TII->isZeroCost(MI->getOpcode()))
42 return NoHazard;
43
44 if (!Resources->canReserveResources(*MI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +000045 LLVM_DEBUG(dbgs() << "*** Hazard in cycle " << PacketNum << ", " << *MI);
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000046 HazardType RetVal = Hazard;
Krzysztof Parzyszekf0b34a52016-07-29 21:49:42 +000047 if (TII->mayBeNewStore(*MI)) {
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000048 // Make sure the register to be stored is defined by an instruction in the
49 // packet.
50 MachineOperand &MO = MI->getOperand(MI->getNumOperands() - 1);
51 if (!MO.isReg() || RegDefs.count(MO.getReg()) == 0)
52 return Hazard;
53 // The .new store version uses different resources so check if it
54 // causes a hazard.
55 MachineFunction *MF = MI->getParent()->getParent();
56 MachineInstr *NewMI =
Krzysztof Parzyszekf0b34a52016-07-29 21:49:42 +000057 MF->CreateMachineInstr(TII->get(TII->getDotNewOp(*MI)),
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000058 MI->getDebugLoc());
59 if (Resources->canReserveResources(*NewMI))
60 RetVal = NoHazard;
Nicola Zaghend34e60c2018-05-14 12:53:11 +000061 LLVM_DEBUG(dbgs() << "*** Try .new version? " << (RetVal == NoHazard)
62 << "\n");
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000063 MF->DeleteMachineInstr(NewMI);
64 }
65 return RetVal;
66 }
67
68 if (SU == UsesDotCur && DotCurPNum != (int)PacketNum) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +000069 LLVM_DEBUG(dbgs() << "*** .cur Hazard in cycle " << PacketNum << ", "
70 << *MI);
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000071 return Hazard;
72 }
73
74 return NoHazard;
75}
76
77void HexagonHazardRecognizer::AdvanceCycle() {
Nicola Zaghend34e60c2018-05-14 12:53:11 +000078 LLVM_DEBUG(dbgs() << "Advance cycle, clear state\n");
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000079 Resources->clearResources();
80 if (DotCurPNum != -1 && DotCurPNum != (int)PacketNum) {
81 UsesDotCur = nullptr;
82 DotCurPNum = -1;
83 }
Krzysztof Parzyszekf81a8d02018-03-16 20:55:49 +000084 UsesLoad = false;
Krzysztof Parzyszek5ffd8082018-03-20 14:54:01 +000085 PrefVectorStoreNew = nullptr;
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +000086 PacketNum++;
87 RegDefs.clear();
88}
89
Krzysztof Parzyszekf81a8d02018-03-16 20:55:49 +000090/// Handle the cases when we prefer one instruction over another. Case 1 - we
91/// prefer not to generate multiple loads in the packet to avoid a potential
92/// bank conflict. Case 2 - if a packet contains a dot cur instruction, then we
93/// prefer the instruction that can use the dot cur result. However, if the use
94/// is not scheduled in the same packet, then prefer other instructions in the
Krzysztof Parzyszek5ffd8082018-03-20 14:54:01 +000095/// subsequent packet. Case 3 - we prefer a vector store that can be converted
96/// to a .new store. The packetizer will not generate the .new store if the
97/// store doesn't have resources to fit in the packet (but the .new store may
98/// have resources). We attempt to schedule the store as soon as possible to
99/// help packetize the two instructions together.
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000100bool HexagonHazardRecognizer::ShouldPreferAnother(SUnit *SU) {
Krzysztof Parzyszek5ffd8082018-03-20 14:54:01 +0000101 if (PrefVectorStoreNew != nullptr && PrefVectorStoreNew != SU)
102 return true;
Krzysztof Parzyszekf81a8d02018-03-16 20:55:49 +0000103 if (UsesLoad && SU->isInstr() && SU->getInstr()->mayLoad())
104 return true;
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000105 return UsesDotCur && ((SU == UsesDotCur) ^ (DotCurPNum == (int)PacketNum));
106}
107
108void HexagonHazardRecognizer::EmitInstruction(SUnit *SU) {
109 MachineInstr *MI = SU->getInstr();
110 if (!MI)
111 return;
112
113 // Keep the set of definitions for each packet, which is used to determine
114 // if a .new can be used.
Matthias Braunfc371552016-10-24 21:36:43 +0000115 for (const MachineOperand &MO : MI->operands())
116 if (MO.isReg() && MO.isDef() && !MO.isImplicit())
117 RegDefs.insert(MO.getReg());
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000118
119 if (TII->isZeroCost(MI->getOpcode()))
120 return;
121
122 if (!Resources->canReserveResources(*MI)) {
123 // It must be a .new store since other instructions must be able to be
124 // reserved at this point.
Krzysztof Parzyszekf0b34a52016-07-29 21:49:42 +0000125 assert(TII->mayBeNewStore(*MI) && "Expecting .new store");
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000126 MachineFunction *MF = MI->getParent()->getParent();
Krzysztof Parzyszekf0b34a52016-07-29 21:49:42 +0000127 MachineInstr *NewMI =
128 MF->CreateMachineInstr(TII->get(TII->getDotNewOp(*MI)),
129 MI->getDebugLoc());
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000130 assert(Resources->canReserveResources(*NewMI));
131 Resources->reserveResources(*NewMI);
132 MF->DeleteMachineInstr(NewMI);
133 }
134 else
135 Resources->reserveResources(*MI);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000136 LLVM_DEBUG(dbgs() << " Add instruction " << *MI);
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000137
138 // When scheduling a dot cur instruction, check if there is an instruction
139 // that can use the dot cur in the same packet. If so, we'll attempt to
Krzysztof Parzyszekdca38312018-03-20 12:28:43 +0000140 // schedule it before other instructions. We only do this if the load has a
141 // single zero-latency use.
Krzysztof Parzyszekf0b34a52016-07-29 21:49:42 +0000142 if (TII->mayBeCurLoad(*MI))
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000143 for (auto &S : SU->Succs)
144 if (S.isAssignedRegDep() && S.getLatency() == 0 &&
Krzysztof Parzyszekdca38312018-03-20 12:28:43 +0000145 S.getSUnit()->NumPredsLeft == 1) {
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000146 UsesDotCur = S.getSUnit();
147 DotCurPNum = PacketNum;
148 break;
149 }
150 if (SU == UsesDotCur) {
151 UsesDotCur = nullptr;
152 DotCurPNum = -1;
153 }
Krzysztof Parzyszekf81a8d02018-03-16 20:55:49 +0000154
155 UsesLoad = MI->mayLoad();
Krzysztof Parzyszek5ffd8082018-03-20 14:54:01 +0000156
157 if (TII->isHVXVec(*MI) && !MI->mayLoad() && !MI->mayStore())
158 for (auto &S : SU->Succs)
159 if (S.isAssignedRegDep() && S.getLatency() == 0 &&
160 TII->mayBeNewStore(*S.getSUnit()->getInstr()) &&
161 Resources->canReserveResources(*S.getSUnit()->getInstr())) {
162 PrefVectorStoreNew = S.getSUnit();
163 break;
164 }
Krzysztof Parzyszek0005a722016-07-29 13:59:55 +0000165}