LLVM  8.0.1
PPCHazardRecognizers.h
Go to the documentation of this file.
1 //===-- PPCHazardRecognizers.h - PowerPC Hazard Recognizers -----*- C++ -*-===//
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 // This file defines hazard recognizers for scheduling on PowerPC processors.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_LIB_TARGET_POWERPC_PPCHAZARDRECOGNIZERS_H
15 #define LLVM_LIB_TARGET_POWERPC_PPCHAZARDRECOGNIZERS_H
16 
17 #include "PPCInstrInfo.h"
21 
22 namespace llvm {
23 
24 /// PPCDispatchGroupSBHazardRecognizer - This class implements a scoreboard-based
25 /// hazard recognizer for PPC ooo processors with dispatch-group hazards.
27  const ScheduleDAG *DAG;
28  SmallVector<SUnit *, 7> CurGroup;
29  unsigned CurSlots, CurBranches;
30 
31  bool isLoadAfterStore(SUnit *SU);
32  bool isBCTRAfterSet(SUnit *SU);
33  bool mustComeFirst(const MCInstrDesc *MCID, unsigned &NSlots);
34 public:
36  const ScheduleDAG *DAG_) :
37  ScoreboardHazardRecognizer(ItinData, DAG_), DAG(DAG_),
38  CurSlots(0), CurBranches(0) {}
39 
40  HazardType getHazardType(SUnit *SU, int Stalls) override;
41  bool ShouldPreferAnother(SUnit* SU) override;
42  unsigned PreEmitNoops(SUnit *SU) override;
43  void EmitInstruction(SUnit *SU) override;
44  void AdvanceCycle() override;
45  void RecedeCycle() override;
46  void Reset() override;
47  void EmitNoop() override;
48 };
49 
50 /// PPCHazardRecognizer970 - This class defines a finite state automata that
51 /// models the dispatch logic on the PowerPC 970 (aka G5) processor. This
52 /// promotes good dispatch group formation and implements noop insertion to
53 /// avoid structural hazards that cause significant performance penalties (e.g.
54 /// setting the CTR register then branching through it within a dispatch group),
55 /// or storing then loading from the same address within a dispatch group.
57  const ScheduleDAG &DAG;
58 
59  unsigned NumIssued; // Number of insts issued, including advanced cycles.
60 
61  // Various things that can cause a structural hazard.
62 
63  // HasCTRSet - If the CTR register is set in this group, disallow BCTRL.
64  bool HasCTRSet;
65 
66  // StoredPtr - Keep track of the address of any store. If we see a load from
67  // the same address (or one that aliases it), disallow the store. We can have
68  // up to four stores in one dispatch group, hence we track up to 4.
69  //
70  // This is null if we haven't seen a store yet. We keep track of both
71  // operands of the store here, since we support [r+r] and [r+i] addressing.
72  const Value *StoreValue[4];
73  int64_t StoreOffset[4];
74  uint64_t StoreSize[4];
75  unsigned NumStores;
76 
77 public:
79  HazardType getHazardType(SUnit *SU, int Stalls) override;
80  void EmitInstruction(SUnit *SU) override;
81  void AdvanceCycle() override;
82  void Reset() override;
83 
84 private:
85  /// EndDispatchGroup - Called when we are finishing a new dispatch group.
86  ///
87  void EndDispatchGroup();
88 
89  /// GetInstrType - Classify the specified powerpc opcode according to its
90  /// pipeline.
91  PPCII::PPC970_Unit GetInstrType(unsigned Opcode,
92  bool &isFirst, bool &isSingle,bool &isCracked,
93  bool &isLoad, bool &isStore);
94 
95  bool isLoadOfStoredAddress(uint64_t LoadSize, int64_t LoadOffset,
96  const Value *LoadValue) const;
97 };
98 
99 } // end namespace llvm
100 
101 #endif
102 
This class represents lattice values for constants.
Definition: AllocatorList.h:24
Describe properties that are true of each instruction in the target description file.
Definition: MCInstrDesc.h:164
void RecedeCycle() override
RecedeCycle - This callback is invoked whenever the next bottom-up instruction to be scheduled cannot...
unsigned PreEmitNoops(SUnit *SU) override
PreEmitNoops - This callback is invoked prior to emitting an instruction.
PPCDispatchGroupSBHazardRecognizer - This class implements a scoreboard-based hazard recognizer for P...
static bool isLoad(int Opcode)
static bool isStore(int Opcode)
Itinerary data supplied by a subtarget to be used by a target.
void EmitNoop() override
EmitNoop - This callback is invoked when a noop was added to the instruction stream.
void Reset() override
Reset - This callback is invoked when a new block of instructions is about to be schedule.
HazardRecognizer - This determines whether or not an instruction can be issued this cycle...
PPCHazardRecognizer970 - This class defines a finite state automata that models the dispatch logic on...
This is a &#39;vector&#39; (really, a variable-sized array), optimized for the case when the array is small...
Definition: SmallVector.h:847
bool ShouldPreferAnother(SUnit *SU) override
ShouldPreferAnother - This callback may be invoked if getHazardType returns NoHazard.
void AdvanceCycle() override
AdvanceCycle - This callback is invoked whenever the next top-down instruction to be scheduled cannot...
LLVM Value Representation.
Definition: Value.h:73
void EmitInstruction(SUnit *SU) override
EmitInstruction - This callback is invoked when an instruction is emitted, to advance the hazard stat...
PPCDispatchGroupSBHazardRecognizer(const InstrItineraryData *ItinData, const ScheduleDAG *DAG_)
HazardType getHazardType(SUnit *SU, int Stalls) override
getHazardType - Return the hazard type of emitting this node.
Scheduling unit. This is a node in the scheduling DAG.
Definition: ScheduleDAG.h:246