Dan Gohman | a629b48 | 2008-12-08 17:50:35 +0000 | [diff] [blame] | 1 | //===---- ScheduleDAGInstrs.cpp - MachineInstr Rescheduling ---------------===// |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 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 | // |
Dan Gohman | a629b48 | 2008-12-08 17:50:35 +0000 | [diff] [blame] | 10 | // This implements the ScheduleDAGInstrs class, which implements re-scheduling |
| 11 | // of MachineInstrs. |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/ScheduleDAGInstrs.h" |
| 16 | #include "llvm/ADT/MapVector.h" |
| 17 | #include "llvm/ADT/SmallPtrSet.h" |
| 18 | #include "llvm/ADT/SmallSet.h" |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/AliasAnalysis.h" |
Dan Gohman | 5034dd3 | 2010-12-15 20:02:24 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/ValueTracking.h" |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Dan Gohman | 3f23744 | 2008-12-16 03:25:46 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineMemOperand.h" |
Dan Gohman | 3f23744 | 2008-12-16 03:25:46 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Andrew Trick | afc2657 | 2012-06-06 19:47:35 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/RegisterPressure.h" |
Andrew Trick | 53e98a2 | 2012-11-28 05:13:24 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/ScheduleDFS.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Operator.h" |
Evan Cheng | ab8be96 | 2011-06-29 01:14:12 +0000 | [diff] [blame] | 30 | #include "llvm/MC/MCInstrItineraries.h" |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 31 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Debug.h" |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Format.h" |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 34 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 35 | #include "llvm/Target/TargetInstrInfo.h" |
| 36 | #include "llvm/Target/TargetMachine.h" |
| 37 | #include "llvm/Target/TargetRegisterInfo.h" |
| 38 | #include "llvm/Target/TargetSubtargetInfo.h" |
Andrew Trick | ea57433 | 2013-08-23 17:48:43 +0000 | [diff] [blame] | 39 | #include <queue> |
| 40 | |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 41 | using namespace llvm; |
| 42 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 43 | #define DEBUG_TYPE "misched" |
| 44 | |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 45 | static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden, |
| 46 | cl::ZeroOrMore, cl::init(false), |
| 47 | cl::desc("Enable use of AA during MI GAD construction")); |
| 48 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 49 | static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 50 | cl::init(true), cl::desc("Enable use of TBAA during MI GAD construction")); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 51 | |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 52 | ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf, |
Dan Gohman | 3f23744 | 2008-12-16 03:25:46 +0000 | [diff] [blame] | 53 | const MachineLoopInfo &mli, |
Andrew Trick | 5e920d7 | 2012-01-14 02:17:12 +0000 | [diff] [blame] | 54 | const MachineDominatorTree &mdt, |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 55 | bool IsPostRAFlag, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 56 | bool RemoveKillFlags, |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 57 | LiveIntervals *lis) |
Andrew Trick | 412cd2f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 58 | : ScheduleDAG(mf), MLI(mli), MDT(mdt), MFI(mf.getFrameInfo()), LIS(lis), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 59 | IsPostRA(IsPostRAFlag), RemoveKillFlags(RemoveKillFlags), |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 60 | CanHandleTerminators(false), FirstDbgValue(nullptr) { |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 61 | assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals"); |
Devang Patel | cf4cc84 | 2011-06-02 20:07:12 +0000 | [diff] [blame] | 62 | DbgValues.clear(); |
Andrew Trick | cc77b54 | 2012-02-22 06:08:13 +0000 | [diff] [blame] | 63 | assert(!(IsPostRA && MRI.getNumVirtRegs()) && |
Andrew Trick | 19273ae | 2012-02-21 04:51:23 +0000 | [diff] [blame] | 64 | "Virtual registers must be removed prior to PostRA scheduling"); |
Andrew Trick | 781ab47 | 2012-09-18 18:20:00 +0000 | [diff] [blame] | 65 | |
| 66 | const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>(); |
| 67 | SchedModel.init(*ST.getSchedModel(), &ST, TII); |
Evan Cheng | 38bdfc6 | 2009-10-18 19:58:47 +0000 | [diff] [blame] | 68 | } |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 69 | |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 70 | /// getUnderlyingObjectFromInt - This is the function that does the work of |
| 71 | /// looking through basic ptrtoint+arithmetic+inttoptr sequences. |
| 72 | static const Value *getUnderlyingObjectFromInt(const Value *V) { |
| 73 | do { |
Dan Gohman | 8906f95 | 2009-07-17 20:58:59 +0000 | [diff] [blame] | 74 | if (const Operator *U = dyn_cast<Operator>(V)) { |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 75 | // If we find a ptrtoint, we can transfer control back to the |
| 76 | // regular getUnderlyingObjectFromInt. |
Dan Gohman | 8906f95 | 2009-07-17 20:58:59 +0000 | [diff] [blame] | 77 | if (U->getOpcode() == Instruction::PtrToInt) |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 78 | return U->getOperand(0); |
Andrew Trick | 8f82a08 | 2012-11-28 03:42:49 +0000 | [diff] [blame] | 79 | // If we find an add of a constant, a multiplied value, or a phi, it's |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 80 | // likely that the other operand will lead us to the base |
| 81 | // object. We don't have to worry about the case where the |
Dan Gohman | 748f98f | 2009-08-07 01:26:06 +0000 | [diff] [blame] | 82 | // object address is somehow being computed by the multiply, |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 83 | // because our callers only care when the result is an |
Nick Lewycky | 6b0db5f | 2012-10-26 04:27:49 +0000 | [diff] [blame] | 84 | // identifiable object. |
Dan Gohman | 8906f95 | 2009-07-17 20:58:59 +0000 | [diff] [blame] | 85 | if (U->getOpcode() != Instruction::Add || |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 86 | (!isa<ConstantInt>(U->getOperand(1)) && |
Andrew Trick | 8f82a08 | 2012-11-28 03:42:49 +0000 | [diff] [blame] | 87 | Operator::getOpcode(U->getOperand(1)) != Instruction::Mul && |
| 88 | !isa<PHINode>(U->getOperand(1)))) |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 89 | return V; |
| 90 | V = U->getOperand(0); |
| 91 | } else { |
| 92 | return V; |
| 93 | } |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 94 | assert(V->getType()->isIntegerTy() && "Unexpected operand type!"); |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 95 | } while (1); |
| 96 | } |
| 97 | |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 98 | /// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 99 | /// and adds support for basic ptrtoint+arithmetic+inttoptr sequences. |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 100 | static void getUnderlyingObjects(const Value *V, |
| 101 | SmallVectorImpl<Value *> &Objects) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 102 | SmallPtrSet<const Value *, 16> Visited; |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 103 | SmallVector<const Value *, 4> Working(1, V); |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 104 | do { |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 105 | V = Working.pop_back_val(); |
| 106 | |
| 107 | SmallVector<Value *, 4> Objs; |
| 108 | GetUnderlyingObjects(const_cast<Value *>(V), Objs); |
| 109 | |
Craig Topper | f22fd3f | 2013-07-03 05:11:49 +0000 | [diff] [blame] | 110 | for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end(); |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 111 | I != IE; ++I) { |
| 112 | V = *I; |
| 113 | if (!Visited.insert(V)) |
| 114 | continue; |
| 115 | if (Operator::getOpcode(V) == Instruction::IntToPtr) { |
| 116 | const Value *O = |
| 117 | getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0)); |
| 118 | if (O->getType()->isPointerTy()) { |
| 119 | Working.push_back(O); |
| 120 | continue; |
| 121 | } |
| 122 | } |
| 123 | Objects.push_back(const_cast<Value *>(V)); |
| 124 | } |
| 125 | } while (!Working.empty()); |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 128 | typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; |
| 129 | typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4> |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 130 | UnderlyingObjectsVector; |
| 131 | |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 132 | /// getUnderlyingObjectsForInstr - If this machine instr has memory reference |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 133 | /// information and it can be tracked to a normal reference to a known |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 134 | /// object, return the Value for that object. |
| 135 | static void getUnderlyingObjectsForInstr(const MachineInstr *MI, |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 136 | const MachineFrameInfo *MFI, |
| 137 | UnderlyingObjectsVector &Objects) { |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 138 | if (!MI->hasOneMemOperand() || |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 139 | (!(*MI->memoperands_begin())->getValue() && |
| 140 | !(*MI->memoperands_begin())->getPseudoValue()) || |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 141 | (*MI->memoperands_begin())->isVolatile()) |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 142 | return; |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 143 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 144 | if (const PseudoSourceValue *PSV = |
| 145 | (*MI->memoperands_begin())->getPseudoValue()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 146 | // For now, ignore PseudoSourceValues which may alias LLVM IR values |
| 147 | // because the code that uses this function has no way to cope with |
| 148 | // such aliases. |
| 149 | if (!PSV->isAliased(MFI)) { |
| 150 | bool MayAlias = PSV->mayAlias(MFI); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 151 | Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 152 | } |
| 153 | return; |
| 154 | } |
| 155 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 156 | const Value *V = (*MI->memoperands_begin())->getValue(); |
| 157 | if (!V) |
| 158 | return; |
| 159 | |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 160 | SmallVector<Value *, 4> Objs; |
| 161 | getUnderlyingObjects(V, Objs); |
Andrew Trick | f405b1a | 2011-05-05 19:24:06 +0000 | [diff] [blame] | 162 | |
Craig Topper | f22fd3f | 2013-07-03 05:11:49 +0000 | [diff] [blame] | 163 | for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end(); |
| 164 | I != IE; ++I) { |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 165 | V = *I; |
| 166 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 167 | if (!isIdentifiedObject(V)) { |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 168 | Objects.clear(); |
| 169 | return; |
| 170 | } |
| 171 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 172 | Objects.push_back(UnderlyingObjectsVector::value_type(V, true)); |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 173 | } |
Dan Gohman | 3311a1f | 2009-01-30 02:49:14 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Andrew Trick | 918f38a | 2012-04-20 20:05:21 +0000 | [diff] [blame] | 176 | void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) { |
| 177 | BB = bb; |
Dan Gohman | 9e64bbb | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Andrew Trick | 953be89 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 180 | void ScheduleDAGInstrs::finishBlock() { |
Andrew Trick | a30444a | 2012-04-20 20:24:33 +0000 | [diff] [blame] | 181 | // Subclasses should no longer refer to the old block. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 182 | BB = nullptr; |
Andrew Trick | 47c1445 | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Andrew Trick | 47c1445 | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 185 | /// Initialize the DAG and common scheduler state for the current scheduling |
| 186 | /// region. This does not actually create the DAG, only clears it. The |
| 187 | /// scheduling driver may call BuildSchedGraph multiple times per scheduling |
| 188 | /// region. |
| 189 | void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb, |
| 190 | MachineBasicBlock::iterator begin, |
| 191 | MachineBasicBlock::iterator end, |
Andrew Trick | d2763f6 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 192 | unsigned regioninstrs) { |
Andrew Trick | 918f38a | 2012-04-20 20:05:21 +0000 | [diff] [blame] | 193 | assert(bb == BB && "startBlock should set BB"); |
Andrew Trick | 68675c6 | 2012-03-09 04:29:02 +0000 | [diff] [blame] | 194 | RegionBegin = begin; |
| 195 | RegionEnd = end; |
Andrew Trick | d2763f6 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 196 | NumRegionInstrs = regioninstrs; |
Andrew Trick | 47c1445 | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | /// Close the current scheduling region. Don't clear any state in case the |
| 200 | /// driver wants to refer to the previous scheduling region. |
| 201 | void ScheduleDAGInstrs::exitRegion() { |
| 202 | // Nothing to do. |
| 203 | } |
| 204 | |
Andrew Trick | 953be89 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 205 | /// addSchedBarrierDeps - Add dependencies from instructions in the current |
Evan Cheng | ec6906b | 2010-10-23 02:10:46 +0000 | [diff] [blame] | 206 | /// list of instructions being scheduled to scheduling barrier by adding |
| 207 | /// the exit SU to the register defs and use list. This is because we want to |
| 208 | /// make sure instructions which define registers that are either used by |
| 209 | /// the terminator or are live-out are properly scheduled. This is |
| 210 | /// especially important when the definition latency of the return value(s) |
| 211 | /// are too high to be hidden by the branch or when the liveout registers |
| 212 | /// used by instructions in the fallthrough block. |
Andrew Trick | 953be89 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 213 | void ScheduleDAGInstrs::addSchedBarrierDeps() { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 214 | MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr; |
Evan Cheng | ec6906b | 2010-10-23 02:10:46 +0000 | [diff] [blame] | 215 | ExitSU.setInstr(ExitMI); |
| 216 | bool AllDepKnown = ExitMI && |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 217 | (ExitMI->isCall() || ExitMI->isBarrier()); |
Evan Cheng | ec6906b | 2010-10-23 02:10:46 +0000 | [diff] [blame] | 218 | if (ExitMI && AllDepKnown) { |
| 219 | // If it's a call or a barrier, add dependencies on the defs and uses of |
| 220 | // instruction. |
| 221 | for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) { |
| 222 | const MachineOperand &MO = ExitMI->getOperand(i); |
| 223 | if (!MO.isReg() || MO.isDef()) continue; |
| 224 | unsigned Reg = MO.getReg(); |
| 225 | if (Reg == 0) continue; |
| 226 | |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 227 | if (TRI->isPhysicalRegister(Reg)) |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 228 | Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg)); |
Andrew Trick | d3a7486 | 2012-03-16 05:04:25 +0000 | [diff] [blame] | 229 | else { |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 230 | assert(!IsPostRA && "Virtual register encountered after regalloc."); |
Andrew Trick | 177d87a | 2012-12-01 01:22:44 +0000 | [diff] [blame] | 231 | if (MO.readsReg()) // ignore undef operands |
| 232 | addVRegUseDeps(&ExitSU, i); |
Andrew Trick | d3a7486 | 2012-03-16 05:04:25 +0000 | [diff] [blame] | 233 | } |
Evan Cheng | ec6906b | 2010-10-23 02:10:46 +0000 | [diff] [blame] | 234 | } |
| 235 | } else { |
| 236 | // For others, e.g. fallthrough, conditional branch, assume the exit |
Evan Cheng | de5fa93 | 2010-10-27 23:17:17 +0000 | [diff] [blame] | 237 | // uses all the registers that are livein to the successor blocks. |
Benjamin Kramer | a82d526 | 2012-03-16 17:38:19 +0000 | [diff] [blame] | 238 | assert(Uses.empty() && "Uses in set before adding deps?"); |
Evan Cheng | de5fa93 | 2010-10-27 23:17:17 +0000 | [diff] [blame] | 239 | for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(), |
| 240 | SE = BB->succ_end(); SI != SE; ++SI) |
| 241 | for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(), |
Andrew Trick | f405b1a | 2011-05-05 19:24:06 +0000 | [diff] [blame] | 242 | E = (*SI)->livein_end(); I != E; ++I) { |
Evan Cheng | de5fa93 | 2010-10-27 23:17:17 +0000 | [diff] [blame] | 243 | unsigned Reg = *I; |
Benjamin Kramer | a82d526 | 2012-03-16 17:38:19 +0000 | [diff] [blame] | 244 | if (!Uses.contains(Reg)) |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 245 | Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg)); |
Evan Cheng | de5fa93 | 2010-10-27 23:17:17 +0000 | [diff] [blame] | 246 | } |
Evan Cheng | ec6906b | 2010-10-23 02:10:46 +0000 | [diff] [blame] | 247 | } |
| 248 | } |
| 249 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 250 | /// MO is an operand of SU's instruction that defines a physical register. Add |
| 251 | /// data dependencies from SU to any uses of the physical register. |
Andrew Trick | ffd2526 | 2012-08-23 00:39:43 +0000 | [diff] [blame] | 252 | void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) { |
| 253 | const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx); |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 254 | assert(MO.isDef() && "expect physreg def"); |
| 255 | |
| 256 | // Ask the target if address-backscheduling is desirable, and if so how much. |
| 257 | const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>(); |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 258 | |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 259 | for (MCRegAliasIterator Alias(MO.getReg(), TRI, true); |
| 260 | Alias.isValid(); ++Alias) { |
Andrew Trick | 702d489 | 2012-02-24 07:04:55 +0000 | [diff] [blame] | 261 | if (!Uses.contains(*Alias)) |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 262 | continue; |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 263 | for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) { |
| 264 | SUnit *UseSU = I->SU; |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 265 | if (UseSU == SU) |
| 266 | continue; |
Andrew Trick | 39817f9 | 2012-10-08 18:54:00 +0000 | [diff] [blame] | 267 | |
Andrew Trick | 39817f9 | 2012-10-08 18:54:00 +0000 | [diff] [blame] | 268 | // Adjust the dependence latency using operand def/use information, |
| 269 | // then allow the target to perform its own adjustments. |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 270 | int UseOp = I->OpIdx; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 271 | MachineInstr *RegUse = nullptr; |
Andrew Trick | ae692f2 | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 272 | SDep Dep; |
| 273 | if (UseOp < 0) |
| 274 | Dep = SDep(SU, SDep::Artificial); |
| 275 | else { |
Andrew Trick | 4392f0f | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 276 | // Set the hasPhysRegDefs only for physreg defs that have a use within |
| 277 | // the scheduling region. |
| 278 | SU->hasPhysRegDefs = true; |
Andrew Trick | ae692f2 | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 279 | Dep = SDep(SU, SDep::Data, *Alias); |
| 280 | RegUse = UseSU->getInstr(); |
Andrew Trick | ae692f2 | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 281 | } |
| 282 | Dep.setLatency( |
Andrew Trick | b86a0cd | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 283 | SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse, |
| 284 | UseOp)); |
Andrew Trick | b7e0289 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 285 | |
Andrew Trick | ae692f2 | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 286 | ST.adjustSchedDependency(SU, UseSU, Dep); |
| 287 | UseSU->addPred(Dep); |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | } |
| 291 | |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 292 | /// addPhysRegDeps - Add register dependencies (data, anti, and output) from |
| 293 | /// this SUnit to following instructions in the same scheduling region that |
| 294 | /// depend the physical register referenced at OperIdx. |
| 295 | void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 296 | MachineInstr *MI = SU->getInstr(); |
| 297 | MachineOperand &MO = MI->getOperand(OperIdx); |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 298 | |
| 299 | // Optionally add output and anti dependencies. For anti |
| 300 | // dependencies we use a latency of 0 because for a multi-issue |
| 301 | // target we want to allow the defining instruction to issue |
| 302 | // in the same cycle as the using instruction. |
| 303 | // TODO: Using a latency of 1 here for output dependencies assumes |
| 304 | // there's no cost for reusing registers. |
| 305 | SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output; |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 306 | for (MCRegAliasIterator Alias(MO.getReg(), TRI, true); |
| 307 | Alias.isValid(); ++Alias) { |
Andrew Trick | 702d489 | 2012-02-24 07:04:55 +0000 | [diff] [blame] | 308 | if (!Defs.contains(*Alias)) |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 309 | continue; |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 310 | for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) { |
| 311 | SUnit *DefSU = I->SU; |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 312 | if (DefSU == &ExitSU) |
| 313 | continue; |
| 314 | if (DefSU != SU && |
| 315 | (Kind != SDep::Output || !MO.isDead() || |
| 316 | !DefSU->getInstr()->registerDefIsDead(*Alias))) { |
| 317 | if (Kind == SDep::Anti) |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 318 | DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias)); |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 319 | else { |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 320 | SDep Dep(SU, Kind, /*Reg=*/*Alias); |
Andrew Trick | b86a0cd | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 321 | Dep.setLatency( |
| 322 | SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr())); |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 323 | DefSU->addPred(Dep); |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 329 | if (!MO.isDef()) { |
Andrew Trick | 4392f0f | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 330 | SU->hasPhysRegUses = true; |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 331 | // Either insert a new Reg2SUnits entry with an empty SUnits list, or |
| 332 | // retrieve the existing SUnits list for this register's uses. |
| 333 | // Push this SUnit on the use list. |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 334 | Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg())); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 335 | if (RemoveKillFlags) |
| 336 | MO.setIsKill(false); |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 337 | } |
| 338 | else { |
Andrew Trick | ffd2526 | 2012-08-23 00:39:43 +0000 | [diff] [blame] | 339 | addPhysRegDataDeps(SU, OperIdx); |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 340 | unsigned Reg = MO.getReg(); |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 341 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 342 | // clear this register's use list |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 343 | if (Uses.contains(Reg)) |
| 344 | Uses.eraseAll(Reg); |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 345 | |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 346 | if (!MO.isDead()) { |
| 347 | Defs.eraseAll(Reg); |
| 348 | } else if (SU->isCall) { |
| 349 | // Calls will not be reordered because of chain dependencies (see |
| 350 | // below). Since call operands are dead, calls may continue to be added |
| 351 | // to the DefList making dependence checking quadratic in the size of |
| 352 | // the block. Instead, we leave only one call at the back of the |
| 353 | // DefList. |
| 354 | Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg); |
| 355 | Reg2SUnitsMap::iterator B = P.first; |
| 356 | Reg2SUnitsMap::iterator I = P.second; |
| 357 | for (bool isBegin = I == B; !isBegin; /* empty */) { |
| 358 | isBegin = (--I) == B; |
| 359 | if (!I->SU->isCall) |
| 360 | break; |
| 361 | I = Defs.erase(I); |
| 362 | } |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 363 | } |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 364 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 365 | // Defs are pushed in the order they are visited and never reordered. |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 366 | Defs.insert(PhysRegSUOper(SU, OperIdx, Reg)); |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 370 | /// addVRegDefDeps - Add register output and data dependencies from this SUnit |
| 371 | /// to instructions that occur later in the same scheduling region if they read |
| 372 | /// from or write to the virtual register defined at OperIdx. |
| 373 | /// |
| 374 | /// TODO: Hoist loop induction variable increments. This has to be |
| 375 | /// reevaluated. Generally, IV scheduling should be done before coalescing. |
| 376 | void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) { |
| 377 | const MachineInstr *MI = SU->getInstr(); |
| 378 | unsigned Reg = MI->getOperand(OperIdx).getReg(); |
| 379 | |
Andrew Trick | 4b72ada | 2012-07-28 01:48:15 +0000 | [diff] [blame] | 380 | // Singly defined vregs do not have output/anti dependencies. |
Andrew Trick | 2fc0977 | 2012-02-22 18:34:49 +0000 | [diff] [blame] | 381 | // The current operand is a def, so we have at least one. |
Andrew Trick | 4b72ada | 2012-07-28 01:48:15 +0000 | [diff] [blame] | 382 | // Check here if there are any others... |
Andrew Trick | 8b5704f | 2012-07-30 23:48:17 +0000 | [diff] [blame] | 383 | if (MRI.hasOneDef(Reg)) |
Andrew Trick | 4b72ada | 2012-07-28 01:48:15 +0000 | [diff] [blame] | 384 | return; |
Andrew Trick | cc77b54 | 2012-02-22 06:08:13 +0000 | [diff] [blame] | 385 | |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 386 | // Add output dependence to the next nearest def of this vreg. |
| 387 | // |
| 388 | // Unless this definition is dead, the output dependence should be |
| 389 | // transitively redundant with antidependencies from this definition's |
| 390 | // uses. We're conservative for now until we have a way to guarantee the uses |
| 391 | // are not eliminated sometime during scheduling. The output dependence edge |
| 392 | // is also useful if output latency exceeds def-use latency. |
Andrew Trick | c0ccb8b | 2012-04-20 20:05:28 +0000 | [diff] [blame] | 393 | VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg); |
Andrew Trick | 8ae3ac7 | 2012-02-22 21:59:00 +0000 | [diff] [blame] | 394 | if (DefI == VRegDefs.end()) |
| 395 | VRegDefs.insert(VReg2SUnit(Reg, SU)); |
| 396 | else { |
| 397 | SUnit *DefSU = DefI->SU; |
| 398 | if (DefSU != SU && DefSU != &ExitSU) { |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 399 | SDep Dep(SU, SDep::Output, Reg); |
Andrew Trick | b86a0cd | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 400 | Dep.setLatency( |
| 401 | SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr())); |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 402 | DefSU->addPred(Dep); |
Andrew Trick | 8ae3ac7 | 2012-02-22 21:59:00 +0000 | [diff] [blame] | 403 | } |
| 404 | DefI->SU = SU; |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 405 | } |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 408 | /// addVRegUseDeps - Add a register data dependency if the instruction that |
| 409 | /// defines the virtual register used at OperIdx is mapped to an SUnit. Add a |
| 410 | /// register antidependency from this SUnit to instructions that occur later in |
| 411 | /// the same scheduling region if they write the virtual register. |
| 412 | /// |
| 413 | /// TODO: Handle ExitSU "uses" properly. |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 414 | void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) { |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 415 | MachineInstr *MI = SU->getInstr(); |
| 416 | unsigned Reg = MI->getOperand(OperIdx).getReg(); |
| 417 | |
Andrew Trick | 9909363 | 2013-08-23 17:48:39 +0000 | [diff] [blame] | 418 | // Record this local VReg use. |
Andrew Trick | 663bd99 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 419 | VReg2UseMap::iterator UI = VRegUses.find(Reg); |
| 420 | for (; UI != VRegUses.end(); ++UI) { |
| 421 | if (UI->SU == SU) |
| 422 | break; |
| 423 | } |
| 424 | if (UI == VRegUses.end()) |
| 425 | VRegUses.insert(VReg2SUnit(Reg, SU)); |
Andrew Trick | 9909363 | 2013-08-23 17:48:39 +0000 | [diff] [blame] | 426 | |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 427 | // Lookup this operand's reaching definition. |
| 428 | assert(LIS && "vreg dependencies requires LiveIntervals"); |
Matthias Braun | 5649e25 | 2013-10-10 21:28:52 +0000 | [diff] [blame] | 429 | LiveQueryResult LRQ |
| 430 | = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI)); |
Jakob Stoklund Olesen | 93e29ce | 2012-05-20 02:44:38 +0000 | [diff] [blame] | 431 | VNInfo *VNI = LRQ.valueIn(); |
Andrew Trick | c3ad885 | 2012-04-24 18:04:41 +0000 | [diff] [blame] | 432 | |
Andrew Trick | 63d578b | 2012-02-23 03:16:24 +0000 | [diff] [blame] | 433 | // VNI will be valid because MachineOperand::readsReg() is checked by caller. |
Jakob Stoklund Olesen | 93e29ce | 2012-05-20 02:44:38 +0000 | [diff] [blame] | 434 | assert(VNI && "No value to read by operand"); |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 435 | MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def); |
Andrew Trick | 63d578b | 2012-02-23 03:16:24 +0000 | [diff] [blame] | 436 | // Phis and other noninstructions (after coalescing) have a NULL Def. |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 437 | if (Def) { |
| 438 | SUnit *DefSU = getSUnit(Def); |
| 439 | if (DefSU) { |
| 440 | // The reaching Def lives within this scheduling region. |
| 441 | // Create a data dependence. |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 442 | SDep dep(DefSU, SDep::Data, Reg); |
Andrew Trick | a98f600 | 2012-10-08 18:53:57 +0000 | [diff] [blame] | 443 | // Adjust the dependence latency using operand def/use information, then |
| 444 | // allow the target to perform its own adjustments. |
| 445 | int DefOp = Def->findRegisterDefOperandIdx(Reg); |
Andrew Trick | b86a0cd | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 446 | dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx)); |
Andrew Trick | b7e0289 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 447 | |
Andrew Trick | a98f600 | 2012-10-08 18:53:57 +0000 | [diff] [blame] | 448 | const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>(); |
| 449 | ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep)); |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 450 | SU->addPred(dep); |
| 451 | } |
| 452 | } |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 453 | |
| 454 | // Add antidependence to the following def of the vreg it uses. |
Andrew Trick | c0ccb8b | 2012-04-20 20:05:28 +0000 | [diff] [blame] | 455 | VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg); |
Andrew Trick | 8ae3ac7 | 2012-02-22 21:59:00 +0000 | [diff] [blame] | 456 | if (DefI != VRegDefs.end() && DefI->SU != SU) |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 457 | DefI->SU->addPred(SDep(SU, SDep::Anti, Reg)); |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 458 | } |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 459 | |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 460 | /// Return true if MI is an instruction we are unable to reason about |
| 461 | /// (like a call or something with unmodeled side effects). |
| 462 | static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) { |
| 463 | if (MI->isCall() || MI->hasUnmodeledSideEffects() || |
Jakob Stoklund Olesen | f036f7a | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 464 | (MI->hasOrderedMemoryRef() && |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 465 | (!MI->mayLoad() || !MI->isInvariantLoad(AA)))) |
| 466 | return true; |
| 467 | return false; |
| 468 | } |
| 469 | |
| 470 | // This MI might have either incomplete info, or known to be unsafe |
| 471 | // to deal with (i.e. volatile object). |
| 472 | static inline bool isUnsafeMemoryObject(MachineInstr *MI, |
| 473 | const MachineFrameInfo *MFI) { |
| 474 | if (!MI || MI->memoperands_empty()) |
| 475 | return true; |
| 476 | // We purposefully do no check for hasOneMemOperand() here |
| 477 | // in hope to trigger an assert downstream in order to |
| 478 | // finish implementation. |
| 479 | if ((*MI->memoperands_begin())->isVolatile() || |
| 480 | MI->hasUnmodeledSideEffects()) |
| 481 | return true; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 482 | |
| 483 | if ((*MI->memoperands_begin())->getPseudoValue()) { |
| 484 | // Similarly to getUnderlyingObjectForInstr: |
| 485 | // For now, ignore PseudoSourceValues which may alias LLVM IR values |
| 486 | // because the code that uses this function has no way to cope with |
| 487 | // such aliases. |
| 488 | return true; |
| 489 | } |
| 490 | |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 491 | const Value *V = (*MI->memoperands_begin())->getValue(); |
| 492 | if (!V) |
| 493 | return true; |
| 494 | |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 495 | SmallVector<Value *, 4> Objs; |
| 496 | getUnderlyingObjects(V, Objs); |
Craig Topper | f22fd3f | 2013-07-03 05:11:49 +0000 | [diff] [blame] | 497 | for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), |
| 498 | IE = Objs.end(); I != IE; ++I) { |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 499 | // Does this pointer refer to a distinct and identifiable object? |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 500 | if (!isIdentifiedObject(*I)) |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 501 | return true; |
| 502 | } |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 503 | |
| 504 | return false; |
| 505 | } |
| 506 | |
| 507 | /// This returns true if the two MIs need a chain edge betwee them. |
| 508 | /// If these are not even memory operations, we still may need |
| 509 | /// chain deps between them. The question really is - could |
| 510 | /// these two MIs be reordered during scheduling from memory dependency |
| 511 | /// point of view. |
| 512 | static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI, |
| 513 | MachineInstr *MIa, |
| 514 | MachineInstr *MIb) { |
| 515 | // Cover a trivial case - no edge is need to itself. |
| 516 | if (MIa == MIb) |
| 517 | return false; |
| 518 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 519 | // FIXME: Need to handle multiple memory operands to support all targets. |
| 520 | if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand()) |
| 521 | return true; |
| 522 | |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 523 | if (isUnsafeMemoryObject(MIa, MFI) || isUnsafeMemoryObject(MIb, MFI)) |
| 524 | return true; |
| 525 | |
| 526 | // If we are dealing with two "normal" loads, we do not need an edge |
| 527 | // between them - they could be reordered. |
| 528 | if (!MIa->mayStore() && !MIb->mayStore()) |
| 529 | return false; |
| 530 | |
| 531 | // To this point analysis is generic. From here on we do need AA. |
| 532 | if (!AA) |
| 533 | return true; |
| 534 | |
| 535 | MachineMemOperand *MMOa = *MIa->memoperands_begin(); |
| 536 | MachineMemOperand *MMOb = *MIb->memoperands_begin(); |
| 537 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 538 | if (!MMOa->getValue() || !MMOb->getValue()) |
| 539 | return true; |
| 540 | |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 541 | // The following interface to AA is fashioned after DAGCombiner::isAlias |
| 542 | // and operates with MachineMemOperand offset with some important |
| 543 | // assumptions: |
| 544 | // - LLVM fundamentally assumes flat address spaces. |
| 545 | // - MachineOperand offset can *only* result from legalization and |
| 546 | // cannot affect queries other than the trivial case of overlap |
| 547 | // checking. |
| 548 | // - These offsets never wrap and never step outside |
| 549 | // of allocated objects. |
| 550 | // - There should never be any negative offsets here. |
| 551 | // |
| 552 | // FIXME: Modify API to hide this math from "user" |
| 553 | // FIXME: Even before we go to AA we can reason locally about some |
| 554 | // memory objects. It can save compile time, and possibly catch some |
| 555 | // corner cases not currently covered. |
| 556 | |
| 557 | assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset"); |
| 558 | assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset"); |
| 559 | |
| 560 | int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset()); |
| 561 | int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset; |
| 562 | int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset; |
| 563 | |
| 564 | AliasAnalysis::AliasResult AAResult = AA->alias( |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 565 | AliasAnalysis::Location(MMOa->getValue(), Overlapa, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 566 | UseTBAA ? MMOa->getTBAAInfo() : nullptr), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 567 | AliasAnalysis::Location(MMOb->getValue(), Overlapb, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 568 | UseTBAA ? MMOb->getTBAAInfo() : nullptr)); |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 569 | |
| 570 | return (AAResult != AliasAnalysis::NoAlias); |
| 571 | } |
| 572 | |
| 573 | /// This recursive function iterates over chain deps of SUb looking for |
| 574 | /// "latest" node that needs a chain edge to SUa. |
| 575 | static unsigned |
| 576 | iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI, |
| 577 | SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth, |
| 578 | SmallPtrSet<const SUnit*, 16> &Visited) { |
| 579 | if (!SUa || !SUb || SUb == ExitSU) |
| 580 | return *Depth; |
| 581 | |
| 582 | // Remember visited nodes. |
| 583 | if (!Visited.insert(SUb)) |
| 584 | return *Depth; |
| 585 | // If there is _some_ dependency already in place, do not |
| 586 | // descend any further. |
| 587 | // TODO: Need to make sure that if that dependency got eliminated or ignored |
| 588 | // for any reason in the future, we would not violate DAG topology. |
| 589 | // Currently it does not happen, but makes an implicit assumption about |
| 590 | // future implementation. |
| 591 | // |
| 592 | // Independently, if we encounter node that is some sort of global |
| 593 | // object (like a call) we already have full set of dependencies to it |
| 594 | // and we can stop descending. |
| 595 | if (SUa->isSucc(SUb) || |
| 596 | isGlobalMemoryObject(AA, SUb->getInstr())) |
| 597 | return *Depth; |
| 598 | |
| 599 | // If we do need an edge, or we have exceeded depth budget, |
| 600 | // add that edge to the predecessors chain of SUb, |
| 601 | // and stop descending. |
| 602 | if (*Depth > 200 || |
| 603 | MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) { |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 604 | SUb->addPred(SDep(SUa, SDep::MayAliasMem)); |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 605 | return *Depth; |
| 606 | } |
| 607 | // Track current depth. |
| 608 | (*Depth)++; |
| 609 | // Iterate over chain dependencies only. |
| 610 | for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end(); |
| 611 | I != E; ++I) |
| 612 | if (I->isCtrl()) |
| 613 | iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited); |
| 614 | return *Depth; |
| 615 | } |
| 616 | |
| 617 | /// This function assumes that "downward" from SU there exist |
| 618 | /// tail/leaf of already constructed DAG. It iterates downward and |
| 619 | /// checks whether SU can be aliasing any node dominated |
| 620 | /// by it. |
| 621 | static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI, |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 622 | SUnit *SU, SUnit *ExitSU, std::set<SUnit *> &CheckList, |
| 623 | unsigned LatencyToLoad) { |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 624 | if (!SU) |
| 625 | return; |
| 626 | |
| 627 | SmallPtrSet<const SUnit*, 16> Visited; |
| 628 | unsigned Depth = 0; |
| 629 | |
| 630 | for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end(); |
| 631 | I != IE; ++I) { |
| 632 | if (SU == *I) |
| 633 | continue; |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 634 | if (MIsNeedChainEdge(AA, MFI, SU->getInstr(), (*I)->getInstr())) { |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 635 | SDep Dep(SU, SDep::MayAliasMem); |
| 636 | Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0); |
| 637 | (*I)->addPred(Dep); |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 638 | } |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 639 | // Now go through all the chain successors and iterate from them. |
| 640 | // Keep track of visited nodes. |
| 641 | for (SUnit::const_succ_iterator J = (*I)->Succs.begin(), |
| 642 | JE = (*I)->Succs.end(); J != JE; ++J) |
| 643 | if (J->isCtrl()) |
| 644 | iterateChainSucc (AA, MFI, SU, J->getSUnit(), |
| 645 | ExitSU, &Depth, Visited); |
| 646 | } |
| 647 | } |
| 648 | |
| 649 | /// Check whether two objects need a chain edge, if so, add it |
| 650 | /// otherwise remember the rejected SU. |
| 651 | static inline |
| 652 | void addChainDependency (AliasAnalysis *AA, const MachineFrameInfo *MFI, |
| 653 | SUnit *SUa, SUnit *SUb, |
| 654 | std::set<SUnit *> &RejectList, |
| 655 | unsigned TrueMemOrderLatency = 0, |
| 656 | bool isNormalMemory = false) { |
| 657 | // If this is a false dependency, |
| 658 | // do not add the edge, but rememeber the rejected node. |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 659 | if (!AA || MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) { |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 660 | SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier); |
| 661 | Dep.setLatency(TrueMemOrderLatency); |
| 662 | SUb->addPred(Dep); |
| 663 | } |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 664 | else { |
| 665 | // Duplicate entries should be ignored. |
| 666 | RejectList.insert(SUb); |
| 667 | DEBUG(dbgs() << "\tReject chain dep between SU(" |
| 668 | << SUa->NodeNum << ") and SU(" |
| 669 | << SUb->NodeNum << ")\n"); |
| 670 | } |
| 671 | } |
| 672 | |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 673 | /// Create an SUnit for each real instruction, numbered in top-down toplological |
| 674 | /// order. The instruction order A < B, implies that no edge exists from B to A. |
| 675 | /// |
| 676 | /// Map each real instruction to its SUnit. |
| 677 | /// |
Andrew Trick | 17d35e5 | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 678 | /// After initSUnits, the SUnits vector cannot be resized and the scheduler may |
| 679 | /// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs |
| 680 | /// instead of pointers. |
| 681 | /// |
| 682 | /// MachineScheduler relies on initSUnits numbering the nodes by their order in |
| 683 | /// the original instruction list. |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 684 | void ScheduleDAGInstrs::initSUnits() { |
| 685 | // We'll be allocating one SUnit for each real instruction in the region, |
| 686 | // which is contained within a basic block. |
Andrew Trick | d2763f6 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 687 | SUnits.reserve(NumRegionInstrs); |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 688 | |
Andrew Trick | 68675c6 | 2012-03-09 04:29:02 +0000 | [diff] [blame] | 689 | for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) { |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 690 | MachineInstr *MI = I; |
| 691 | if (MI->isDebugValue()) |
| 692 | continue; |
| 693 | |
Andrew Trick | 953be89 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 694 | SUnit *SU = newSUnit(MI); |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 695 | MISUnitMap[MI] = SU; |
| 696 | |
| 697 | SU->isCall = MI->isCall(); |
| 698 | SU->isCommutable = MI->isCommutable(); |
| 699 | |
| 700 | // Assign the Latency field of SU using target-provided information. |
Andrew Trick | 412cd2f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 701 | SU->Latency = SchedModel.computeInstrLatency(SU->getInstr()); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 702 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 703 | // If this SUnit uses a reserved or unbuffered resource, mark it as such. |
| 704 | // |
| 705 | // Reserved resources block an instruction from issuing and stall the |
| 706 | // entire pipeline. These are identified by BufferSize=0. |
| 707 | // |
| 708 | // Unbuffered resources prevent execution of subsequent instructions that |
| 709 | // require the same resources. This is used for in-order execution pipelines |
| 710 | // within an out-of-order core. These are identified by BufferSize=1. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 711 | if (SchedModel.hasInstrSchedModel()) { |
| 712 | const MCSchedClassDesc *SC = getSchedClass(SU); |
| 713 | for (TargetSchedModel::ProcResIter |
| 714 | PI = SchedModel.getWriteProcResBegin(SC), |
| 715 | PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 716 | switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) { |
| 717 | case 0: |
| 718 | SU->hasReservedResource = true; |
| 719 | break; |
| 720 | case 1: |
| 721 | SU->isUnbuffered = true; |
| 722 | break; |
| 723 | default: |
| 724 | break; |
| 725 | } |
| 726 | } |
| 727 | } |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 728 | } |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 729 | } |
| 730 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 731 | /// If RegPressure is non-null, compute register pressure as a side effect. The |
Andrew Trick | 006e1ab | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 732 | /// DAG builder is an efficient place to do it because it already visits |
| 733 | /// operands. |
| 734 | void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA, |
Andrew Trick | 4c60b8a | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 735 | RegPressureTracker *RPTracker, |
| 736 | PressureDiffs *PDiffs) { |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 737 | const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>(); |
| 738 | bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI |
| 739 | : ST.useAA(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 740 | AliasAnalysis *AAForDep = UseAA ? AA : nullptr; |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 741 | |
Andrew Trick | 40b52bb | 2013-09-04 21:00:02 +0000 | [diff] [blame] | 742 | MISUnitMap.clear(); |
| 743 | ScheduleDAG::clearDAG(); |
| 744 | |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 745 | // Create an SUnit for each real instruction. |
| 746 | initSUnits(); |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 747 | |
Andrew Trick | 4c60b8a | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 748 | if (PDiffs) |
| 749 | PDiffs->init(SUnits.size()); |
| 750 | |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 751 | // We build scheduling units by walking a block's instruction list from bottom |
| 752 | // to top. |
| 753 | |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 754 | // Remember where a generic side-effecting instruction is as we procede. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 755 | SUnit *BarrierChain = nullptr, *AliasChain = nullptr; |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 756 | |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 757 | // Memory references to specific known memory locations are tracked |
| 758 | // so that they can be given more precise dependencies. We track |
| 759 | // separately the known memory locations that may alias and those |
| 760 | // that are known not to alias |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 761 | MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs; |
| 762 | MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses; |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 763 | std::set<SUnit*> RejectMemNodes; |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 764 | |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 765 | // Remove any stale debug info; sometimes BuildSchedGraph is called again |
| 766 | // without emitting the info from the previous call. |
Devang Patel | cf4cc84 | 2011-06-02 20:07:12 +0000 | [diff] [blame] | 767 | DbgValues.clear(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 768 | FirstDbgValue = nullptr; |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 769 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 770 | assert(Defs.empty() && Uses.empty() && |
| 771 | "Only BuildGraph should update Defs/Uses"); |
Michael Ilseman | afe77f3 | 2013-01-21 18:18:53 +0000 | [diff] [blame] | 772 | Defs.setUniverse(TRI->getNumRegs()); |
| 773 | Uses.setUniverse(TRI->getNumRegs()); |
Andrew Trick | 9b66853 | 2011-05-06 21:52:52 +0000 | [diff] [blame] | 774 | |
Andrew Trick | 8ae3ac7 | 2012-02-22 21:59:00 +0000 | [diff] [blame] | 775 | assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs"); |
Andrew Trick | 9909363 | 2013-08-23 17:48:39 +0000 | [diff] [blame] | 776 | VRegUses.clear(); |
Andrew Trick | 8ae3ac7 | 2012-02-22 21:59:00 +0000 | [diff] [blame] | 777 | VRegDefs.setUniverse(MRI.getNumVirtRegs()); |
Andrew Trick | 9909363 | 2013-08-23 17:48:39 +0000 | [diff] [blame] | 778 | VRegUses.setUniverse(MRI.getNumVirtRegs()); |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 779 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 780 | // Model data dependencies between instructions being scheduled and the |
| 781 | // ExitSU. |
Andrew Trick | 953be89 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 782 | addSchedBarrierDeps(); |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 783 | |
Dan Gohman | 9e64bbb | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 784 | // Walk the list of instructions, from bottom moving up. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 785 | MachineInstr *DbgMI = nullptr; |
Andrew Trick | 68675c6 | 2012-03-09 04:29:02 +0000 | [diff] [blame] | 786 | for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin; |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 787 | MII != MIE; --MII) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 788 | MachineInstr *MI = std::prev(MII); |
Andrew Trick | 657b75b | 2012-12-01 01:22:49 +0000 | [diff] [blame] | 789 | if (MI && DbgMI) { |
| 790 | DbgValues.push_back(std::make_pair(DbgMI, MI)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 791 | DbgMI = nullptr; |
Devang Patel | cf4cc84 | 2011-06-02 20:07:12 +0000 | [diff] [blame] | 792 | } |
| 793 | |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 794 | if (MI->isDebugValue()) { |
Andrew Trick | 657b75b | 2012-12-01 01:22:49 +0000 | [diff] [blame] | 795 | DbgMI = MI; |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 796 | continue; |
| 797 | } |
Andrew Trick | 4c60b8a | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 798 | SUnit *SU = MISUnitMap[MI]; |
| 799 | assert(SU && "No SUnit mapped to this MI"); |
| 800 | |
Andrew Trick | 006e1ab | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 801 | if (RPTracker) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 802 | PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr; |
| 803 | RPTracker->recede(/*LiveUses=*/nullptr, PDiff); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 804 | assert(RPTracker->getPos() == std::prev(MII) && |
| 805 | "RPTracker can't find MI"); |
Andrew Trick | 006e1ab | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 806 | } |
Devang Patel | cf4cc84 | 2011-06-02 20:07:12 +0000 | [diff] [blame] | 807 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 808 | assert( |
| 809 | (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) && |
| 810 | "Cannot schedule terminators or labels!"); |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 811 | |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 812 | // Add register-based dependencies (data, anti, and output). |
Andrew Trick | 04f52e1 | 2012-12-18 20:53:01 +0000 | [diff] [blame] | 813 | bool HasVRegDef = false; |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 814 | for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) { |
| 815 | const MachineOperand &MO = MI->getOperand(j); |
| 816 | if (!MO.isReg()) continue; |
| 817 | unsigned Reg = MO.getReg(); |
| 818 | if (Reg == 0) continue; |
| 819 | |
Andrew Trick | 7ebcaf4 | 2012-01-14 02:17:15 +0000 | [diff] [blame] | 820 | if (TRI->isPhysicalRegister(Reg)) |
| 821 | addPhysRegDeps(SU, j); |
| 822 | else { |
| 823 | assert(!IsPostRA && "Virtual register encountered!"); |
Andrew Trick | 04f52e1 | 2012-12-18 20:53:01 +0000 | [diff] [blame] | 824 | if (MO.isDef()) { |
| 825 | HasVRegDef = true; |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 826 | addVRegDefDeps(SU, j); |
Andrew Trick | 04f52e1 | 2012-12-18 20:53:01 +0000 | [diff] [blame] | 827 | } |
Andrew Trick | 63d578b | 2012-02-23 03:16:24 +0000 | [diff] [blame] | 828 | else if (MO.readsReg()) // ignore undef operands |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 829 | addVRegUseDeps(SU, j); |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 830 | } |
| 831 | } |
Andrew Trick | 04f52e1 | 2012-12-18 20:53:01 +0000 | [diff] [blame] | 832 | // If we haven't seen any uses in this scheduling region, create a |
| 833 | // dependence edge to ExitSU to model the live-out latency. This is required |
| 834 | // for vreg defs with no in-region use, and prefetches with no vreg def. |
| 835 | // |
| 836 | // FIXME: NumDataSuccs would be more precise than NumSuccs here. This |
| 837 | // check currently relies on being called before adding chain deps. |
| 838 | if (SU->NumSuccs == 0 && SU->Latency > 1 |
| 839 | && (HasVRegDef || MI->mayLoad())) { |
| 840 | SDep Dep(SU, SDep::Artificial); |
| 841 | Dep.setLatency(SU->Latency - 1); |
| 842 | ExitSU.addPred(Dep); |
| 843 | } |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 844 | |
| 845 | // Add chain dependencies. |
David Goodwin | 7c9b1ac | 2009-11-02 17:06:28 +0000 | [diff] [blame] | 846 | // Chain dependencies used to enforce memory order should have |
| 847 | // latency of 0 (except for true dependency of Store followed by |
| 848 | // aliased Load... we estimate that with a single cycle of latency |
| 849 | // assuming the hardware will bypass) |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 850 | // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable |
| 851 | // after stack slots are lowered to actual addresses. |
| 852 | // TODO: Use an AliasAnalysis and do real alias-analysis queries, and |
| 853 | // produce more precise dependence information. |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 854 | unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0; |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 855 | if (isGlobalMemoryObject(AA, MI)) { |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 856 | // Be conservative with these and add dependencies on all memory |
| 857 | // references, even those that are known to not alias. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 858 | for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 859 | NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 860 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) { |
| 861 | I->second[i]->addPred(SDep(SU, SDep::Barrier)); |
| 862 | } |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 863 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 864 | for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 865 | NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) { |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 866 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) { |
| 867 | SDep Dep(SU, SDep::Barrier); |
| 868 | Dep.setLatency(TrueMemOrderLatency); |
| 869 | I->second[i]->addPred(Dep); |
| 870 | } |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 871 | } |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 872 | // Add SU to the barrier chain. |
| 873 | if (BarrierChain) |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 874 | BarrierChain->addPred(SDep(SU, SDep::Barrier)); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 875 | BarrierChain = SU; |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 876 | // This is a barrier event that acts as a pivotal node in the DAG, |
| 877 | // so it is safe to clear list of exposed nodes. |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 878 | adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, |
| 879 | TrueMemOrderLatency); |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 880 | RejectMemNodes.clear(); |
| 881 | NonAliasMemDefs.clear(); |
| 882 | NonAliasMemUses.clear(); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 883 | |
| 884 | // fall-through |
| 885 | new_alias_chain: |
| 886 | // Chain all possibly aliasing memory references though SU. |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 887 | if (AliasChain) { |
| 888 | unsigned ChainLatency = 0; |
| 889 | if (AliasChain->getInstr()->mayLoad()) |
| 890 | ChainLatency = TrueMemOrderLatency; |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 891 | addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes, |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 892 | ChainLatency); |
| 893 | } |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 894 | AliasChain = SU; |
| 895 | for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k) |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 896 | addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes, |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 897 | TrueMemOrderLatency); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 898 | for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 899 | AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) { |
| 900 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) |
| 901 | addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes); |
| 902 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 903 | for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 904 | AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) { |
| 905 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 906 | addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes, |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 907 | TrueMemOrderLatency); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 908 | } |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 909 | adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, |
| 910 | TrueMemOrderLatency); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 911 | PendingLoads.clear(); |
| 912 | AliasMemDefs.clear(); |
| 913 | AliasMemUses.clear(); |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 914 | } else if (MI->mayStore()) { |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 915 | UnderlyingObjectsVector Objs; |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 916 | getUnderlyingObjectsForInstr(MI, MFI, Objs); |
| 917 | |
| 918 | if (Objs.empty()) { |
| 919 | // Treat all other stores conservatively. |
| 920 | goto new_alias_chain; |
| 921 | } |
| 922 | |
| 923 | bool MayAlias = false; |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 924 | for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end(); |
| 925 | K != KE; ++K) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 926 | ValueType V = K->getPointer(); |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 927 | bool ThisMayAlias = K->getInt(); |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 928 | if (ThisMayAlias) |
| 929 | MayAlias = true; |
| 930 | |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 931 | // A store to a specific PseudoSourceValue. Add precise dependencies. |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 932 | // Record the def in MemDefs, first adding a dep if there is |
| 933 | // an existing def. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 934 | MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 935 | ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 936 | MapVector<ValueType, std::vector<SUnit *> >::iterator IE = |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 937 | ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end()); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 938 | if (I != IE) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 939 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) |
| 940 | addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes, |
| 941 | 0, true); |
| 942 | |
| 943 | // If we're not using AA, then we only need one store per object. |
| 944 | if (!AAForDep) |
| 945 | I->second.clear(); |
| 946 | I->second.push_back(SU); |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 947 | } else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 948 | if (ThisMayAlias) { |
| 949 | if (!AAForDep) |
| 950 | AliasMemDefs[V].clear(); |
| 951 | AliasMemDefs[V].push_back(SU); |
| 952 | } else { |
| 953 | if (!AAForDep) |
| 954 | NonAliasMemDefs[V].clear(); |
| 955 | NonAliasMemDefs[V].push_back(SU); |
| 956 | } |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 957 | } |
| 958 | // Handle the uses in MemUses, if there are any. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 959 | MapVector<ValueType, std::vector<SUnit *> >::iterator J = |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 960 | ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 961 | MapVector<ValueType, std::vector<SUnit *> >::iterator JE = |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 962 | ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end()); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 963 | if (J != JE) { |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 964 | for (unsigned i = 0, e = J->second.size(); i != e; ++i) |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 965 | addChainDependency(AAForDep, MFI, SU, J->second[i], RejectMemNodes, |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 966 | TrueMemOrderLatency, true); |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 967 | J->second.clear(); |
| 968 | } |
David Goodwin | 7c9b1ac | 2009-11-02 17:06:28 +0000 | [diff] [blame] | 969 | } |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 970 | if (MayAlias) { |
| 971 | // Add dependencies from all the PendingLoads, i.e. loads |
| 972 | // with no underlying object. |
| 973 | for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k) |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 974 | addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes, |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 975 | TrueMemOrderLatency); |
| 976 | // Add dependence on alias chain, if needed. |
| 977 | if (AliasChain) |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 978 | addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes); |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 979 | // But we also should check dependent instructions for the |
| 980 | // SU in question. |
| 981 | adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, |
| 982 | TrueMemOrderLatency); |
| 983 | } |
| 984 | // Add dependence on barrier chain, if needed. |
| 985 | // There is no point to check aliasing on barrier event. Even if |
| 986 | // SU and barrier _could_ be reordered, they should not. In addition, |
| 987 | // we have lost all RejectMemNodes below barrier. |
| 988 | if (BarrierChain) |
| 989 | BarrierChain->addPred(SDep(SU, SDep::Barrier)); |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 990 | } else if (MI->mayLoad()) { |
David Goodwin | a9e6107 | 2009-11-03 20:15:00 +0000 | [diff] [blame] | 991 | bool MayAlias = true; |
Dan Gohman | a70dca1 | 2009-10-09 23:27:56 +0000 | [diff] [blame] | 992 | if (MI->isInvariantLoad(AA)) { |
Dan Gohman | 6a9041e | 2008-12-04 01:35:46 +0000 | [diff] [blame] | 993 | // Invariant load, no chain dependencies needed! |
David Goodwin | 5be870a | 2009-11-05 00:16:44 +0000 | [diff] [blame] | 994 | } else { |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 995 | UnderlyingObjectsVector Objs; |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 996 | getUnderlyingObjectsForInstr(MI, MFI, Objs); |
| 997 | |
| 998 | if (Objs.empty()) { |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 999 | // A load with no underlying object. Depend on all |
| 1000 | // potentially aliasing stores. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1001 | for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 1002 | AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1003 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) |
| 1004 | addChainDependency(AAForDep, MFI, SU, I->second[i], |
| 1005 | RejectMemNodes); |
Andrew Trick | f405b1a | 2011-05-05 19:24:06 +0000 | [diff] [blame] | 1006 | |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 1007 | PendingLoads.push_back(SU); |
| 1008 | MayAlias = true; |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 1009 | } else { |
| 1010 | MayAlias = false; |
| 1011 | } |
| 1012 | |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 1013 | for (UnderlyingObjectsVector::iterator |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 1014 | J = Objs.begin(), JE = Objs.end(); J != JE; ++J) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1015 | ValueType V = J->getPointer(); |
Benjamin Kramer | 04d5613 | 2013-06-29 18:41:17 +0000 | [diff] [blame] | 1016 | bool ThisMayAlias = J->getInt(); |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 1017 | |
| 1018 | if (ThisMayAlias) |
| 1019 | MayAlias = true; |
| 1020 | |
| 1021 | // A load from a specific PseudoSourceValue. Add precise dependencies. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1022 | MapVector<ValueType, std::vector<SUnit *> >::iterator I = |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 1023 | ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1024 | MapVector<ValueType, std::vector<SUnit *> >::iterator IE = |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 1025 | ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end()); |
| 1026 | if (I != IE) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1027 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) |
| 1028 | addChainDependency(AAForDep, MFI, SU, I->second[i], |
| 1029 | RejectMemNodes, 0, true); |
Hal Finkel | f218310 | 2012-12-10 18:49:16 +0000 | [diff] [blame] | 1030 | if (ThisMayAlias) |
| 1031 | AliasMemUses[V].push_back(SU); |
| 1032 | else |
| 1033 | NonAliasMemUses[V].push_back(SU); |
David Goodwin | a9e6107 | 2009-11-03 20:15:00 +0000 | [diff] [blame] | 1034 | } |
Andrew Trick | eb05b97 | 2012-05-15 18:59:41 +0000 | [diff] [blame] | 1035 | if (MayAlias) |
Andrew Trick | 1c2d3c5 | 2012-06-13 02:39:03 +0000 | [diff] [blame] | 1036 | adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, /*Latency=*/0); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 1037 | // Add dependencies on alias and barrier chains, if needed. |
| 1038 | if (MayAlias && AliasChain) |
Hal Finkel | 738073c | 2013-08-29 03:25:05 +0000 | [diff] [blame] | 1039 | addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes); |
David Goodwin | 980d494 | 2009-11-09 19:22:17 +0000 | [diff] [blame] | 1040 | if (BarrierChain) |
Andrew Trick | a78d322 | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 1041 | BarrierChain->addPred(SDep(SU, SDep::Barrier)); |
Andrew Trick | f405b1a | 2011-05-05 19:24:06 +0000 | [diff] [blame] | 1042 | } |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1043 | } |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1044 | } |
Andrew Trick | 657b75b | 2012-12-01 01:22:49 +0000 | [diff] [blame] | 1045 | if (DbgMI) |
| 1046 | FirstDbgValue = DbgMI; |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 1047 | |
Andrew Trick | 81a682a | 2012-02-23 01:52:38 +0000 | [diff] [blame] | 1048 | Defs.clear(); |
| 1049 | Uses.clear(); |
Andrew Trick | 3c58ba8 | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 1050 | VRegDefs.clear(); |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 1051 | PendingLoads.clear(); |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1054 | /// \brief Initialize register live-range state for updating kills. |
| 1055 | void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) { |
| 1056 | // Start with no live registers. |
| 1057 | LiveRegs.reset(); |
| 1058 | |
| 1059 | // Examine the live-in regs of all successors. |
| 1060 | for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(), |
| 1061 | SE = BB->succ_end(); SI != SE; ++SI) { |
| 1062 | for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(), |
| 1063 | E = (*SI)->livein_end(); I != E; ++I) { |
| 1064 | unsigned Reg = *I; |
| 1065 | // Repeat, for reg and all subregs. |
| 1066 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 1067 | SubRegs.isValid(); ++SubRegs) |
| 1068 | LiveRegs.set(*SubRegs); |
| 1069 | } |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) { |
| 1074 | // Setting kill flag... |
| 1075 | if (!MO.isKill()) { |
| 1076 | MO.setIsKill(true); |
| 1077 | return false; |
| 1078 | } |
| 1079 | |
| 1080 | // If MO itself is live, clear the kill flag... |
| 1081 | if (LiveRegs.test(MO.getReg())) { |
| 1082 | MO.setIsKill(false); |
| 1083 | return false; |
| 1084 | } |
| 1085 | |
| 1086 | // If any subreg of MO is live, then create an imp-def for that |
| 1087 | // subreg and keep MO marked as killed. |
| 1088 | MO.setIsKill(false); |
| 1089 | bool AllDead = true; |
| 1090 | const unsigned SuperReg = MO.getReg(); |
| 1091 | MachineInstrBuilder MIB(MF, MI); |
| 1092 | for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) { |
| 1093 | if (LiveRegs.test(*SubRegs)) { |
| 1094 | MIB.addReg(*SubRegs, RegState::ImplicitDefine); |
| 1095 | AllDead = false; |
| 1096 | } |
| 1097 | } |
| 1098 | |
| 1099 | if(AllDead) |
| 1100 | MO.setIsKill(true); |
| 1101 | return false; |
| 1102 | } |
| 1103 | |
| 1104 | // FIXME: Reuse the LivePhysRegs utility for this. |
| 1105 | void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) { |
| 1106 | DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n'); |
| 1107 | |
| 1108 | LiveRegs.resize(TRI->getNumRegs()); |
| 1109 | BitVector killedRegs(TRI->getNumRegs()); |
| 1110 | |
| 1111 | startBlockForKills(MBB); |
| 1112 | |
| 1113 | // Examine block from end to start... |
| 1114 | unsigned Count = MBB->size(); |
| 1115 | for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin(); |
| 1116 | I != E; --Count) { |
| 1117 | MachineInstr *MI = --I; |
| 1118 | if (MI->isDebugValue()) |
| 1119 | continue; |
| 1120 | |
| 1121 | // Update liveness. Registers that are defed but not used in this |
| 1122 | // instruction are now dead. Mark register and all subregs as they |
| 1123 | // are completely defined. |
| 1124 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1125 | MachineOperand &MO = MI->getOperand(i); |
| 1126 | if (MO.isRegMask()) |
| 1127 | LiveRegs.clearBitsNotInMask(MO.getRegMask()); |
| 1128 | if (!MO.isReg()) continue; |
| 1129 | unsigned Reg = MO.getReg(); |
| 1130 | if (Reg == 0) continue; |
| 1131 | if (!MO.isDef()) continue; |
| 1132 | // Ignore two-addr defs. |
| 1133 | if (MI->isRegTiedToUseOperand(i)) continue; |
| 1134 | |
| 1135 | // Repeat for reg and all subregs. |
| 1136 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 1137 | SubRegs.isValid(); ++SubRegs) |
| 1138 | LiveRegs.reset(*SubRegs); |
| 1139 | } |
| 1140 | |
| 1141 | // Examine all used registers and set/clear kill flag. When a |
| 1142 | // register is used multiple times we only set the kill flag on |
| 1143 | // the first use. Don't set kill flags on undef operands. |
| 1144 | killedRegs.reset(); |
| 1145 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1146 | MachineOperand &MO = MI->getOperand(i); |
| 1147 | if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue; |
| 1148 | unsigned Reg = MO.getReg(); |
| 1149 | if ((Reg == 0) || MRI.isReserved(Reg)) continue; |
| 1150 | |
| 1151 | bool kill = false; |
| 1152 | if (!killedRegs.test(Reg)) { |
| 1153 | kill = true; |
| 1154 | // A register is not killed if any subregs are live... |
| 1155 | for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) { |
| 1156 | if (LiveRegs.test(*SubRegs)) { |
| 1157 | kill = false; |
| 1158 | break; |
| 1159 | } |
| 1160 | } |
| 1161 | |
| 1162 | // If subreg is not live, then register is killed if it became |
| 1163 | // live in this instruction |
| 1164 | if (kill) |
| 1165 | kill = !LiveRegs.test(Reg); |
| 1166 | } |
| 1167 | |
| 1168 | if (MO.isKill() != kill) { |
| 1169 | DEBUG(dbgs() << "Fixing " << MO << " in "); |
| 1170 | // Warning: toggleKillFlag may invalidate MO. |
| 1171 | toggleKillFlag(MI, MO); |
| 1172 | DEBUG(MI->dump()); |
| 1173 | } |
| 1174 | |
| 1175 | killedRegs.set(Reg); |
| 1176 | } |
| 1177 | |
| 1178 | // Mark any used register (that is not using undef) and subregs as |
| 1179 | // now live... |
| 1180 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1181 | MachineOperand &MO = MI->getOperand(i); |
| 1182 | if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue; |
| 1183 | unsigned Reg = MO.getReg(); |
| 1184 | if ((Reg == 0) || MRI.isReserved(Reg)) continue; |
| 1185 | |
| 1186 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 1187 | SubRegs.isValid(); ++SubRegs) |
| 1188 | LiveRegs.set(*SubRegs); |
| 1189 | } |
| 1190 | } |
| 1191 | } |
| 1192 | |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1193 | void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const { |
Manman Ren | b720be6 | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 1194 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1195 | SU->getInstr()->dump(); |
Manman Ren | 77e300e | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 1196 | #endif |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const { |
| 1200 | std::string s; |
| 1201 | raw_string_ostream oss(s); |
Dan Gohman | 9e64bbb | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 1202 | if (SU == &EntrySU) |
| 1203 | oss << "<entry>"; |
| 1204 | else if (SU == &ExitSU) |
| 1205 | oss << "<exit>"; |
| 1206 | else |
Andrew Trick | c6ada8e | 2013-01-25 07:45:25 +0000 | [diff] [blame] | 1207 | SU->getInstr()->print(oss, &TM, /*SkipOpers=*/true); |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 1208 | return oss.str(); |
| 1209 | } |
| 1210 | |
Andrew Trick | 56b94c5 | 2012-03-07 00:18:22 +0000 | [diff] [blame] | 1211 | /// Return the basic block label. It is not necessarilly unique because a block |
| 1212 | /// contains multiple scheduling regions. But it is fine for visualization. |
| 1213 | std::string ScheduleDAGInstrs::getDAGName() const { |
| 1214 | return "dag." + BB->getFullName(); |
| 1215 | } |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1216 | |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1217 | //===----------------------------------------------------------------------===// |
| 1218 | // SchedDFSResult Implementation |
| 1219 | //===----------------------------------------------------------------------===// |
| 1220 | |
| 1221 | namespace llvm { |
| 1222 | /// \brief Internal state used to compute SchedDFSResult. |
| 1223 | class SchedDFSImpl { |
| 1224 | SchedDFSResult &R; |
| 1225 | |
| 1226 | /// Join DAG nodes into equivalence classes by their subtree. |
| 1227 | IntEqClasses SubtreeClasses; |
| 1228 | /// List PredSU, SuccSU pairs that represent data edges between subtrees. |
| 1229 | std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs; |
| 1230 | |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1231 | struct RootData { |
| 1232 | unsigned NodeID; |
| 1233 | unsigned ParentNodeID; // Parent node (member of the parent subtree). |
| 1234 | unsigned SubInstrCount; // Instr count in this tree only, not children. |
| 1235 | |
| 1236 | RootData(unsigned id): NodeID(id), |
| 1237 | ParentNodeID(SchedDFSResult::InvalidSubtreeID), |
| 1238 | SubInstrCount(0) {} |
| 1239 | |
| 1240 | unsigned getSparseSetIndex() const { return NodeID; } |
| 1241 | }; |
| 1242 | |
| 1243 | SparseSet<RootData> RootSet; |
| 1244 | |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1245 | public: |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1246 | SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) { |
| 1247 | RootSet.setUniverse(R.DFSNodeData.size()); |
| 1248 | } |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1249 | |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1250 | /// Return true if this node been visited by the DFS traversal. |
| 1251 | /// |
| 1252 | /// During visitPostorderNode the Node's SubtreeID is assigned to the Node |
| 1253 | /// ID. Later, SubtreeID is updated but remains valid. |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1254 | bool isVisited(const SUnit *SU) const { |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1255 | return R.DFSNodeData[SU->NodeNum].SubtreeID |
| 1256 | != SchedDFSResult::InvalidSubtreeID; |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1257 | } |
| 1258 | |
| 1259 | /// Initialize this node's instruction count. We don't need to flag the node |
| 1260 | /// visited until visitPostorder because the DAG cannot have cycles. |
| 1261 | void visitPreorder(const SUnit *SU) { |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1262 | R.DFSNodeData[SU->NodeNum].InstrCount = |
| 1263 | SU->getInstr()->isTransient() ? 0 : 1; |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | /// Called once for each node after all predecessors are visited. Revisit this |
| 1267 | /// node's predecessors and potentially join them now that we know the ILP of |
| 1268 | /// the other predecessors. |
| 1269 | void visitPostorderNode(const SUnit *SU) { |
| 1270 | // Mark this node as the root of a subtree. It may be joined with its |
| 1271 | // successors later. |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1272 | R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum; |
| 1273 | RootData RData(SU->NodeNum); |
| 1274 | RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1; |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1275 | |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1276 | // If any predecessors are still in their own subtree, they either cannot be |
| 1277 | // joined or are large enough to remain separate. If this parent node's |
| 1278 | // total instruction count is not greater than a child subtree by at least |
| 1279 | // the subtree limit, then try to join it now since splitting subtrees is |
| 1280 | // only useful if multiple high-pressure paths are possible. |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1281 | unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount; |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1282 | for (SUnit::const_pred_iterator |
| 1283 | PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) { |
| 1284 | if (PI->getKind() != SDep::Data) |
| 1285 | continue; |
| 1286 | unsigned PredNum = PI->getSUnit()->NodeNum; |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1287 | if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit) |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1288 | joinPredSubtree(*PI, SU, /*CheckLimit=*/false); |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1289 | |
| 1290 | // Either link or merge the TreeData entry from the child to the parent. |
Andrew Trick | a5a73ad | 2013-01-25 06:52:30 +0000 | [diff] [blame] | 1291 | if (R.DFSNodeData[PredNum].SubtreeID == PredNum) { |
| 1292 | // If the predecessor's parent is invalid, this is a tree edge and the |
| 1293 | // current node is the parent. |
| 1294 | if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID) |
| 1295 | RootSet[PredNum].ParentNodeID = SU->NodeNum; |
| 1296 | } |
| 1297 | else if (RootSet.count(PredNum)) { |
| 1298 | // The predecessor is not a root, but is still in the root set. This |
| 1299 | // must be the new parent that it was just joined to. Note that |
| 1300 | // RootSet[PredNum].ParentNodeID may either be invalid or may still be |
| 1301 | // set to the original parent. |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1302 | RData.SubInstrCount += RootSet[PredNum].SubInstrCount; |
| 1303 | RootSet.erase(PredNum); |
| 1304 | } |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1305 | } |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1306 | RootSet[SU->NodeNum] = RData; |
| 1307 | } |
| 1308 | |
| 1309 | /// Called once for each tree edge after calling visitPostOrderNode on the |
| 1310 | /// predecessor. Increment the parent node's instruction count and |
| 1311 | /// preemptively join this subtree to its parent's if it is small enough. |
| 1312 | void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) { |
| 1313 | R.DFSNodeData[Succ->NodeNum].InstrCount |
| 1314 | += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount; |
| 1315 | joinPredSubtree(PredDep, Succ); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1318 | /// Add a connection for cross edges. |
| 1319 | void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) { |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1320 | ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ)); |
| 1321 | } |
| 1322 | |
| 1323 | /// Set each node's subtree ID to the representative ID and record connections |
| 1324 | /// between trees. |
| 1325 | void finalize() { |
| 1326 | SubtreeClasses.compress(); |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1327 | R.DFSTreeData.resize(SubtreeClasses.getNumClasses()); |
| 1328 | assert(SubtreeClasses.getNumClasses() == RootSet.size() |
| 1329 | && "number of roots should match trees"); |
| 1330 | for (SparseSet<RootData>::const_iterator |
| 1331 | RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) { |
| 1332 | unsigned TreeID = SubtreeClasses[RI->NodeID]; |
| 1333 | if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID) |
| 1334 | R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID]; |
| 1335 | R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount; |
Andrew Trick | a5a73ad | 2013-01-25 06:52:30 +0000 | [diff] [blame] | 1336 | // Note that SubInstrCount may be greater than InstrCount if we joined |
| 1337 | // subtrees across a cross edge. InstrCount will be attributed to the |
| 1338 | // original parent, while SubInstrCount will be attributed to the joined |
| 1339 | // parent. |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1340 | } |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1341 | R.SubtreeConnections.resize(SubtreeClasses.getNumClasses()); |
| 1342 | R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses()); |
| 1343 | DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n"); |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1344 | for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) { |
| 1345 | R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx]; |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1346 | DEBUG(dbgs() << " SU(" << Idx << ") in tree " |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1347 | << R.DFSNodeData[Idx].SubtreeID << '\n'); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1348 | } |
| 1349 | for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator |
| 1350 | I = ConnectionPairs.begin(), E = ConnectionPairs.end(); |
| 1351 | I != E; ++I) { |
| 1352 | unsigned PredTree = SubtreeClasses[I->first->NodeNum]; |
| 1353 | unsigned SuccTree = SubtreeClasses[I->second->NodeNum]; |
| 1354 | if (PredTree == SuccTree) |
| 1355 | continue; |
| 1356 | unsigned Depth = I->first->getDepth(); |
| 1357 | addConnection(PredTree, SuccTree, Depth); |
| 1358 | addConnection(SuccTree, PredTree, Depth); |
| 1359 | } |
| 1360 | } |
| 1361 | |
| 1362 | protected: |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1363 | /// Join the predecessor subtree with the successor that is its DFS |
| 1364 | /// parent. Apply some heuristics before joining. |
| 1365 | bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ, |
| 1366 | bool CheckLimit = true) { |
| 1367 | assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges"); |
| 1368 | |
| 1369 | // Check if the predecessor is already joined. |
| 1370 | const SUnit *PredSU = PredDep.getSUnit(); |
| 1371 | unsigned PredNum = PredSU->NodeNum; |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1372 | if (R.DFSNodeData[PredNum].SubtreeID != PredNum) |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1373 | return false; |
Andrew Trick | b12a771 | 2013-01-25 00:12:57 +0000 | [diff] [blame] | 1374 | |
| 1375 | // Four is the magic number of successors before a node is considered a |
| 1376 | // pinch point. |
| 1377 | unsigned NumDataSucs = 0; |
Andrew Trick | b12a771 | 2013-01-25 00:12:57 +0000 | [diff] [blame] | 1378 | for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(), |
| 1379 | SE = PredSU->Succs.end(); SI != SE; ++SI) { |
| 1380 | if (SI->getKind() == SDep::Data) { |
| 1381 | if (++NumDataSucs >= 4) |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1382 | return false; |
Andrew Trick | b12a771 | 2013-01-25 00:12:57 +0000 | [diff] [blame] | 1383 | } |
| 1384 | } |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1385 | if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit) |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1386 | return false; |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1387 | R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum; |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1388 | SubtreeClasses.join(Succ->NodeNum, PredNum); |
| 1389 | return true; |
Andrew Trick | b12a771 | 2013-01-25 00:12:57 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1392 | /// Called by finalize() to record a connection between trees. |
| 1393 | void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) { |
| 1394 | if (!Depth) |
| 1395 | return; |
| 1396 | |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1397 | do { |
| 1398 | SmallVectorImpl<SchedDFSResult::Connection> &Connections = |
| 1399 | R.SubtreeConnections[FromTree]; |
| 1400 | for (SmallVectorImpl<SchedDFSResult::Connection>::iterator |
| 1401 | I = Connections.begin(), E = Connections.end(); I != E; ++I) { |
| 1402 | if (I->TreeID == ToTree) { |
| 1403 | I->Level = std::max(I->Level, Depth); |
| 1404 | return; |
| 1405 | } |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1406 | } |
Andrew Trick | 988d06b | 2013-01-25 06:52:27 +0000 | [diff] [blame] | 1407 | Connections.push_back(SchedDFSResult::Connection(ToTree, Depth)); |
| 1408 | FromTree = R.DFSTreeData[FromTree].ParentTreeID; |
| 1409 | } while (FromTree != SchedDFSResult::InvalidSubtreeID); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1410 | } |
| 1411 | }; |
| 1412 | } // namespace llvm |
| 1413 | |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1414 | namespace { |
| 1415 | /// \brief Manage the stack used by a reverse depth-first search over the DAG. |
| 1416 | class SchedDAGReverseDFS { |
| 1417 | std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack; |
| 1418 | public: |
| 1419 | bool isComplete() const { return DFSStack.empty(); } |
| 1420 | |
| 1421 | void follow(const SUnit *SU) { |
| 1422 | DFSStack.push_back(std::make_pair(SU, SU->Preds.begin())); |
| 1423 | } |
| 1424 | void advance() { ++DFSStack.back().second; } |
| 1425 | |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1426 | const SDep *backtrack() { |
| 1427 | DFSStack.pop_back(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1428 | return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1429 | } |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1430 | |
| 1431 | const SUnit *getCurr() const { return DFSStack.back().first; } |
| 1432 | |
| 1433 | SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; } |
| 1434 | |
| 1435 | SUnit::const_pred_iterator getPredEnd() const { |
| 1436 | return getCurr()->Preds.end(); |
| 1437 | } |
| 1438 | }; |
| 1439 | } // anonymous |
| 1440 | |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1441 | static bool hasDataSucc(const SUnit *SU) { |
| 1442 | for (SUnit::const_succ_iterator |
| 1443 | SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) { |
Andrew Trick | a5a73ad | 2013-01-25 06:52:30 +0000 | [diff] [blame] | 1444 | if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode()) |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1445 | return true; |
| 1446 | } |
| 1447 | return false; |
| 1448 | } |
| 1449 | |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1450 | /// Compute an ILP metric for all nodes in the subDAG reachable via depth-first |
| 1451 | /// search from this root. |
Andrew Trick | 4e1fb18 | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1452 | void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) { |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1453 | if (!IsBottomUp) |
| 1454 | llvm_unreachable("Top-down ILP metric is unimplemnted"); |
| 1455 | |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1456 | SchedDFSImpl Impl(*this); |
Andrew Trick | 4e1fb18 | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1457 | for (ArrayRef<SUnit>::const_iterator |
| 1458 | SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) { |
| 1459 | const SUnit *SU = &*SI; |
| 1460 | if (Impl.isVisited(SU) || hasDataSucc(SU)) |
| 1461 | continue; |
| 1462 | |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1463 | SchedDAGReverseDFS DFS; |
Andrew Trick | 4e1fb18 | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1464 | Impl.visitPreorder(SU); |
| 1465 | DFS.follow(SU); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1466 | for (;;) { |
| 1467 | // Traverse the leftmost path as far as possible. |
| 1468 | while (DFS.getPred() != DFS.getPredEnd()) { |
| 1469 | const SDep &PredDep = *DFS.getPred(); |
| 1470 | DFS.advance(); |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1471 | // Ignore non-data edges. |
Andrew Trick | a5a73ad | 2013-01-25 06:52:30 +0000 | [diff] [blame] | 1472 | if (PredDep.getKind() != SDep::Data |
| 1473 | || PredDep.getSUnit()->isBoundaryNode()) { |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1474 | continue; |
Andrew Trick | a5a73ad | 2013-01-25 06:52:30 +0000 | [diff] [blame] | 1475 | } |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1476 | // An already visited edge is a cross edge, assuming an acyclic DAG. |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1477 | if (Impl.isVisited(PredDep.getSUnit())) { |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1478 | Impl.visitCrossEdge(PredDep, DFS.getCurr()); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1479 | continue; |
| 1480 | } |
| 1481 | Impl.visitPreorder(PredDep.getSUnit()); |
| 1482 | DFS.follow(PredDep.getSUnit()); |
| 1483 | } |
| 1484 | // Visit the top of the stack in postorder and backtrack. |
| 1485 | const SUnit *Child = DFS.getCurr(); |
| 1486 | const SDep *PredDep = DFS.backtrack(); |
Andrew Trick | bfb8223 | 2013-01-25 06:02:44 +0000 | [diff] [blame] | 1487 | Impl.visitPostorderNode(Child); |
| 1488 | if (PredDep) |
| 1489 | Impl.visitPostorderEdge(*PredDep, DFS.getCurr()); |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1490 | if (DFS.isComplete()) |
| 1491 | break; |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1492 | } |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1493 | } |
| 1494 | Impl.finalize(); |
| 1495 | } |
| 1496 | |
| 1497 | /// The root of the given SubtreeID was just scheduled. For all subtrees |
| 1498 | /// connected to this tree, record the depth of the connection so that the |
| 1499 | /// nearest connected subtrees can be prioritized. |
| 1500 | void SchedDFSResult::scheduleTree(unsigned SubtreeID) { |
| 1501 | for (SmallVectorImpl<Connection>::const_iterator |
| 1502 | I = SubtreeConnections[SubtreeID].begin(), |
| 1503 | E = SubtreeConnections[SubtreeID].end(); I != E; ++I) { |
| 1504 | SubtreeConnectLevels[I->TreeID] = |
| 1505 | std::max(SubtreeConnectLevels[I->TreeID], I->Level); |
| 1506 | DEBUG(dbgs() << " Tree: " << I->TreeID |
| 1507 | << " @" << SubtreeConnectLevels[I->TreeID] << '\n'); |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1508 | } |
| 1509 | } |
| 1510 | |
| 1511 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| 1512 | void ILPValue::print(raw_ostream &OS) const { |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1513 | OS << InstrCount << " / " << Length << " = "; |
| 1514 | if (!Length) |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1515 | OS << "BADILP"; |
Andrew Trick | 8b1496c | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 1516 | else |
| 1517 | OS << format("%g", ((double)InstrCount / Length)); |
Andrew Trick | 1e94e98 | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
| 1520 | void ILPValue::dump() const { |
| 1521 | dbgs() << *this << '\n'; |
| 1522 | } |
| 1523 | |
| 1524 | namespace llvm { |
| 1525 | |
| 1526 | raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) { |
| 1527 | Val.print(OS); |
| 1528 | return OS; |
| 1529 | } |
| 1530 | |
| 1531 | } // namespace llvm |
| 1532 | #endif // !NDEBUG || LLVM_ENABLE_DUMP |