update PPC 940 hazard rec. to function in postRA mode
[oota-llvm.git] / lib / Target / PowerPC / PPCHazardRecognizers.h
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 PPCHAZRECS_H
15 #define PPCHAZRECS_H
16
17 #include "llvm/CodeGen/ScheduleHazardRecognizer.h"
18 #include "llvm/CodeGen/ScoreboardHazardRecognizer.h"
19 #include "llvm/CodeGen/SelectionDAGNodes.h"
20 #include "PPCInstrInfo.h"
21
22 namespace llvm {
23
24 /// PPCHazardRecognizer440 - This class implements a scoreboard-based
25 /// hazard recognizer for the PPC 440 and friends.
26 class PPCHazardRecognizer440 : public ScoreboardHazardRecognizer {
27   const ScheduleDAG *DAG;
28 public:
29   PPCHazardRecognizer440(const InstrItineraryData *ItinData,
30                          const ScheduleDAG *DAG_) :
31     ScoreboardHazardRecognizer(ItinData, DAG_), DAG(DAG_) {}
32
33   virtual void EmitInstruction(SUnit *SU);
34 };
35
36 /// PPCHazardRecognizer970 - This class defines a finite state automata that
37 /// models the dispatch logic on the PowerPC 970 (aka G5) processor.  This
38 /// promotes good dispatch group formation and implements noop insertion to
39 /// avoid structural hazards that cause significant performance penalties (e.g.
40 /// setting the CTR register then branching through it within a dispatch group),
41 /// or storing then loading from the same address within a dispatch group.
42 class PPCHazardRecognizer970 : public ScheduleHazardRecognizer {
43   const TargetInstrInfo &TII;
44
45   unsigned NumIssued;  // Number of insts issued, including advanced cycles.
46
47   // Various things that can cause a structural hazard.
48
49   // HasCTRSet - If the CTR register is set in this group, disallow BCTRL.
50   bool HasCTRSet;
51
52   // StoredPtr - Keep track of the address of any store.  If we see a load from
53   // the same address (or one that aliases it), disallow the store.  We can have
54   // up to four stores in one dispatch group, hence we track up to 4.
55   //
56   // This is null if we haven't seen a store yet.  We keep track of both
57   // operands of the store here, since we support [r+r] and [r+i] addressing.
58   const Value *StoreValue[4];
59   int64_t StoreOffset[4];
60   uint64_t StoreSize[4];
61   unsigned NumStores;
62
63 public:
64   PPCHazardRecognizer970(const TargetInstrInfo &TII);
65   virtual HazardType getHazardType(SUnit *SU, int Stalls);
66   virtual void EmitInstruction(SUnit *SU);
67   virtual void AdvanceCycle();
68   virtual void Reset();
69
70 private:
71   /// EndDispatchGroup - Called when we are finishing a new dispatch group.
72   ///
73   void EndDispatchGroup();
74
75   /// GetInstrType - Classify the specified powerpc opcode according to its
76   /// pipeline.
77   PPCII::PPC970_Unit GetInstrType(unsigned Opcode,
78                                   bool &isFirst, bool &isSingle,bool &isCracked,
79                                   bool &isLoad, bool &isStore);
80
81   bool isLoadOfStoredAddress(uint64_t LoadSize, int64_t LoadOffset,
82                              const Value *LoadValue) const;
83 };
84
85 } // end namespace llvm
86
87 #endif
88