LLVM 19.0.0git
HWEventListener.h
Go to the documentation of this file.
1//===----------------------- HWEventListener.h ------------------*- C++ -*-===//
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/// \file
9///
10/// This file defines the main interface for hardware event listeners.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_MCA_HWEVENTLISTENER_H
15#define LLVM_MCA_HWEVENTLISTENER_H
16
17#include "llvm/ADT/ArrayRef.h"
19#include "llvm/MCA/Support.h"
20
21namespace llvm {
22namespace mca {
23
24// An HWInstructionEvent represents state changes of instructions that
25// listeners might be interested in. Listeners can choose to ignore any event
26// they are not interested in.
28public:
29 // This is the list of event types that are shared by all targets, that
30 // generic subtarget-agnostic classes (e.g., Pipeline, HWInstructionEvent,
31 // ...) and generic Views can manipulate.
32 // Subtargets are free to define additional event types, that are going to be
33 // handled by generic components as opaque values, but can still be
34 // emitted by subtarget-specific pipeline stages (e.g., ExecuteStage,
35 // DispatchStage, ...) and interpreted by subtarget-specific EventListener
36 // implementations.
39 // Events generated by the Retire Control Unit.
41 // Events generated by the Scheduler.
46 // Events generated by the Dispatch logic.
48
50 };
51
52 HWInstructionEvent(unsigned type, const InstRef &Inst)
53 : Type(type), IR(Inst) {}
54
55 // The event type. The exact meaning depends on the subtarget.
56 const unsigned Type;
57
58 // The instruction this event was generated for.
59 const InstRef &IR;
60};
61
62// ResourceRef::first is the index of the associated Resource.
63// ResourceRef::second is a bitmask of the referenced sub-unit of the resource.
64using ResourceRef = std::pair<uint64_t, uint64_t>;
65
66using ResourceUse = std::pair<ResourceRef, ReleaseAtCycles>;
67
69public:
72
74};
75
77public:
79 unsigned UOps)
81 UsedPhysRegs(Regs), MicroOpcodes(UOps) {}
82 // Number of physical register allocated for this instruction. There is one
83 // entry per register file.
85 // Number of micro opcodes dispatched.
86 // This field is often set to the total number of micro-opcodes specified by
87 // the instruction descriptor of IR.
88 // The only exception is when IR declares a number of micro opcodes
89 // which exceeds the processor DispatchWidth, and - by construction - it
90 // requires multiple cycles to be fully dispatched. In that particular case,
91 // the dispatch logic would generate more than one dispatch event (one per
92 // cycle), and each event would declare how many micro opcodes are effectively
93 // been dispatched to the schedulers.
94 unsigned MicroOpcodes;
95};
96
98public:
101 FreedPhysRegs(Regs) {}
102 // Number of register writes that have been architecturally committed. There
103 // is one entry per register file.
105};
106
107// A HWStallEvent represents a pipeline stall caused by the lack of hardware
108// resources.
110public:
113 // Generic stall events generated by the DispatchStage.
116 // Generic stall events generated by the Scheduler.
123 };
124
125 HWStallEvent(unsigned type, const InstRef &Inst) : Type(type), IR(Inst) {}
126
127 // The exact meaning of the stall event type depends on the subtarget.
128 const unsigned Type;
129
130 // The instruction this event was generated for.
131 const InstRef &IR;
132};
133
134// A HWPressureEvent describes an increase in backend pressure caused by
135// the presence of data dependencies or unavailability of pipeline resources.
137public:
140 // Scheduler was unable to issue all the ready instructions because some
141 // pipeline resources were unavailable.
143 // Instructions could not be issued because of register data dependencies.
145 // Instructions could not be issued because of memory dependencies.
147 };
148
150 uint64_t Mask = 0)
151 : Reason(reason), AffectedInstructions(Insts), ResourceMask(Mask) {}
152
153 // Reason for this increase in backend pressure.
155
156 // Instructions affected (i.e. delayed) by this increase in backend pressure.
158
159 // A mask of unavailable processor resources.
161};
162
164public:
165 // Generic events generated by the pipeline.
166 virtual void onCycleBegin() {}
167 virtual void onCycleEnd() {}
168
169 virtual void onEvent(const HWInstructionEvent &Event) {}
170 virtual void onEvent(const HWStallEvent &Event) {}
171 virtual void onEvent(const HWPressureEvent &Event) {}
172
173 virtual void onResourceAvailable(const ResourceRef &RRef) {}
174
175 // Events generated by the Scheduler when buffered resources are
176 // consumed/freed for an instruction.
177 virtual void onReservedBuffers(const InstRef &Inst,
178 ArrayRef<unsigned> Buffers) {}
179 virtual void onReleasedBuffers(const InstRef &Inst,
180 ArrayRef<unsigned> Buffers) {}
181
182 virtual ~HWEventListener() = default;
183
184private:
185 virtual void anchor();
186};
187} // namespace mca
188} // namespace llvm
189
190#endif // LLVM_MCA_HWEVENTLISTENER_H
This file defines abstractions used by the Pipeline to model register reads, register writes and inst...
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
virtual ~HWEventListener()=default
virtual void onReleasedBuffers(const InstRef &Inst, ArrayRef< unsigned > Buffers)
virtual void onReservedBuffers(const InstRef &Inst, ArrayRef< unsigned > Buffers)
virtual void onEvent(const HWStallEvent &Event)
virtual void onEvent(const HWInstructionEvent &Event)
virtual void onEvent(const HWPressureEvent &Event)
virtual void onResourceAvailable(const ResourceRef &RRef)
HWInstructionDispatchedEvent(const InstRef &IR, ArrayRef< unsigned > Regs, unsigned UOps)
HWInstructionEvent(unsigned type, const InstRef &Inst)
ArrayRef< ResourceUse > UsedResources
HWInstructionIssuedEvent(const InstRef &IR, ArrayRef< ResourceUse > UR)
HWInstructionRetiredEvent(const InstRef &IR, ArrayRef< unsigned > Regs)
HWPressureEvent(GenericReason reason, ArrayRef< InstRef > Insts, uint64_t Mask=0)
ArrayRef< InstRef > AffectedInstructions
HWStallEvent(unsigned type, const InstRef &Inst)
An InstRef contains both a SourceMgr index and Instruction pair.
Definition: Instruction.h:720
Helper functions used by various pipeline components.
std::pair< ResourceRef, ReleaseAtCycles > ResourceUse
std::pair< uint64_t, uint64_t > ResourceRef
A resource unit identifier.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18