6a5359de149d74dc93ddc8f7cf56027abe37f290
[oota-llvm.git] / include / llvm / CodeGen / TargetSchedule.h
1 //===-- llvm/CodeGen/TargetSchedule.h - Sched Machine Model -----*- 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 a wrapper around MCSchedModel that allows the interface to
11 // benefit from information currently only available in TargetInstrInfo.
12 // Ideally, the scheduling interface would be fully defined in the MC layer.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_TARGET_TARGETSCHEDMODEL_H
17 #define LLVM_TARGET_TARGETSCHEDMODEL_H
18
19 #include "llvm/MC/MCSchedule.h"
20 #include "llvm/MC/MCInstrItineraries.h"
21
22 namespace llvm {
23
24 class TargetRegisterInfo;
25 class TargetSubtargetInfo;
26 class TargetInstrInfo;
27 class MachineInstr;
28
29 /// Provide an instruction scheduling machine model to CodeGen passes.
30 class TargetSchedModel {
31   // For efficiency, hold a copy of the statically defined MCSchedModel for this
32   // processor.
33   MCSchedModel SchedModel;
34   InstrItineraryData InstrItins;
35   const TargetSubtargetInfo *STI;
36   const TargetInstrInfo *TII;
37 public:
38   TargetSchedModel(): STI(0), TII(0) {}
39
40   /// \brief Initialize the machine model for instruction scheduling.
41   ///
42   /// The machine model API keeps a copy of the top-level MCSchedModel table
43   /// indices and may query TargetSubtargetInfo and TargetInstrInfo to resolve
44   /// dynamic properties.
45   void init(const MCSchedModel &sm, const TargetSubtargetInfo *sti,
46             const TargetInstrInfo *tii);
47
48   /// \brief TargetInstrInfo getter.
49   const TargetInstrInfo *getInstrInfo() const { return TII; }
50
51   /// \brief Return true if this machine model includes an instruction-level
52   /// scheduling model.
53   ///
54   /// This is more detailed than the course grain IssueWidth and default
55   /// latency properties, but separate from the per-cycle itinerary data.
56   bool hasInstrSchedModel() const;
57
58   /// \brief Return true if this machine model includes cycle-to-cycle itinerary
59   /// data.
60   ///
61   /// This models scheduling at each stage in the processor pipeline.
62   bool hasInstrItineraries() const;
63
64   /// \brief Compute operand latency based on the available machine model.
65   ///
66   /// Computes and return the latency of the given data dependent def and use
67   /// when the operand indices are already known. UseMI may be NULL for an
68   /// unknown user.
69   ///
70   /// FindMin may be set to get the minimum vs. expected latency. Minimum
71   /// latency is used for scheduling groups, while expected latency is for
72   /// instruction cost and critical path.
73   unsigned computeOperandLatency(const MachineInstr *DefMI, unsigned DefOperIdx,
74                                  const MachineInstr *UseMI, unsigned UseOperIdx,
75                                  bool FindMin) const;
76
77   /// \brief Identify the processor corresponding to the current subtarget.
78   unsigned getProcessorID() const { return SchedModel.getProcessorID(); }
79
80   /// \brief Maximum number of micro-ops that may be scheduled per cycle.
81   unsigned getIssueWidth() const { return SchedModel.IssueWidth; }
82
83 private:
84   /// getDefLatency is a helper for computeOperandLatency. Return the
85   /// instruction's latency if operand lookup is not required.
86   /// Otherwise return -1.
87   int getDefLatency(const MachineInstr *DefMI, bool FindMin) const;
88
89   /// Return the MCSchedClassDesc for this instruction.
90   const MCSchedClassDesc *resolveSchedClass(const MachineInstr *MI) const;
91 };
92
93 } // namespace llvm
94
95 #endif