LLVM 19.0.0git
HexagonHazardRecognizer.h
Go to the documentation of this file.
1//===--- HexagonHazardRecognizer.h - Hexagon Post RA Hazard Recognizer ----===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8// This file defines the hazard recognizer for scheduling on Hexagon.
9//===----------------------------------------------------------------------===//
10
11#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONPROFITRECOGNIZER_H
12#define LLVM_LIB_TARGET_HEXAGON_HEXAGONPROFITRECOGNIZER_H
13
14#include "HexagonInstrInfo.h"
15#include "HexagonSubtarget.h"
16#include "llvm/ADT/SmallSet.h"
19
20namespace llvm {
21
23 DFAPacketizer *Resources;
24 const HexagonInstrInfo *TII;
25 unsigned PacketNum = 0;
26 // If the packet contains a potential dot cur instruction. This is
27 // used for the scheduling priority function.
28 SUnit *UsesDotCur = nullptr;
29 // The packet number when a dor cur is emitted. If its use is not generated
30 // in the same packet, then try to wait another cycle before emitting.
31 int DotCurPNum = -1;
32 // Does the packet contain a load. Used to restrict another load, if possible.
33 bool UsesLoad = false;
34 // Check if we should prefer a vector store that will become a .new version.
35 // The .new store uses different resources than a normal store, and the
36 // packetizer will not generate the .new if the regular store does not have
37 // resources available (even if the .new version does). To help, the schedule
38 // attempts to schedule the .new as soon as possible in the packet.
39 SUnit *PrefVectorStoreNew = nullptr;
40 // The set of registers defined by instructions in the current packet.
42
43 // Return true if the instruction is a store that is converted to a new value
44 // store because its value is defined in the same packet.
45 bool isNewStore(MachineInstr &MI);
46
47public:
49 const HexagonInstrInfo *HII,
50 const HexagonSubtarget &ST)
51 : Resources(ST.createDFAPacketizer(II)), TII(HII) { }
52
54 if (Resources)
55 delete Resources;
56 }
57
58 /// This callback is invoked when a new block of instructions is about to be
59 /// scheduled. The hazard state is set to an initialized state.
60 void Reset() override;
61
62 /// Return the hazard type of emitting this node. There are three
63 /// possible results. Either:
64 /// * NoHazard: it is legal to issue this instruction on this cycle.
65 /// * Hazard: issuing this instruction would stall the machine. If some
66 /// other instruction is available, issue it first.
67 HazardType getHazardType(SUnit *SU, int stalls) override;
68
69 /// This callback is invoked when an instruction is emitted to be scheduled,
70 /// to advance the hazard state.
71 void EmitInstruction(SUnit *) override;
72
73 /// This callback may be invoked if getHazardType returns NoHazard. If, even
74 /// though there is no hazard, it would be better to schedule another
75 /// available instruction, this callback should return true.
76 bool ShouldPreferAnother(SUnit *) override;
77
78 /// This callback is invoked whenever the next top-down instruction to be
79 /// scheduled cannot issue in the current cycle, either because of latency
80 /// or resource conflicts. This should increment the internal state of the
81 /// hazard recognizer so that previously "Hazard" instructions will now not
82 /// be hazards.
83 void AdvanceCycle() override;
84};
85
86} // end namespace llvm
87
88#endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONPROFITRECOGNIZER_H
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
This file defines the SmallSet class.
void Reset() override
This callback is invoked when a new block of instructions is about to be scheduled.
HexagonHazardRecognizer(const InstrItineraryData *II, const HexagonInstrInfo *HII, const HexagonSubtarget &ST)
void AdvanceCycle() override
This callback is invoked whenever the next top-down instruction to be scheduled cannot issue in the c...
bool ShouldPreferAnother(SUnit *) override
This callback may be invoked if getHazardType returns NoHazard.
HazardType getHazardType(SUnit *SU, int stalls) override
Return the hazard type of emitting this node.
void EmitInstruction(SUnit *) override
This callback is invoked when an instruction is emitted to be scheduled, to advance the hazard state.
Itinerary data supplied by a subtarget to be used by a target.
Representation of each machine instruction.
Definition: MachineInstr.h:69
Scheduling unit. This is a node in the scheduling DAG.
Definition: ScheduleDAG.h:242
HazardRecognizer - This determines whether or not an instruction can be issued this cycle,...
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition: SmallSet.h:135
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18