Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1 | //===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===// |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This implements the SelectionDAGISel class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/SelectionDAGISel.h" |
Dan Gohman | 483377c | 2009-02-06 17:22:58 +0000 | [diff] [blame] | 15 | #include "ScheduleDAGSDNodes.h" |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 16 | #include "SelectionDAGBuilder.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/PostOrderIterator.h" |
| 18 | #include "llvm/ADT/Statistic.h" |
Bill Wendling | e38859d | 2012-06-28 00:05:13 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/AliasAnalysis.h" |
| 20 | #include "llvm/Analysis/BranchProbabilityInfo.h" |
Nick Lewycky | 0b68245 | 2013-07-27 01:24:00 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/CFG.h" |
Dan Gohman | 697284f | 2008-08-19 22:33:34 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/FastISel.h" |
Bill Wendling | e38859d | 2012-06-28 00:05:13 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/GCMetadata.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/GCStrategy.h" |
Bill Wendling | 95f6ebc | 2010-05-14 21:14:32 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 7e105f0 | 2009-01-15 22:18:12 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/ScheduleHazardRecognizer.h" |
Jim Laskey | 29e635d | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/SchedulerRegistry.h" |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/SelectionDAG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 34 | #include "llvm/IR/Constants.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 35 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 36 | #include "llvm/IR/Function.h" |
| 37 | #include "llvm/IR/InlineAsm.h" |
| 38 | #include "llvm/IR/Instructions.h" |
| 39 | #include "llvm/IR/IntrinsicInst.h" |
| 40 | #include "llvm/IR/Intrinsics.h" |
| 41 | #include "llvm/IR/LLVMContext.h" |
| 42 | #include "llvm/IR/Module.h" |
Chris Lattner | 3d27be1 | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 43 | #include "llvm/Support/Compiler.h" |
Evan Cheng | 0711d68 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 44 | #include "llvm/Support/Debug.h" |
Torok Edwin | ccb29cd | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 45 | #include "llvm/Support/ErrorHandling.h" |
Evan Cheng | 0711d68 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 46 | #include "llvm/Support/Timer.h" |
Daniel Dunbar | 0dd5e1e | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 47 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 48 | #include "llvm/Target/TargetInstrInfo.h" |
| 49 | #include "llvm/Target/TargetIntrinsicInfo.h" |
| 50 | #include "llvm/Target/TargetLibraryInfo.h" |
| 51 | #include "llvm/Target/TargetLowering.h" |
| 52 | #include "llvm/Target/TargetMachine.h" |
| 53 | #include "llvm/Target/TargetOptions.h" |
| 54 | #include "llvm/Target/TargetRegisterInfo.h" |
| 55 | #include "llvm/Target/TargetSubtargetInfo.h" |
| 56 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Jeff Cohen | 83c22e0 | 2006-02-24 02:52:40 +0000 | [diff] [blame] | 57 | #include <algorithm> |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 58 | using namespace llvm; |
| 59 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 60 | #define DEBUG_TYPE "isel" |
| 61 | |
Nadav Rotem | c29095f | 2013-02-27 22:52:54 +0000 | [diff] [blame] | 62 | STATISTIC(NumFastIselFailures, "Number of instructions fast isel failed on"); |
| 63 | STATISTIC(NumFastIselSuccess, "Number of instructions fast isel selected"); |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 64 | STATISTIC(NumFastIselBlocks, "Number of blocks selected entirely by fast isel"); |
| 65 | STATISTIC(NumDAGBlocks, "Number of blocks selected using DAG"); |
| 66 | STATISTIC(NumDAGIselRetries,"Number of times dag isel has to try another path"); |
Eli Bendersky | 6084f45 | 2013-04-19 01:04:40 +0000 | [diff] [blame] | 67 | STATISTIC(NumEntryBlocks, "Number of entry blocks encountered"); |
| 68 | STATISTIC(NumFastIselFailLowerArguments, |
| 69 | "Number of entry blocks where fast isel failed to lower arguments"); |
Nadav Rotem | c29095f | 2013-02-27 22:52:54 +0000 | [diff] [blame] | 70 | |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 71 | #ifndef NDEBUG |
Chad Rosier | 2f8347e | 2011-12-13 00:05:11 +0000 | [diff] [blame] | 72 | static cl::opt<bool> |
| 73 | EnableFastISelVerbose2("fast-isel-verbose2", cl::Hidden, |
| 74 | cl::desc("Enable extra verbose messages in the \"fast\" " |
| 75 | "instruction selector")); |
Eli Bendersky | 6084f45 | 2013-04-19 01:04:40 +0000 | [diff] [blame] | 76 | |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 77 | // Terminators |
| 78 | STATISTIC(NumFastIselFailRet,"Fast isel fails on Ret"); |
| 79 | STATISTIC(NumFastIselFailBr,"Fast isel fails on Br"); |
| 80 | STATISTIC(NumFastIselFailSwitch,"Fast isel fails on Switch"); |
| 81 | STATISTIC(NumFastIselFailIndirectBr,"Fast isel fails on IndirectBr"); |
| 82 | STATISTIC(NumFastIselFailInvoke,"Fast isel fails on Invoke"); |
| 83 | STATISTIC(NumFastIselFailResume,"Fast isel fails on Resume"); |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 84 | STATISTIC(NumFastIselFailUnreachable,"Fast isel fails on Unreachable"); |
| 85 | |
| 86 | // Standard binary operators... |
| 87 | STATISTIC(NumFastIselFailAdd,"Fast isel fails on Add"); |
| 88 | STATISTIC(NumFastIselFailFAdd,"Fast isel fails on FAdd"); |
| 89 | STATISTIC(NumFastIselFailSub,"Fast isel fails on Sub"); |
| 90 | STATISTIC(NumFastIselFailFSub,"Fast isel fails on FSub"); |
| 91 | STATISTIC(NumFastIselFailMul,"Fast isel fails on Mul"); |
| 92 | STATISTIC(NumFastIselFailFMul,"Fast isel fails on FMul"); |
| 93 | STATISTIC(NumFastIselFailUDiv,"Fast isel fails on UDiv"); |
| 94 | STATISTIC(NumFastIselFailSDiv,"Fast isel fails on SDiv"); |
| 95 | STATISTIC(NumFastIselFailFDiv,"Fast isel fails on FDiv"); |
| 96 | STATISTIC(NumFastIselFailURem,"Fast isel fails on URem"); |
| 97 | STATISTIC(NumFastIselFailSRem,"Fast isel fails on SRem"); |
| 98 | STATISTIC(NumFastIselFailFRem,"Fast isel fails on FRem"); |
| 99 | |
| 100 | // Logical operators... |
| 101 | STATISTIC(NumFastIselFailAnd,"Fast isel fails on And"); |
| 102 | STATISTIC(NumFastIselFailOr,"Fast isel fails on Or"); |
| 103 | STATISTIC(NumFastIselFailXor,"Fast isel fails on Xor"); |
| 104 | |
| 105 | // Memory instructions... |
| 106 | STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca"); |
| 107 | STATISTIC(NumFastIselFailLoad,"Fast isel fails on Load"); |
| 108 | STATISTIC(NumFastIselFailStore,"Fast isel fails on Store"); |
| 109 | STATISTIC(NumFastIselFailAtomicCmpXchg,"Fast isel fails on AtomicCmpXchg"); |
| 110 | STATISTIC(NumFastIselFailAtomicRMW,"Fast isel fails on AtomicRWM"); |
| 111 | STATISTIC(NumFastIselFailFence,"Fast isel fails on Frence"); |
| 112 | STATISTIC(NumFastIselFailGetElementPtr,"Fast isel fails on GetElementPtr"); |
| 113 | |
| 114 | // Convert instructions... |
| 115 | STATISTIC(NumFastIselFailTrunc,"Fast isel fails on Trunc"); |
| 116 | STATISTIC(NumFastIselFailZExt,"Fast isel fails on ZExt"); |
| 117 | STATISTIC(NumFastIselFailSExt,"Fast isel fails on SExt"); |
| 118 | STATISTIC(NumFastIselFailFPTrunc,"Fast isel fails on FPTrunc"); |
| 119 | STATISTIC(NumFastIselFailFPExt,"Fast isel fails on FPExt"); |
| 120 | STATISTIC(NumFastIselFailFPToUI,"Fast isel fails on FPToUI"); |
| 121 | STATISTIC(NumFastIselFailFPToSI,"Fast isel fails on FPToSI"); |
| 122 | STATISTIC(NumFastIselFailUIToFP,"Fast isel fails on UIToFP"); |
| 123 | STATISTIC(NumFastIselFailSIToFP,"Fast isel fails on SIToFP"); |
| 124 | STATISTIC(NumFastIselFailIntToPtr,"Fast isel fails on IntToPtr"); |
| 125 | STATISTIC(NumFastIselFailPtrToInt,"Fast isel fails on PtrToInt"); |
| 126 | STATISTIC(NumFastIselFailBitCast,"Fast isel fails on BitCast"); |
| 127 | |
| 128 | // Other instructions... |
| 129 | STATISTIC(NumFastIselFailICmp,"Fast isel fails on ICmp"); |
| 130 | STATISTIC(NumFastIselFailFCmp,"Fast isel fails on FCmp"); |
| 131 | STATISTIC(NumFastIselFailPHI,"Fast isel fails on PHI"); |
| 132 | STATISTIC(NumFastIselFailSelect,"Fast isel fails on Select"); |
| 133 | STATISTIC(NumFastIselFailCall,"Fast isel fails on Call"); |
| 134 | STATISTIC(NumFastIselFailShl,"Fast isel fails on Shl"); |
| 135 | STATISTIC(NumFastIselFailLShr,"Fast isel fails on LShr"); |
| 136 | STATISTIC(NumFastIselFailAShr,"Fast isel fails on AShr"); |
| 137 | STATISTIC(NumFastIselFailVAArg,"Fast isel fails on VAArg"); |
| 138 | STATISTIC(NumFastIselFailExtractElement,"Fast isel fails on ExtractElement"); |
| 139 | STATISTIC(NumFastIselFailInsertElement,"Fast isel fails on InsertElement"); |
| 140 | STATISTIC(NumFastIselFailShuffleVector,"Fast isel fails on ShuffleVector"); |
| 141 | STATISTIC(NumFastIselFailExtractValue,"Fast isel fails on ExtractValue"); |
| 142 | STATISTIC(NumFastIselFailInsertValue,"Fast isel fails on InsertValue"); |
| 143 | STATISTIC(NumFastIselFailLandingPad,"Fast isel fails on LandingPad"); |
Juergen Ributzka | 89fe23e | 2014-06-10 18:17:00 +0000 | [diff] [blame] | 144 | |
| 145 | // Intrinsic instructions... |
| 146 | STATISTIC(NumFastIselFailIntrinsicCall, "Fast isel fails on Intrinsic call"); |
| 147 | STATISTIC(NumFastIselFailSAddWithOverflow, |
| 148 | "Fast isel fails on sadd.with.overflow"); |
| 149 | STATISTIC(NumFastIselFailUAddWithOverflow, |
| 150 | "Fast isel fails on uadd.with.overflow"); |
| 151 | STATISTIC(NumFastIselFailSSubWithOverflow, |
| 152 | "Fast isel fails on ssub.with.overflow"); |
| 153 | STATISTIC(NumFastIselFailUSubWithOverflow, |
| 154 | "Fast isel fails on usub.with.overflow"); |
| 155 | STATISTIC(NumFastIselFailSMulWithOverflow, |
| 156 | "Fast isel fails on smul.with.overflow"); |
| 157 | STATISTIC(NumFastIselFailUMulWithOverflow, |
| 158 | "Fast isel fails on umul.with.overflow"); |
| 159 | STATISTIC(NumFastIselFailFrameaddress, "Fast isel fails on Frameaddress"); |
| 160 | STATISTIC(NumFastIselFailSqrt, "Fast isel fails on sqrt call"); |
| 161 | STATISTIC(NumFastIselFailStackMap, "Fast isel fails on StackMap call"); |
| 162 | STATISTIC(NumFastIselFailPatchPoint, "Fast isel fails on PatchPoint call"); |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 163 | #endif |
| 164 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 165 | static cl::opt<bool> |
Dan Gohman | 91491b5 | 2008-09-09 22:06:46 +0000 | [diff] [blame] | 166 | EnableFastISelVerbose("fast-isel-verbose", cl::Hidden, |
Dan Gohman | 1a59b3b | 2008-10-20 21:30:12 +0000 | [diff] [blame] | 167 | cl::desc("Enable verbose messages in the \"fast\" " |
Dan Gohman | 91491b5 | 2008-09-09 22:06:46 +0000 | [diff] [blame] | 168 | "instruction selector")); |
| 169 | static cl::opt<bool> |
Dan Gohman | b4c0295 | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 170 | EnableFastISelAbort("fast-isel-abort", cl::Hidden, |
Chad Rosier | 0587597 | 2013-02-25 22:20:00 +0000 | [diff] [blame] | 171 | cl::desc("Enable abort calls when \"fast\" instruction selection " |
| 172 | "fails to lower an instruction")); |
Chad Rosier | a92ef4b | 2013-02-25 21:59:35 +0000 | [diff] [blame] | 173 | static cl::opt<bool> |
| 174 | EnableFastISelAbortArgs("fast-isel-abort-args", cl::Hidden, |
Chad Rosier | 0587597 | 2013-02-25 22:20:00 +0000 | [diff] [blame] | 175 | cl::desc("Enable abort calls when \"fast\" instruction selection " |
| 176 | "fails to lower a formal argument")); |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 177 | |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 178 | static cl::opt<bool> |
| 179 | UseMBPI("use-mbpi", |
| 180 | cl::desc("use Machine Branch Probability Info"), |
| 181 | cl::init(true), cl::Hidden); |
| 182 | |
Chris Lattner | 975f5c9 | 2005-09-01 18:44:10 +0000 | [diff] [blame] | 183 | #ifndef NDEBUG |
Chris Lattner | e05a461 | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 184 | static cl::opt<bool> |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 185 | ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden, |
| 186 | cl::desc("Pop up a window to show dags before the first " |
| 187 | "dag combine pass")); |
| 188 | static cl::opt<bool> |
| 189 | ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden, |
| 190 | cl::desc("Pop up a window to show dags before legalize types")); |
| 191 | static cl::opt<bool> |
| 192 | ViewLegalizeDAGs("view-legalize-dags", cl::Hidden, |
| 193 | cl::desc("Pop up a window to show dags before legalize")); |
| 194 | static cl::opt<bool> |
| 195 | ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden, |
| 196 | cl::desc("Pop up a window to show dags before the second " |
| 197 | "dag combine pass")); |
| 198 | static cl::opt<bool> |
Duncan Sands | dc2dac1 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 199 | ViewDAGCombineLT("view-dag-combine-lt-dags", cl::Hidden, |
| 200 | cl::desc("Pop up a window to show dags before the post legalize types" |
| 201 | " dag combine pass")); |
| 202 | static cl::opt<bool> |
Evan Cheng | 739a6a4 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 203 | ViewISelDAGs("view-isel-dags", cl::Hidden, |
| 204 | cl::desc("Pop up a window to show isel dags as they are selected")); |
| 205 | static cl::opt<bool> |
| 206 | ViewSchedDAGs("view-sched-dags", cl::Hidden, |
| 207 | cl::desc("Pop up a window to show sched dags as they are processed")); |
Dan Gohman | 81b62e1 | 2007-08-28 20:32:58 +0000 | [diff] [blame] | 208 | static cl::opt<bool> |
| 209 | ViewSUnitDAGs("view-sunit-dags", cl::Hidden, |
Chris Lattner | fc80996 | 2008-01-25 17:24:52 +0000 | [diff] [blame] | 210 | cl::desc("Pop up a window to show SUnit dags after they are processed")); |
Chris Lattner | e05a461 | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 211 | #else |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 212 | static const bool ViewDAGCombine1 = false, |
| 213 | ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false, |
| 214 | ViewDAGCombine2 = false, |
Duncan Sands | dc2dac1 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 215 | ViewDAGCombineLT = false, |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 216 | ViewISelDAGs = false, ViewSchedDAGs = false, |
| 217 | ViewSUnitDAGs = false; |
Chris Lattner | e05a461 | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 218 | #endif |
| 219 | |
Jim Laskey | 29e635d | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 220 | //===---------------------------------------------------------------------===// |
| 221 | /// |
| 222 | /// RegisterScheduler class - Track the registration of instruction schedulers. |
| 223 | /// |
| 224 | //===---------------------------------------------------------------------===// |
| 225 | MachinePassRegistry RegisterScheduler::Registry; |
| 226 | |
| 227 | //===---------------------------------------------------------------------===// |
| 228 | /// |
| 229 | /// ISHeuristic command line option for instruction schedulers. |
| 230 | /// |
| 231 | //===---------------------------------------------------------------------===// |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 232 | static cl::opt<RegisterScheduler::FunctionPassCtor, false, |
| 233 | RegisterPassParser<RegisterScheduler> > |
| 234 | ISHeuristic("pre-RA-sched", |
Andrew Trick | 7daf6a4 | 2014-01-13 20:08:27 +0000 | [diff] [blame] | 235 | cl::init(&createDefaultScheduler), cl::Hidden, |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 236 | cl::desc("Instruction schedulers available (before register" |
| 237 | " allocation):")); |
Jim Laskey | 95eda5b | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 238 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 239 | static RegisterScheduler |
Dan Gohman | 9c4b7d5 | 2008-10-14 20:25:08 +0000 | [diff] [blame] | 240 | defaultListDAGScheduler("default", "Best scheduler for the target", |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 241 | createDefaultScheduler); |
Evan Cheng | c1e1d97 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 242 | |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 243 | namespace llvm { |
| 244 | //===--------------------------------------------------------------------===// |
Paul Robinson | d89125a | 2013-11-22 19:11:24 +0000 | [diff] [blame] | 245 | /// \brief This class is used by SelectionDAGISel to temporarily override |
| 246 | /// the optimization level on a per-function basis. |
| 247 | class OptLevelChanger { |
| 248 | SelectionDAGISel &IS; |
| 249 | CodeGenOpt::Level SavedOptLevel; |
| 250 | bool SavedFastISel; |
| 251 | |
| 252 | public: |
| 253 | OptLevelChanger(SelectionDAGISel &ISel, |
| 254 | CodeGenOpt::Level NewOptLevel) : IS(ISel) { |
| 255 | SavedOptLevel = IS.OptLevel; |
| 256 | if (NewOptLevel == SavedOptLevel) |
| 257 | return; |
| 258 | IS.OptLevel = NewOptLevel; |
| 259 | IS.TM.setOptLevel(NewOptLevel); |
| 260 | SavedFastISel = IS.TM.Options.EnableFastISel; |
| 261 | if (NewOptLevel == CodeGenOpt::None) |
| 262 | IS.TM.setFastISel(true); |
| 263 | DEBUG(dbgs() << "\nChanging optimization level for Function " |
| 264 | << IS.MF->getFunction()->getName() << "\n"); |
| 265 | DEBUG(dbgs() << "\tBefore: -O" << SavedOptLevel |
| 266 | << " ; After: -O" << NewOptLevel << "\n"); |
| 267 | } |
| 268 | |
| 269 | ~OptLevelChanger() { |
| 270 | if (IS.OptLevel == SavedOptLevel) |
| 271 | return; |
| 272 | DEBUG(dbgs() << "\nRestoring optimization level for Function " |
| 273 | << IS.MF->getFunction()->getName() << "\n"); |
| 274 | DEBUG(dbgs() << "\tBefore: -O" << IS.OptLevel |
| 275 | << " ; After: -O" << SavedOptLevel << "\n"); |
| 276 | IS.OptLevel = SavedOptLevel; |
| 277 | IS.TM.setOptLevel(SavedOptLevel); |
| 278 | IS.TM.setFastISel(SavedFastISel); |
| 279 | } |
| 280 | }; |
| 281 | |
| 282 | //===--------------------------------------------------------------------===// |
Jim Laskey | 17c67ef | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 283 | /// createDefaultScheduler - This creates an instruction scheduler appropriate |
| 284 | /// for the target. |
Dan Gohman | dfaf646 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 285 | ScheduleDAGSDNodes* createDefaultScheduler(SelectionDAGISel *IS, |
Bill Wendling | 026e5d7 | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 286 | CodeGenOpt::Level OptLevel) { |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 287 | const TargetLowering *TLI = IS->getTargetLowering(); |
Andrew Trick | 108c88c | 2012-11-13 08:47:29 +0000 | [diff] [blame] | 288 | const TargetSubtargetInfo &ST = IS->TM.getSubtarget<TargetSubtargetInfo>(); |
Dan Gohman | 91febd1 | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 289 | |
Andrew Trick | 71e8bb6 | 2013-09-26 05:53:35 +0000 | [diff] [blame] | 290 | if (OptLevel == CodeGenOpt::None || ST.useMachineScheduler() || |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 291 | TLI->getSchedulingPreference() == Sched::Source) |
Dan Gohman | 103c4eb | 2010-07-16 02:01:19 +0000 | [diff] [blame] | 292 | return createSourceListDAGScheduler(IS, OptLevel); |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 293 | if (TLI->getSchedulingPreference() == Sched::RegPressure) |
Evan Cheng | bdd062d | 2010-05-20 06:13:19 +0000 | [diff] [blame] | 294 | return createBURRListDAGScheduler(IS, OptLevel); |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 295 | if (TLI->getSchedulingPreference() == Sched::Hybrid) |
Evan Cheng | 37b740c | 2010-07-24 00:39:05 +0000 | [diff] [blame] | 296 | return createHybridListDAGScheduler(IS, OptLevel); |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 297 | if (TLI->getSchedulingPreference() == Sched::VLIW) |
Andrew Trick | d06df96 | 2012-02-01 22:13:57 +0000 | [diff] [blame] | 298 | return createVLIWDAGScheduler(IS, OptLevel); |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 299 | assert(TLI->getSchedulingPreference() == Sched::ILP && |
Evan Cheng | 738e920 | 2010-05-19 20:19:50 +0000 | [diff] [blame] | 300 | "Unknown sched type!"); |
Evan Cheng | 37b740c | 2010-07-24 00:39:05 +0000 | [diff] [blame] | 301 | return createILPListDAGScheduler(IS, OptLevel); |
Jim Laskey | 17c67ef | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 302 | } |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 303 | } |
| 304 | |
Evan Cheng | 29cfb67 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 305 | // EmitInstrWithCustomInserter - This method should be implemented by targets |
Dan Gohman | 453d64c | 2009-10-29 18:10:34 +0000 | [diff] [blame] | 306 | // that mark instructions with the 'usesCustomInserter' flag. These |
Chris Lattner | 13d7c25 | 2005-08-26 20:54:47 +0000 | [diff] [blame] | 307 | // instructions are special in various ways, which require special support to |
| 308 | // insert. The specified MachineInstr is created but not inserted into any |
Dan Gohman | 453d64c | 2009-10-29 18:10:34 +0000 | [diff] [blame] | 309 | // basic blocks, and this method is called to expand it into a sequence of |
| 310 | // instructions, potentially also creating new basic blocks and control flow. |
| 311 | // When new basic blocks are inserted and the edges from MBB to its successors |
| 312 | // are modified, the method should insert pairs of <OldSucc, NewSucc> into the |
| 313 | // DenseMap. |
Dan Gohman | 25c1653 | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 314 | MachineBasicBlock * |
| 315 | TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
| 316 | MachineBasicBlock *MBB) const { |
Torok Edwin | 08954aa | 2009-07-12 20:07:01 +0000 | [diff] [blame] | 317 | #ifndef NDEBUG |
David Greene | 30ed3ca | 2010-01-05 01:26:11 +0000 | [diff] [blame] | 318 | dbgs() << "If a target marks an instruction with " |
Dan Gohman | 453d64c | 2009-10-29 18:10:34 +0000 | [diff] [blame] | 319 | "'usesCustomInserter', it must implement " |
Torok Edwin | 08954aa | 2009-07-12 20:07:01 +0000 | [diff] [blame] | 320 | "TargetLowering::EmitInstrWithCustomInserter!"; |
| 321 | #endif |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 322 | llvm_unreachable(nullptr); |
Chris Lattner | 13d7c25 | 2005-08-26 20:54:47 +0000 | [diff] [blame] | 323 | } |
| 324 | |
Evan Cheng | e6fba77 | 2011-08-30 19:09:48 +0000 | [diff] [blame] | 325 | void TargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI, |
| 326 | SDNode *Node) const { |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 327 | assert(!MI->hasPostISelHook() && |
Andrew Trick | 924123a | 2011-09-21 02:20:46 +0000 | [diff] [blame] | 328 | "If a target marks an instruction with 'hasPostISelHook', " |
| 329 | "it must implement TargetLowering::AdjustInstrPostInstrSelection!"); |
Evan Cheng | e6fba77 | 2011-08-30 19:09:48 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Chris Lattner | 875def9 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 332 | //===----------------------------------------------------------------------===// |
| 333 | // SelectionDAGISel code |
| 334 | //===----------------------------------------------------------------------===// |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 335 | |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 336 | SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, |
Eric Christopher | c673b21 | 2011-01-05 21:45:56 +0000 | [diff] [blame] | 337 | CodeGenOpt::Level OL) : |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 338 | MachineFunctionPass(ID), TM(tm), |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 339 | FuncInfo(new FunctionLoweringInfo(TM)), |
Devang Patel | 7bbc1e5 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 340 | CurDAG(new SelectionDAG(tm, OL)), |
Dan Gohman | c334960 | 2010-04-19 19:05:59 +0000 | [diff] [blame] | 341 | SDB(new SelectionDAGBuilder(*CurDAG, *FuncInfo, OL)), |
Dan Gohman | e1a9a78 | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 342 | GFI(), |
Bill Wendling | 084669a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 343 | OptLevel(OL), |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 344 | DAGSize(0) { |
| 345 | initializeGCModuleInfoPass(*PassRegistry::getPassRegistry()); |
| 346 | initializeAliasAnalysisAnalysisGroup(*PassRegistry::getPassRegistry()); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 347 | initializeBranchProbabilityInfoPass(*PassRegistry::getPassRegistry()); |
Owen Anderson | bb15fec | 2011-12-08 22:15:21 +0000 | [diff] [blame] | 348 | initializeTargetLibraryInfoPass(*PassRegistry::getPassRegistry()); |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 349 | } |
Dan Gohman | e1a9a78 | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 350 | |
| 351 | SelectionDAGISel::~SelectionDAGISel() { |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 352 | delete SDB; |
Dan Gohman | e1a9a78 | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 353 | delete CurDAG; |
| 354 | delete FuncInfo; |
| 355 | } |
| 356 | |
Chris Lattner | c9950c1 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 357 | void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const { |
Jim Laskey | dcb2b83 | 2006-10-16 20:52:31 +0000 | [diff] [blame] | 358 | AU.addRequired<AliasAnalysis>(); |
Dan Gohman | 10b8898 | 2009-07-31 23:36:22 +0000 | [diff] [blame] | 359 | AU.addPreserved<AliasAnalysis>(); |
Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 360 | AU.addRequired<GCModuleInfo>(); |
Dan Gohman | 10b8898 | 2009-07-31 23:36:22 +0000 | [diff] [blame] | 361 | AU.addPreserved<GCModuleInfo>(); |
Owen Anderson | bb15fec | 2011-12-08 22:15:21 +0000 | [diff] [blame] | 362 | AU.addRequired<TargetLibraryInfo>(); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 363 | if (UseMBPI && OptLevel != CodeGenOpt::None) |
| 364 | AU.addRequired<BranchProbabilityInfo>(); |
Dan Gohman | 5ea74d5 | 2009-07-31 18:16:33 +0000 | [diff] [blame] | 365 | MachineFunctionPass::getAnalysisUsage(AU); |
Chris Lattner | c9950c1 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 366 | } |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 367 | |
Chris Lattner | 77a8a71 | 2010-12-19 04:58:57 +0000 | [diff] [blame] | 368 | /// SplitCriticalSideEffectEdges - Look for critical edges with a PHI value that |
| 369 | /// may trap on it. In this case we have to split the edge so that the path |
| 370 | /// through the predecessor block that doesn't go to the phi block doesn't |
| 371 | /// execute the possibly trapping instruction. |
| 372 | /// |
| 373 | /// This is required for correctness, so it must be done at -O0. |
| 374 | /// |
| 375 | static void SplitCriticalSideEffectEdges(Function &Fn, Pass *SDISel) { |
| 376 | // Loop for blocks with phi nodes. |
| 377 | for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) { |
| 378 | PHINode *PN = dyn_cast<PHINode>(BB->begin()); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 379 | if (!PN) continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 380 | |
Chris Lattner | 77a8a71 | 2010-12-19 04:58:57 +0000 | [diff] [blame] | 381 | ReprocessBlock: |
| 382 | // For each block with a PHI node, check to see if any of the input values |
| 383 | // are potentially trapping constant expressions. Constant expressions are |
| 384 | // the only potentially trapping value that can occur as the argument to a |
| 385 | // PHI. |
| 386 | for (BasicBlock::iterator I = BB->begin(); (PN = dyn_cast<PHINode>(I)); ++I) |
| 387 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 388 | ConstantExpr *CE = dyn_cast<ConstantExpr>(PN->getIncomingValue(i)); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 389 | if (!CE || !CE->canTrap()) continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 390 | |
Chris Lattner | 77a8a71 | 2010-12-19 04:58:57 +0000 | [diff] [blame] | 391 | // The only case we have to worry about is when the edge is critical. |
| 392 | // Since this block has a PHI Node, we assume it has multiple input |
| 393 | // edges: check to see if the pred has multiple successors. |
| 394 | BasicBlock *Pred = PN->getIncomingBlock(i); |
| 395 | if (Pred->getTerminator()->getNumSuccessors() == 1) |
| 396 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 397 | |
Chris Lattner | 77a8a71 | 2010-12-19 04:58:57 +0000 | [diff] [blame] | 398 | // Okay, we have to split this edge. |
| 399 | SplitCriticalEdge(Pred->getTerminator(), |
| 400 | GetSuccessorNumber(Pred, BB), SDISel, true); |
| 401 | goto ReprocessBlock; |
| 402 | } |
| 403 | } |
| 404 | } |
| 405 | |
Dan Gohman | 5ea74d5 | 2009-07-31 18:16:33 +0000 | [diff] [blame] | 406 | bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) { |
Dan Gohman | b4c0295 | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 407 | // Do some sanity-checking on the command-line options. |
Nick Lewycky | 50f02cb | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 408 | assert((!EnableFastISelVerbose || TM.Options.EnableFastISel) && |
Dan Gohman | b4c0295 | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 409 | "-fast-isel-verbose requires -fast-isel"); |
Nick Lewycky | 50f02cb | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 410 | assert((!EnableFastISelAbort || TM.Options.EnableFastISel) && |
Dan Gohman | b4c0295 | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 411 | "-fast-isel-abort requires -fast-isel"); |
| 412 | |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 413 | const Function &Fn = *mf.getFunction(); |
Dan Gohman | f17a2f3 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 414 | const TargetInstrInfo &TII = *TM.getInstrInfo(); |
| 415 | const TargetRegisterInfo &TRI = *TM.getRegisterInfo(); |
Juergen Ributzka | b348710 | 2013-11-19 21:20:17 +0000 | [diff] [blame] | 416 | const TargetLowering *TLI = TM.getTargetLowering(); |
Dan Gohman | f17a2f3 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 417 | |
Dan Gohman | 4bfb437 | 2010-04-14 17:02:07 +0000 | [diff] [blame] | 418 | MF = &mf; |
Dan Gohman | 619ef48 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 419 | RegInfo = &MF->getRegInfo(); |
Dan Gohman | 4bfb437 | 2010-04-14 17:02:07 +0000 | [diff] [blame] | 420 | AA = &getAnalysis<AliasAnalysis>(); |
Owen Anderson | bb15fec | 2011-12-08 22:15:21 +0000 | [diff] [blame] | 421 | LibInfo = &getAnalysis<TargetLibraryInfo>(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 422 | GFI = Fn.hasGC() ? &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn) : nullptr; |
Dan Gohman | 4bfb437 | 2010-04-14 17:02:07 +0000 | [diff] [blame] | 423 | |
Bill Wendling | aef9c37 | 2013-02-15 22:31:27 +0000 | [diff] [blame] | 424 | TargetSubtargetInfo &ST = |
| 425 | const_cast<TargetSubtargetInfo&>(TM.getSubtarget<TargetSubtargetInfo>()); |
| 426 | ST.resetSubtargetFeatures(MF); |
Bill Wendling | 965bd58 | 2013-03-13 22:26:59 +0000 | [diff] [blame] | 427 | TM.resetTargetOptions(MF); |
Bill Wendling | aef9c37 | 2013-02-15 22:31:27 +0000 | [diff] [blame] | 428 | |
Paul Robinson | d89125a | 2013-11-22 19:11:24 +0000 | [diff] [blame] | 429 | // Reset OptLevel to None for optnone functions. |
| 430 | CodeGenOpt::Level NewOptLevel = OptLevel; |
| 431 | if (Fn.hasFnAttribute(Attribute::OptimizeNone)) |
| 432 | NewOptLevel = CodeGenOpt::None; |
| 433 | OptLevelChanger OLC(*this, NewOptLevel); |
| 434 | |
David Greene | 30ed3ca | 2010-01-05 01:26:11 +0000 | [diff] [blame] | 435 | DEBUG(dbgs() << "\n\n\n=== " << Fn.getName() << "\n"); |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 436 | |
Chris Lattner | 77a8a71 | 2010-12-19 04:58:57 +0000 | [diff] [blame] | 437 | SplitCriticalSideEffectEdges(const_cast<Function&>(Fn), this); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 438 | |
Juergen Ributzka | 659ce00 | 2014-01-28 01:20:14 +0000 | [diff] [blame] | 439 | CurDAG->init(*MF, TLI); |
Hans Wennborg | acb842d | 2014-03-05 02:43:26 +0000 | [diff] [blame] | 440 | FuncInfo->set(Fn, *MF, CurDAG); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 441 | |
| 442 | if (UseMBPI && OptLevel != CodeGenOpt::None) |
| 443 | FuncInfo->BPI = &getAnalysis<BranchProbabilityInfo>(); |
| 444 | else |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 445 | FuncInfo->BPI = nullptr; |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 446 | |
Owen Anderson | bb15fec | 2011-12-08 22:15:21 +0000 | [diff] [blame] | 447 | SDB->init(GFI, *AA, LibInfo); |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 448 | |
Reid Kleckner | ee08897 | 2013-12-10 18:27:32 +0000 | [diff] [blame] | 449 | MF->setHasInlineAsm(false); |
Reid Kleckner | ee08897 | 2013-12-10 18:27:32 +0000 | [diff] [blame] | 450 | |
Dan Gohman | a3918ec | 2010-04-14 20:05:00 +0000 | [diff] [blame] | 451 | SelectAllBasicBlocks(Fn); |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 452 | |
Dan Gohman | 096619e | 2010-05-01 00:33:28 +0000 | [diff] [blame] | 453 | // If the first basic block in the function has live ins that need to be |
Dan Gohman | f17a2f3 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 454 | // copied into vregs, emit the copies into the top of the block before |
| 455 | // emitting the code for the block. |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 456 | MachineBasicBlock *EntryMBB = MF->begin(); |
| 457 | RegInfo->EmitLiveInCopies(EntryMBB, TRI, TII); |
| 458 | |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 459 | DenseMap<unsigned, unsigned> LiveInMap; |
| 460 | if (!FuncInfo->ArgDbgValues.empty()) |
| 461 | for (MachineRegisterInfo::livein_iterator LI = RegInfo->livein_begin(), |
| 462 | E = RegInfo->livein_end(); LI != E; ++LI) |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 463 | if (LI->second) |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 464 | LiveInMap.insert(std::make_pair(LI->first, LI->second)); |
| 465 | |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 466 | // Insert DBG_VALUE instructions for function arguments to the entry block. |
| 467 | for (unsigned i = 0, e = FuncInfo->ArgDbgValues.size(); i != e; ++i) { |
| 468 | MachineInstr *MI = FuncInfo->ArgDbgValues[e-i-1]; |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 469 | bool hasFI = MI->getOperand(0).isFI(); |
Jack Carter | d4b22dc | 2013-11-20 00:32:32 +0000 | [diff] [blame] | 470 | unsigned Reg = |
| 471 | hasFI ? TRI.getFrameRegister(*MF) : MI->getOperand(0).getReg(); |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 472 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 473 | EntryMBB->insert(EntryMBB->begin(), MI); |
| 474 | else { |
| 475 | MachineInstr *Def = RegInfo->getVRegDef(Reg); |
Adrian Prantl | f01b562 | 2013-10-05 00:08:27 +0000 | [diff] [blame] | 476 | if (Def) { |
| 477 | MachineBasicBlock::iterator InsertPos = Def; |
| 478 | // FIXME: VR def may not be in entry block. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 479 | Def->getParent()->insert(std::next(InsertPos), MI); |
Adrian Prantl | f01b562 | 2013-10-05 00:08:27 +0000 | [diff] [blame] | 480 | } else |
| 481 | DEBUG(dbgs() << "Dropping debug info for dead vreg" |
| 482 | << TargetRegisterInfo::virtReg2Index(Reg) << "\n"); |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 483 | } |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 484 | |
| 485 | // If Reg is live-in then update debug info to track its copy in a vreg. |
| 486 | DenseMap<unsigned, unsigned>::iterator LDI = LiveInMap.find(Reg); |
| 487 | if (LDI != LiveInMap.end()) { |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 488 | assert(!hasFI && "There's no handling of frame pointer updating here yet " |
| 489 | "- add if needed"); |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 490 | MachineInstr *Def = RegInfo->getVRegDef(LDI->second); |
| 491 | MachineBasicBlock::iterator InsertPos = Def; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 492 | const MDNode *Variable = |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 493 | MI->getOperand(MI->getNumOperands()-1).getMetadata(); |
Adrian Prantl | db3e26d | 2013-09-16 23:29:03 +0000 | [diff] [blame] | 494 | bool IsIndirect = MI->isIndirectDebugValue(); |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 495 | unsigned Offset = IsIndirect ? MI->getOperand(1).getImm() : 0; |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 496 | // Def is never a terminator here, so it is ok to increment InsertPos. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 497 | BuildMI(*EntryMBB, ++InsertPos, MI->getDebugLoc(), |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 498 | TII.get(TargetOpcode::DBG_VALUE), |
| 499 | IsIndirect, |
| 500 | LDI->second, Offset, Variable); |
Devang Patel | 99ff762 | 2010-09-21 20:56:33 +0000 | [diff] [blame] | 501 | |
| 502 | // If this vreg is directly copied into an exported register then |
| 503 | // that COPY instructions also need DBG_VALUE, if it is the only |
| 504 | // user of LDI->second. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 505 | MachineInstr *CopyUseMI = nullptr; |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 506 | for (MachineRegisterInfo::use_instr_iterator |
| 507 | UI = RegInfo->use_instr_begin(LDI->second), |
| 508 | E = RegInfo->use_instr_end(); UI != E; ) { |
| 509 | MachineInstr *UseMI = &*(UI++); |
Devang Patel | 99ff762 | 2010-09-21 20:56:33 +0000 | [diff] [blame] | 510 | if (UseMI->isDebugValue()) continue; |
| 511 | if (UseMI->isCopy() && !CopyUseMI && UseMI->getParent() == EntryMBB) { |
| 512 | CopyUseMI = UseMI; continue; |
| 513 | } |
| 514 | // Otherwise this is another use or second copy use. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 515 | CopyUseMI = nullptr; break; |
Devang Patel | 99ff762 | 2010-09-21 20:56:33 +0000 | [diff] [blame] | 516 | } |
| 517 | if (CopyUseMI) { |
| 518 | MachineInstr *NewMI = |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 519 | BuildMI(*MF, CopyUseMI->getDebugLoc(), |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 520 | TII.get(TargetOpcode::DBG_VALUE), |
| 521 | IsIndirect, |
| 522 | CopyUseMI->getOperand(0).getReg(), |
| 523 | Offset, Variable); |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 524 | MachineBasicBlock::iterator Pos = CopyUseMI; |
| 525 | EntryMBB->insertAfter(Pos, NewMI); |
Devang Patel | 99ff762 | 2010-09-21 20:56:33 +0000 | [diff] [blame] | 526 | } |
Devang Patel | 1b08572 | 2010-05-26 20:18:50 +0000 | [diff] [blame] | 527 | } |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 528 | } |
| 529 | |
Bill Wendling | 02d3368 | 2010-05-17 23:09:50 +0000 | [diff] [blame] | 530 | // Determine if there are any calls in this machine function. |
| 531 | MachineFrameInfo *MFI = MF->getFrameInfo(); |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 532 | for (const auto &MBB : *MF) { |
Reid Kleckner | ee08897 | 2013-12-10 18:27:32 +0000 | [diff] [blame] | 533 | if (MFI->hasCalls() && MF->hasInlineAsm()) |
Chad Rosier | 925c9b4 | 2013-02-16 01:25:28 +0000 | [diff] [blame] | 534 | break; |
| 535 | |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 536 | for (const auto &MI : MBB) { |
| 537 | const MCInstrDesc &MCID = TM.getInstrInfo()->get(MI.getOpcode()); |
Chad Rosier | 925c9b4 | 2013-02-16 01:25:28 +0000 | [diff] [blame] | 538 | if ((MCID.isCall() && !MCID.isReturn()) || |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 539 | MI.isStackAligningInlineAsm()) { |
Chad Rosier | 925c9b4 | 2013-02-16 01:25:28 +0000 | [diff] [blame] | 540 | MFI->setHasCalls(true); |
| 541 | } |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 542 | if (MI.isInlineAsm()) { |
Reid Kleckner | ee08897 | 2013-12-10 18:27:32 +0000 | [diff] [blame] | 543 | MF->setHasInlineAsm(true); |
Bill Wendling | 02d3368 | 2010-05-17 23:09:50 +0000 | [diff] [blame] | 544 | } |
| 545 | } |
Bill Wendling | 02d3368 | 2010-05-17 23:09:50 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Bill Wendling | 0c3bfd3 | 2010-05-26 19:46:12 +0000 | [diff] [blame] | 548 | // Determine if there is a call to setjmp in the machine function. |
Joerg Sonnenberger | d6cb764 | 2011-12-18 20:35:43 +0000 | [diff] [blame] | 549 | MF->setExposesReturnsTwice(Fn.callsFunctionThatReturnsTwice()); |
Bill Wendling | 0c3bfd3 | 2010-05-26 19:46:12 +0000 | [diff] [blame] | 550 | |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 551 | // Replace forward-declared registers with the registers containing |
| 552 | // the desired value. |
| 553 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 554 | for (DenseMap<unsigned, unsigned>::iterator |
| 555 | I = FuncInfo->RegFixups.begin(), E = FuncInfo->RegFixups.end(); |
| 556 | I != E; ++I) { |
| 557 | unsigned From = I->first; |
| 558 | unsigned To = I->second; |
| 559 | // If To is also scheduled to be replaced, find what its ultimate |
| 560 | // replacement is. |
| 561 | for (;;) { |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 562 | DenseMap<unsigned, unsigned>::iterator J = FuncInfo->RegFixups.find(To); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 563 | if (J == E) break; |
| 564 | To = J->second; |
| 565 | } |
Jim Grosbach | 06c2a68 | 2013-08-16 23:37:31 +0000 | [diff] [blame] | 566 | // Make sure the new register has a sufficiently constrained register class. |
| 567 | if (TargetRegisterInfo::isVirtualRegister(From) && |
| 568 | TargetRegisterInfo::isVirtualRegister(To)) |
| 569 | MRI.constrainRegClass(To, MRI.getRegClass(From)); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 570 | // Replace it. |
| 571 | MRI.replaceRegWith(From, To); |
| 572 | } |
| 573 | |
Jakob Stoklund Olesen | 57e3106 | 2012-10-15 21:33:06 +0000 | [diff] [blame] | 574 | // Freeze the set of reserved registers now that MachineFrameInfo has been |
| 575 | // set up. All the information required by getReservedRegs() should be |
| 576 | // available now. |
| 577 | MRI.freezeReservedRegs(*MF); |
| 578 | |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 579 | // Release function-specific state. SDB and CurDAG are already cleared |
| 580 | // at this point. |
| 581 | FuncInfo->clear(); |
Dan Gohman | f17a2f3 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 582 | |
Jim Grosbach | ea2db45 | 2013-12-17 02:01:10 +0000 | [diff] [blame] | 583 | DEBUG(dbgs() << "*** MachineFunction at end of ISel ***\n"); |
| 584 | DEBUG(MF->print(dbgs())); |
| 585 | |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 586 | return true; |
| 587 | } |
| 588 | |
Chris Lattner | 4832660 | 2011-04-17 17:12:08 +0000 | [diff] [blame] | 589 | void SelectionDAGISel::SelectBasicBlock(BasicBlock::const_iterator Begin, |
| 590 | BasicBlock::const_iterator End, |
| 591 | bool &HadTailCall) { |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 592 | // Lower all of the non-terminator instructions. If a call is emitted |
Dan Gohman | 5563473 | 2010-04-16 05:06:56 +0000 | [diff] [blame] | 593 | // as a tail call, cease emitting nodes for this block. Terminators |
| 594 | // are handled below. |
Dan Gohman | 5b43aa0 | 2010-04-22 20:55:53 +0000 | [diff] [blame] | 595 | for (BasicBlock::const_iterator I = Begin; I != End && !SDB->HasTailCall; ++I) |
Dan Gohman | 5563473 | 2010-04-16 05:06:56 +0000 | [diff] [blame] | 596 | SDB->visit(*I); |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 597 | |
Chris Lattner | 4108bb0 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 598 | // Make sure the root of the DAG is up-to-date. |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 599 | CurDAG->setRoot(SDB->getControlRoot()); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 600 | HadTailCall = SDB->HasTailCall; |
| 601 | SDB->clear(); |
Dan Gohman | 5d05971 | 2010-05-01 00:25:44 +0000 | [diff] [blame] | 602 | |
| 603 | // Final step, emit the lowered DAG as machine code. |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 604 | CodeGenAndEmitDAG(); |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 607 | void SelectionDAGISel::ComputeLiveOutVRegInfo() { |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 608 | SmallPtrSet<SDNode*, 128> VisitedNodes; |
| 609 | SmallVector<SDNode*, 128> Worklist; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 610 | |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 611 | Worklist.push_back(CurDAG->getRoot().getNode()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 612 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 613 | APInt KnownZero; |
| 614 | APInt KnownOne; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 615 | |
Benjamin Kramer | cdb3889 | 2010-01-07 17:27:56 +0000 | [diff] [blame] | 616 | do { |
| 617 | SDNode *N = Worklist.pop_back_val(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 618 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 619 | // If we've already seen this node, ignore it. |
| 620 | if (!VisitedNodes.insert(N)) |
| 621 | continue; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 622 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 623 | // Otherwise, add all chain operands to the worklist. |
| 624 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 625 | if (N->getOperand(i).getValueType() == MVT::Other) |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 626 | Worklist.push_back(N->getOperand(i).getNode()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 627 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 628 | // If this is a CopyToReg with a vreg dest, process it. |
| 629 | if (N->getOpcode() != ISD::CopyToReg) |
| 630 | continue; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 631 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 632 | unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg(); |
| 633 | if (!TargetRegisterInfo::isVirtualRegister(DestReg)) |
| 634 | continue; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 635 | |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 636 | // Ignore non-scalar or non-integer values. |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 637 | SDValue Src = N->getOperand(2); |
Owen Anderson | 53aa7a9 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 638 | EVT SrcVT = Src.getValueType(); |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 639 | if (!SrcVT.isInteger() || SrcVT.isVector()) |
| 640 | continue; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 641 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 642 | unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src); |
Jay Foad | a0653a3 | 2014-05-14 21:14:37 +0000 | [diff] [blame] | 643 | CurDAG->computeKnownBits(Src, KnownZero, KnownOne); |
Cameron Zwarich | 6470647 | 2011-02-24 10:00:08 +0000 | [diff] [blame] | 644 | FuncInfo->AddLiveOutRegInfo(DestReg, NumSignBits, KnownZero, KnownOne); |
Benjamin Kramer | cdb3889 | 2010-01-07 17:27:56 +0000 | [diff] [blame] | 645 | } while (!Worklist.empty()); |
Chris Lattner | 1b08c4a | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 646 | } |
| 647 | |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 648 | void SelectionDAGISel::CodeGenAndEmitDAG() { |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 649 | std::string GroupName; |
| 650 | if (TimePassesIsEnabled) |
| 651 | GroupName = "Instruction Selection and Scheduling"; |
| 652 | std::string BlockName; |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 653 | int BlockNumber = -1; |
Duncan Sands | a41634e | 2011-08-12 14:54:45 +0000 | [diff] [blame] | 654 | (void)BlockNumber; |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 655 | #ifdef NDEBUG |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 656 | if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs || |
Duncan Sands | dc2dac1 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 657 | ViewDAGCombine2 || ViewDAGCombineLT || ViewISelDAGs || ViewSchedDAGs || |
| 658 | ViewSUnitDAGs) |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 659 | #endif |
| 660 | { |
| 661 | BlockNumber = FuncInfo->MBB->getNumber(); |
Craig Topper | a538d83 | 2012-08-22 06:07:19 +0000 | [diff] [blame] | 662 | BlockName = MF->getName().str() + ":" + |
Benjamin Kramer | 1f97a5a | 2011-11-15 16:27:03 +0000 | [diff] [blame] | 663 | FuncInfo->MBB->getBasicBlock()->getName().str(); |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 664 | } |
| 665 | DEBUG(dbgs() << "Initial selection DAG: BB#" << BlockNumber |
| 666 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 667 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 668 | if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName); |
Dan Gohman | fadf40a | 2007-10-08 15:12:17 +0000 | [diff] [blame] | 669 | |
Chris Lattner | bcfebeb | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 670 | // Run the DAG combiner in pre-legalize mode. |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 671 | { |
| 672 | NamedRegionTimer T("DAG Combining 1", GroupName, TimePassesIsEnabled); |
Eli Friedman | 9d448e4 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 673 | CurDAG->Combine(BeforeLegalizeTypes, *AA, OptLevel); |
Evan Cheng | fb25735 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 674 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 675 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 676 | DEBUG(dbgs() << "Optimized lowered selection DAG: BB#" << BlockNumber |
| 677 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 678 | |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 679 | // Second step, hack on the DAG until it only uses operations and types that |
| 680 | // the target supports. |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 681 | if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " + |
| 682 | BlockName); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 683 | |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 684 | bool Changed; |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 685 | { |
| 686 | NamedRegionTimer T("Type Legalization", GroupName, TimePassesIsEnabled); |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 687 | Changed = CurDAG->LegalizeTypes(); |
| 688 | } |
| 689 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 690 | DEBUG(dbgs() << "Type-legalized selection DAG: BB#" << BlockNumber |
| 691 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 692 | |
Daniel Sanders | b021c6f | 2013-11-25 11:14:43 +0000 | [diff] [blame] | 693 | CurDAG->NewNodesMustHaveLegalTypes = true; |
| 694 | |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 695 | if (Changed) { |
| 696 | if (ViewDAGCombineLT) |
| 697 | CurDAG->viewGraph("dag-combine-lt input for " + BlockName); |
| 698 | |
| 699 | // Run the DAG combiner in post-type-legalize mode. |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 700 | { |
| 701 | NamedRegionTimer T("DAG Combining after legalize types", GroupName, |
| 702 | TimePassesIsEnabled); |
Eli Friedman | 9d448e4 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 703 | CurDAG->Combine(AfterLegalizeTypes, *AA, OptLevel); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 706 | DEBUG(dbgs() << "Optimized type-legalized selection DAG: BB#" << BlockNumber |
| 707 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Andrew Trick | e2431c6 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 708 | |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 709 | } |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 710 | |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 711 | { |
| 712 | NamedRegionTimer T("Vector Legalization", GroupName, TimePassesIsEnabled); |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 713 | Changed = CurDAG->LegalizeVectors(); |
| 714 | } |
Duncan Sands | dc2dac1 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 715 | |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 716 | if (Changed) { |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 717 | { |
| 718 | NamedRegionTimer T("Type Legalization 2", GroupName, TimePassesIsEnabled); |
Bill Wendling | 42bc7ad | 2009-12-28 01:51:30 +0000 | [diff] [blame] | 719 | CurDAG->LegalizeTypes(); |
Eli Friedman | da90dd6 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 720 | } |
| 721 | |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 722 | if (ViewDAGCombineLT) |
| 723 | CurDAG->viewGraph("dag-combine-lv input for " + BlockName); |
Eli Friedman | da90dd6 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 724 | |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 725 | // Run the DAG combiner in post-type-legalize mode. |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 726 | { |
| 727 | NamedRegionTimer T("DAG Combining after legalize vectors", GroupName, |
| 728 | TimePassesIsEnabled); |
Eli Friedman | 9d448e4 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 729 | CurDAG->Combine(AfterLegalizeVectorOps, *AA, OptLevel); |
Eli Friedman | da90dd6 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 730 | } |
Dan Gohman | 6e7073b | 2009-12-05 17:51:33 +0000 | [diff] [blame] | 731 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 732 | DEBUG(dbgs() << "Optimized vector-legalized selection DAG: BB#" |
| 733 | << BlockNumber << " '" << BlockName << "'\n"; CurDAG->dump()); |
Chris Lattner | 17b234c | 2008-07-10 23:37:50 +0000 | [diff] [blame] | 734 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 735 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 736 | if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 737 | |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 738 | { |
| 739 | NamedRegionTimer T("DAG Legalization", GroupName, TimePassesIsEnabled); |
Dan Gohman | d282f46 | 2011-05-16 22:19:54 +0000 | [diff] [blame] | 740 | CurDAG->Legalize(); |
Evan Cheng | fb25735 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 741 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 742 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 743 | DEBUG(dbgs() << "Legalized selection DAG: BB#" << BlockNumber |
| 744 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 745 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 746 | if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 747 | |
Chris Lattner | bcfebeb | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 748 | // Run the DAG combiner in post-legalize mode. |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 749 | { |
| 750 | NamedRegionTimer T("DAG Combining 2", GroupName, TimePassesIsEnabled); |
Eli Friedman | 9d448e4 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 751 | CurDAG->Combine(AfterLegalizeDAG, *AA, OptLevel); |
Evan Cheng | fb25735 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 752 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 753 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 754 | DEBUG(dbgs() << "Optimized legalized selection DAG: BB#" << BlockNumber |
| 755 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Dan Gohman | fadf40a | 2007-10-08 15:12:17 +0000 | [diff] [blame] | 756 | |
Dan Gohman | 600f62b | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 757 | if (OptLevel != CodeGenOpt::None) |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 758 | ComputeLiveOutVRegInfo(); |
Evan Cheng | 51ab449 | 2006-04-28 02:09:19 +0000 | [diff] [blame] | 759 | |
Chris Lattner | f1ed59a | 2010-03-14 19:27:55 +0000 | [diff] [blame] | 760 | if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName); |
| 761 | |
Chris Lattner | 5ca31d9 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 762 | // Third, instruction select all of the operations to machine code, adding the |
| 763 | // code to the MachineBasicBlock. |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 764 | { |
| 765 | NamedRegionTimer T("Instruction Selection", GroupName, TimePassesIsEnabled); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 766 | DoInstructionSelection(); |
Evan Cheng | fb25735 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 767 | } |
Evan Cheng | 0711d68 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 768 | |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 769 | DEBUG(dbgs() << "Selected selection DAG: BB#" << BlockNumber |
| 770 | << " '" << BlockName << "'\n"; CurDAG->dump()); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 771 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 772 | if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName); |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 773 | |
Dan Gohman | adec96f | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 774 | // Schedule machine code. |
Dan Gohman | dfaf646 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 775 | ScheduleDAGSDNodes *Scheduler = CreateScheduler(); |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 776 | { |
| 777 | NamedRegionTimer T("Instruction Scheduling", GroupName, |
| 778 | TimePassesIsEnabled); |
Andrew Trick | 60cf03e | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 779 | Scheduler->Run(CurDAG, FuncInfo->MBB); |
Dan Gohman | adec96f | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 780 | } |
| 781 | |
Dan Gohman | 581cc87 | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 782 | if (ViewSUnitDAGs) Scheduler->viewGraph(); |
| 783 | |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 784 | // Emit machine code to BB. This can change 'BB' to the last block being |
Evan Cheng | 0711d68 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 785 | // inserted into. |
Jakob Stoklund Olesen | 665aa6e | 2010-09-30 19:44:31 +0000 | [diff] [blame] | 786 | MachineBasicBlock *FirstMBB = FuncInfo->MBB, *LastMBB; |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 787 | { |
| 788 | NamedRegionTimer T("Instruction Creation", GroupName, TimePassesIsEnabled); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 789 | |
Andrew Trick | 60cf03e | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 790 | // FuncInfo->InsertPt is passed by reference and set to the end of the |
| 791 | // scheduled instructions. |
| 792 | LastMBB = FuncInfo->MBB = Scheduler->EmitSchedule(FuncInfo->InsertPt); |
Dan Gohman | adec96f | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 793 | } |
| 794 | |
Jakob Stoklund Olesen | 665aa6e | 2010-09-30 19:44:31 +0000 | [diff] [blame] | 795 | // If the block was split, make sure we update any references that are used to |
| 796 | // update PHI nodes later on. |
| 797 | if (FirstMBB != LastMBB) |
| 798 | SDB->UpdateSplitBlock(FirstMBB, LastMBB); |
| 799 | |
Dan Gohman | adec96f | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 800 | // Free the scheduler state. |
Dan Gohman | 6e681a5 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 801 | { |
| 802 | NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName, |
| 803 | TimePassesIsEnabled); |
Dan Gohman | adec96f | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 804 | delete Scheduler; |
Evan Cheng | fb25735 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 805 | } |
Evan Cheng | 0711d68 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 806 | |
Dan Gohman | 5d05971 | 2010-05-01 00:25:44 +0000 | [diff] [blame] | 807 | // Free the SelectionDAG state, now that we're finished with it. |
| 808 | CurDAG->clear(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 809 | } |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 810 | |
Jakob Stoklund Olesen | e3a891c | 2012-04-20 22:08:50 +0000 | [diff] [blame] | 811 | namespace { |
| 812 | /// ISelUpdater - helper class to handle updates of the instruction selection |
| 813 | /// graph. |
| 814 | class ISelUpdater : public SelectionDAG::DAGUpdateListener { |
| 815 | SelectionDAG::allnodes_iterator &ISelPosition; |
| 816 | public: |
| 817 | ISelUpdater(SelectionDAG &DAG, SelectionDAG::allnodes_iterator &isp) |
| 818 | : SelectionDAG::DAGUpdateListener(DAG), ISelPosition(isp) {} |
| 819 | |
| 820 | /// NodeDeleted - Handle nodes deleted from the graph. If the node being |
| 821 | /// deleted is the current ISelPosition node, update ISelPosition. |
| 822 | /// |
Craig Topper | 7b883b3 | 2014-03-08 06:31:39 +0000 | [diff] [blame] | 823 | void NodeDeleted(SDNode *N, SDNode *E) override { |
Jakob Stoklund Olesen | e3a891c | 2012-04-20 22:08:50 +0000 | [diff] [blame] | 824 | if (ISelPosition == SelectionDAG::allnodes_iterator(N)) |
| 825 | ++ISelPosition; |
| 826 | } |
| 827 | }; |
| 828 | } // end anonymous namespace |
| 829 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 830 | void SelectionDAGISel::DoInstructionSelection() { |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 831 | DEBUG(dbgs() << "===== Instruction selection begins: BB#" |
Andrew Trick | b1fd328 | 2011-03-23 01:38:28 +0000 | [diff] [blame] | 832 | << FuncInfo->MBB->getNumber() |
| 833 | << " '" << FuncInfo->MBB->getName() << "'\n"); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 834 | |
| 835 | PreprocessISelDAG(); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 836 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 837 | // Select target instructions for the DAG. |
| 838 | { |
| 839 | // Number all nodes with a topological order and set DAGSize. |
| 840 | DAGSize = CurDAG->AssignTopologicalOrder(); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 841 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 842 | // Create a dummy node (which is not added to allnodes), that adds |
| 843 | // a reference to the root node, preventing it from being deleted, |
| 844 | // and tracking any changes of the root. |
| 845 | HandleSDNode Dummy(CurDAG->getRoot()); |
Jakob Stoklund Olesen | e3a891c | 2012-04-20 22:08:50 +0000 | [diff] [blame] | 846 | SelectionDAG::allnodes_iterator ISelPosition (CurDAG->getRoot().getNode()); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 847 | ++ISelPosition; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 848 | |
Jakob Stoklund Olesen | e3a891c | 2012-04-20 22:08:50 +0000 | [diff] [blame] | 849 | // Make sure that ISelPosition gets properly updated when nodes are deleted |
| 850 | // in calls made from this function. |
| 851 | ISelUpdater ISU(*CurDAG, ISelPosition); |
| 852 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 853 | // The AllNodes list is now topological-sorted. Visit the |
| 854 | // nodes by starting at the end of the list (the root of the |
| 855 | // graph) and preceding back toward the beginning (the entry |
| 856 | // node). |
| 857 | while (ISelPosition != CurDAG->allnodes_begin()) { |
| 858 | SDNode *Node = --ISelPosition; |
| 859 | // Skip dead nodes. DAGCombiner is expected to eliminate all dead nodes, |
| 860 | // but there are currently some corner cases that it misses. Also, this |
| 861 | // makes it theoretically possible to disable the DAGCombiner. |
| 862 | if (Node->use_empty()) |
| 863 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 864 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 865 | SDNode *ResNode = Select(Node); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 866 | |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 867 | // FIXME: This is pretty gross. 'Select' should be changed to not return |
| 868 | // anything at all and this code should be nuked with a tactical strike. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 869 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 870 | // If node should not be replaced, continue with the next one. |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 871 | if (ResNode == Node || Node->getOpcode() == ISD::DELETED_NODE) |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 872 | continue; |
| 873 | // Replace node. |
Justin Holewinski | d068943 | 2013-03-20 00:10:32 +0000 | [diff] [blame] | 874 | if (ResNode) { |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 875 | ReplaceUses(Node, ResNode); |
Justin Holewinski | d068943 | 2013-03-20 00:10:32 +0000 | [diff] [blame] | 876 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 877 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 878 | // If after the replacement this node is not used any more, |
| 879 | // remove this dead node. |
Jakob Stoklund Olesen | e3a891c | 2012-04-20 22:08:50 +0000 | [diff] [blame] | 880 | if (Node->use_empty()) // Don't delete EntryToken, etc. |
Jakob Stoklund Olesen | beb9469 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 881 | CurDAG->RemoveDeadNode(Node); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 882 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 883 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 884 | CurDAG->setRoot(Dummy.getValue()); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 885 | } |
Bill Wendling | 02d3368 | 2010-05-17 23:09:50 +0000 | [diff] [blame] | 886 | |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 887 | DEBUG(dbgs() << "===== Instruction selection ends:\n"); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 888 | |
| 889 | PostprocessISelDAG(); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 890 | } |
| 891 | |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 892 | /// PrepareEHLandingPad - Emit an EH_LABEL, set up live-in registers, and |
| 893 | /// do other setup for EH landing-pad blocks. |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 894 | void SelectionDAGISel::PrepareEHLandingPad() { |
Bill Wendling | e61c625 | 2011-10-05 22:16:11 +0000 | [diff] [blame] | 895 | MachineBasicBlock *MBB = FuncInfo->MBB; |
| 896 | |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 897 | // Add a label to mark the beginning of the landing pad. Deletion of the |
| 898 | // landing pad can thus be detected via the MachineModuleInfo. |
Bill Wendling | e61c625 | 2011-10-05 22:16:11 +0000 | [diff] [blame] | 899 | MCSymbol *Label = MF->getMMI().addLandingPad(MBB); |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 900 | |
Bill Wendling | 267f323 | 2011-10-05 22:24:35 +0000 | [diff] [blame] | 901 | // Assign the call site to the landing pad's begin label. |
| 902 | MF->getMMI().setCallSiteLandingPad(Label, SDB->LPadToCallSiteMap[MBB]); |
Andrew Trick | 5297d8d | 2012-03-07 00:18:15 +0000 | [diff] [blame] | 903 | |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 904 | const MCInstrDesc &II = TM.getInstrInfo()->get(TargetOpcode::EH_LABEL); |
Bill Wendling | e61c625 | 2011-10-05 22:16:11 +0000 | [diff] [blame] | 905 | BuildMI(*MBB, FuncInfo->InsertPt, SDB->getCurDebugLoc(), II) |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 906 | .addSym(Label); |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 907 | |
| 908 | // Mark exception register as live in. |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 909 | const TargetLowering *TLI = getTargetLowering(); |
Jakob Stoklund Olesen | fee2a20 | 2013-07-04 04:53:45 +0000 | [diff] [blame] | 910 | const TargetRegisterClass *PtrRC = TLI->getRegClassFor(TLI->getPointerTy()); |
| 911 | if (unsigned Reg = TLI->getExceptionPointerRegister()) |
| 912 | FuncInfo->ExceptionPointerVirtReg = MBB->addLiveIn(Reg, PtrRC); |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 913 | |
| 914 | // Mark exception selector register as live in. |
Jakob Stoklund Olesen | fee2a20 | 2013-07-04 04:53:45 +0000 | [diff] [blame] | 915 | if (unsigned Reg = TLI->getExceptionSelectorRegister()) |
| 916 | FuncInfo->ExceptionSelectorVirtReg = MBB->addLiveIn(Reg, PtrRC); |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 917 | } |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 918 | |
Chris Lattner | d70ff0d | 2011-04-17 06:03:19 +0000 | [diff] [blame] | 919 | /// isFoldedOrDeadInstruction - Return true if the specified instruction is |
| 920 | /// side-effect free and is either dead or folded into a generated instruction. |
| 921 | /// Return false if it needs to be emitted. |
| 922 | static bool isFoldedOrDeadInstruction(const Instruction *I, |
| 923 | FunctionLoweringInfo *FuncInfo) { |
Chris Lattner | 6d27751 | 2011-04-22 21:59:37 +0000 | [diff] [blame] | 924 | return !I->mayWriteToMemory() && // Side-effecting instructions aren't folded. |
| 925 | !isa<TerminatorInst>(I) && // Terminators aren't folded. |
| 926 | !isa<DbgInfoIntrinsic>(I) && // Debug instructions aren't folded. |
Bill Wendling | 4eb0433 | 2011-08-23 21:33:05 +0000 | [diff] [blame] | 927 | !isa<LandingPadInst>(I) && // Landingpad instructions aren't folded. |
Chris Lattner | 6d27751 | 2011-04-22 21:59:37 +0000 | [diff] [blame] | 928 | !FuncInfo->isExportedInst(I); // Exported instrs must be computed. |
Chris Lattner | d70ff0d | 2011-04-17 06:03:19 +0000 | [diff] [blame] | 929 | } |
| 930 | |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 931 | #ifndef NDEBUG |
Chad Rosier | 73a3fab | 2012-01-06 23:45:47 +0000 | [diff] [blame] | 932 | // Collect per Instruction statistics for fast-isel misses. Only those |
| 933 | // instructions that cause the bail are accounted for. It does not account for |
| 934 | // instructions higher in the block. Thus, summing the per instructions stats |
| 935 | // will not add up to what is reported by NumFastIselFailures. |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 936 | static void collectFailStats(const Instruction *I) { |
| 937 | switch (I->getOpcode()) { |
| 938 | default: assert (0 && "<Invalid operator> "); |
| 939 | |
| 940 | // Terminators |
| 941 | case Instruction::Ret: NumFastIselFailRet++; return; |
| 942 | case Instruction::Br: NumFastIselFailBr++; return; |
| 943 | case Instruction::Switch: NumFastIselFailSwitch++; return; |
| 944 | case Instruction::IndirectBr: NumFastIselFailIndirectBr++; return; |
| 945 | case Instruction::Invoke: NumFastIselFailInvoke++; return; |
| 946 | case Instruction::Resume: NumFastIselFailResume++; return; |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 947 | case Instruction::Unreachable: NumFastIselFailUnreachable++; return; |
| 948 | |
| 949 | // Standard binary operators... |
| 950 | case Instruction::Add: NumFastIselFailAdd++; return; |
| 951 | case Instruction::FAdd: NumFastIselFailFAdd++; return; |
| 952 | case Instruction::Sub: NumFastIselFailSub++; return; |
| 953 | case Instruction::FSub: NumFastIselFailFSub++; return; |
| 954 | case Instruction::Mul: NumFastIselFailMul++; return; |
| 955 | case Instruction::FMul: NumFastIselFailFMul++; return; |
| 956 | case Instruction::UDiv: NumFastIselFailUDiv++; return; |
| 957 | case Instruction::SDiv: NumFastIselFailSDiv++; return; |
| 958 | case Instruction::FDiv: NumFastIselFailFDiv++; return; |
| 959 | case Instruction::URem: NumFastIselFailURem++; return; |
| 960 | case Instruction::SRem: NumFastIselFailSRem++; return; |
| 961 | case Instruction::FRem: NumFastIselFailFRem++; return; |
| 962 | |
| 963 | // Logical operators... |
| 964 | case Instruction::And: NumFastIselFailAnd++; return; |
| 965 | case Instruction::Or: NumFastIselFailOr++; return; |
| 966 | case Instruction::Xor: NumFastIselFailXor++; return; |
| 967 | |
| 968 | // Memory instructions... |
| 969 | case Instruction::Alloca: NumFastIselFailAlloca++; return; |
| 970 | case Instruction::Load: NumFastIselFailLoad++; return; |
| 971 | case Instruction::Store: NumFastIselFailStore++; return; |
| 972 | case Instruction::AtomicCmpXchg: NumFastIselFailAtomicCmpXchg++; return; |
| 973 | case Instruction::AtomicRMW: NumFastIselFailAtomicRMW++; return; |
| 974 | case Instruction::Fence: NumFastIselFailFence++; return; |
| 975 | case Instruction::GetElementPtr: NumFastIselFailGetElementPtr++; return; |
| 976 | |
| 977 | // Convert instructions... |
| 978 | case Instruction::Trunc: NumFastIselFailTrunc++; return; |
| 979 | case Instruction::ZExt: NumFastIselFailZExt++; return; |
| 980 | case Instruction::SExt: NumFastIselFailSExt++; return; |
| 981 | case Instruction::FPTrunc: NumFastIselFailFPTrunc++; return; |
| 982 | case Instruction::FPExt: NumFastIselFailFPExt++; return; |
| 983 | case Instruction::FPToUI: NumFastIselFailFPToUI++; return; |
| 984 | case Instruction::FPToSI: NumFastIselFailFPToSI++; return; |
| 985 | case Instruction::UIToFP: NumFastIselFailUIToFP++; return; |
| 986 | case Instruction::SIToFP: NumFastIselFailSIToFP++; return; |
Andrew Trick | 5297d8d | 2012-03-07 00:18:15 +0000 | [diff] [blame] | 987 | case Instruction::IntToPtr: NumFastIselFailIntToPtr++; return; |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 988 | case Instruction::PtrToInt: NumFastIselFailPtrToInt++; return; |
Andrew Trick | 5297d8d | 2012-03-07 00:18:15 +0000 | [diff] [blame] | 989 | case Instruction::BitCast: NumFastIselFailBitCast++; return; |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 990 | |
| 991 | // Other instructions... |
| 992 | case Instruction::ICmp: NumFastIselFailICmp++; return; |
| 993 | case Instruction::FCmp: NumFastIselFailFCmp++; return; |
| 994 | case Instruction::PHI: NumFastIselFailPHI++; return; |
| 995 | case Instruction::Select: NumFastIselFailSelect++; return; |
Juergen Ributzka | 89fe23e | 2014-06-10 18:17:00 +0000 | [diff] [blame] | 996 | case Instruction::Call: { |
| 997 | if (auto const *Intrinsic = dyn_cast<IntrinsicInst>(I)) { |
| 998 | switch (Intrinsic->getIntrinsicID()) { |
| 999 | default: |
| 1000 | NumFastIselFailIntrinsicCall++; return; |
| 1001 | case Intrinsic::sadd_with_overflow: |
| 1002 | NumFastIselFailSAddWithOverflow++; return; |
| 1003 | case Intrinsic::uadd_with_overflow: |
| 1004 | NumFastIselFailUAddWithOverflow++; return; |
| 1005 | case Intrinsic::ssub_with_overflow: |
| 1006 | NumFastIselFailSSubWithOverflow++; return; |
| 1007 | case Intrinsic::usub_with_overflow: |
| 1008 | NumFastIselFailUSubWithOverflow++; return; |
| 1009 | case Intrinsic::smul_with_overflow: |
| 1010 | NumFastIselFailSMulWithOverflow++; return; |
| 1011 | case Intrinsic::umul_with_overflow: |
| 1012 | NumFastIselFailUMulWithOverflow++; return; |
| 1013 | case Intrinsic::frameaddress: |
| 1014 | NumFastIselFailFrameaddress++; return; |
| 1015 | case Intrinsic::sqrt: |
| 1016 | NumFastIselFailSqrt++; return; |
| 1017 | case Intrinsic::experimental_stackmap: |
| 1018 | NumFastIselFailStackMap++; return; |
| 1019 | case Intrinsic::experimental_patchpoint_void: // fall-through |
| 1020 | case Intrinsic::experimental_patchpoint_i64: |
| 1021 | NumFastIselFailPatchPoint++; return; |
| 1022 | } |
| 1023 | } |
| 1024 | NumFastIselFailCall++; |
| 1025 | return; |
| 1026 | } |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 1027 | case Instruction::Shl: NumFastIselFailShl++; return; |
| 1028 | case Instruction::LShr: NumFastIselFailLShr++; return; |
| 1029 | case Instruction::AShr: NumFastIselFailAShr++; return; |
| 1030 | case Instruction::VAArg: NumFastIselFailVAArg++; return; |
| 1031 | case Instruction::ExtractElement: NumFastIselFailExtractElement++; return; |
| 1032 | case Instruction::InsertElement: NumFastIselFailInsertElement++; return; |
| 1033 | case Instruction::ShuffleVector: NumFastIselFailShuffleVector++; return; |
| 1034 | case Instruction::ExtractValue: NumFastIselFailExtractValue++; return; |
| 1035 | case Instruction::InsertValue: NumFastIselFailInsertValue++; return; |
| 1036 | case Instruction::LandingPad: NumFastIselFailLandingPad++; return; |
| 1037 | } |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 1038 | } |
| 1039 | #endif |
| 1040 | |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1041 | void SelectionDAGISel::SelectAllBasicBlocks(const Function &Fn) { |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1042 | // Initialize the Fast-ISel state, if needed. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1043 | FastISel *FastIS = nullptr; |
NAKAMURA Takumi | 43aa939 | 2013-11-21 10:55:15 +0000 | [diff] [blame] | 1044 | if (TM.Options.EnableFastISel) |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1045 | FastIS = getTargetLowering()->createFastISel(*FuncInfo, LibInfo); |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1046 | |
| 1047 | // Iterate over all basic blocks in the function. |
Cameron Zwarich | b670d51 | 2011-02-24 10:00:04 +0000 | [diff] [blame] | 1048 | ReversePostOrderTraversal<const Function*> RPOT(&Fn); |
| 1049 | for (ReversePostOrderTraversal<const Function*>::rpo_iterator |
| 1050 | I = RPOT.begin(), E = RPOT.end(); I != E; ++I) { |
| 1051 | const BasicBlock *LLVMBB = *I; |
Cameron Zwarich | 988faf9 | 2011-02-24 10:00:13 +0000 | [diff] [blame] | 1052 | |
Cameron Zwarich | 97eb52da | 2011-02-24 10:00:16 +0000 | [diff] [blame] | 1053 | if (OptLevel != CodeGenOpt::None) { |
| 1054 | bool AllPredsVisited = true; |
| 1055 | for (const_pred_iterator PI = pred_begin(LLVMBB), PE = pred_end(LLVMBB); |
| 1056 | PI != PE; ++PI) { |
| 1057 | if (!FuncInfo->VisitedBBs.count(*PI)) { |
| 1058 | AllPredsVisited = false; |
| 1059 | break; |
| 1060 | } |
| 1061 | } |
| 1062 | |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 1063 | if (AllPredsVisited) { |
Chris Lattner | d70ff0d | 2011-04-17 06:03:19 +0000 | [diff] [blame] | 1064 | for (BasicBlock::const_iterator I = LLVMBB->begin(); |
Jakub Staszak | bac8ae6 | 2012-12-04 00:50:06 +0000 | [diff] [blame] | 1065 | const PHINode *PN = dyn_cast<PHINode>(I); ++I) |
| 1066 | FuncInfo->ComputePHILiveOutRegInfo(PN); |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 1067 | } else { |
Chris Lattner | d70ff0d | 2011-04-17 06:03:19 +0000 | [diff] [blame] | 1068 | for (BasicBlock::const_iterator I = LLVMBB->begin(); |
Jakub Staszak | bac8ae6 | 2012-12-04 00:50:06 +0000 | [diff] [blame] | 1069 | const PHINode *PN = dyn_cast<PHINode>(I); ++I) |
| 1070 | FuncInfo->InvalidatePHILiveOutRegInfo(PN); |
Cameron Zwarich | 97eb52da | 2011-02-24 10:00:16 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
Cameron Zwarich | 988faf9 | 2011-02-24 10:00:13 +0000 | [diff] [blame] | 1073 | FuncInfo->VisitedBBs.insert(LLVMBB); |
Cameron Zwarich | 97eb52da | 2011-02-24 10:00:16 +0000 | [diff] [blame] | 1074 | } |
Cameron Zwarich | 988faf9 | 2011-02-24 10:00:13 +0000 | [diff] [blame] | 1075 | |
Dan Gohman | f41ad47 | 2010-04-20 15:00:41 +0000 | [diff] [blame] | 1076 | BasicBlock::const_iterator const Begin = LLVMBB->getFirstNonPHI(); |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1077 | BasicBlock::const_iterator const End = LLVMBB->end(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1078 | BasicBlock::const_iterator BI = End; |
Dan Gohman | 360c57f | 2008-08-28 20:28:56 +0000 | [diff] [blame] | 1079 | |
Eli Bendersky | b1caf3c | 2013-03-01 23:32:40 +0000 | [diff] [blame] | 1080 | FuncInfo->MBB = FuncInfo->MBBMap[LLVMBB]; |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1081 | FuncInfo->InsertPt = FuncInfo->MBB->getFirstNonPHI(); |
| 1082 | |
| 1083 | // Setup an EH landing-pad block. |
Jakob Stoklund Olesen | fee2a20 | 2013-07-04 04:53:45 +0000 | [diff] [blame] | 1084 | FuncInfo->ExceptionPointerVirtReg = 0; |
| 1085 | FuncInfo->ExceptionSelectorVirtReg = 0; |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1086 | if (FuncInfo->MBB->isLandingPad()) |
| 1087 | PrepareEHLandingPad(); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1088 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1089 | // Before doing SelectionDAG ISel, see if FastISel has been requested. |
Dan Gohman | ec74444 | 2010-05-01 02:44:23 +0000 | [diff] [blame] | 1090 | if (FastIS) { |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1091 | FastIS->startNewBlock(); |
| 1092 | |
Dan Gohman | e757043 | 2010-07-08 01:00:56 +0000 | [diff] [blame] | 1093 | // Emit code for any incoming arguments. This must happen before |
| 1094 | // beginning FastISel on the entry block. |
| 1095 | if (LLVMBB == &Fn.getEntryBlock()) { |
Eli Bendersky | 6084f45 | 2013-04-19 01:04:40 +0000 | [diff] [blame] | 1096 | ++NumEntryBlocks; |
| 1097 | |
Evan Cheng | 615620c | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 1098 | // Lower any arguments needed in this block if this is the entry block. |
| 1099 | if (!FastIS->LowerArguments()) { |
Eli Bendersky | 33ebf83 | 2013-02-28 23:09:18 +0000 | [diff] [blame] | 1100 | // Fast isel failed to lower these arguments |
Eli Bendersky | 6084f45 | 2013-04-19 01:04:40 +0000 | [diff] [blame] | 1101 | ++NumFastIselFailLowerArguments; |
Chad Rosier | a92ef4b | 2013-02-25 21:59:35 +0000 | [diff] [blame] | 1102 | if (EnableFastISelAbortArgs) |
Chad Rosier | a92ef4b | 2013-02-25 21:59:35 +0000 | [diff] [blame] | 1103 | llvm_unreachable("FastISel didn't lower all arguments"); |
| 1104 | |
Eli Bendersky | 33ebf83 | 2013-02-28 23:09:18 +0000 | [diff] [blame] | 1105 | // Use SelectionDAG argument lowering |
| 1106 | LowerArguments(Fn); |
Evan Cheng | 615620c | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 1107 | CurDAG->setRoot(SDB->getControlRoot()); |
| 1108 | SDB->clear(); |
| 1109 | CodeGenAndEmitDAG(); |
| 1110 | } |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1111 | |
| 1112 | // If we inserted any instructions at the beginning, make a note of |
| 1113 | // where they are, so we can be sure to emit subsequent instructions |
| 1114 | // after them. |
| 1115 | if (FuncInfo->InsertPt != FuncInfo->MBB->begin()) |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1116 | FastIS->setLastLocalValue(std::prev(FuncInfo->InsertPt)); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1117 | else |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1118 | FastIS->setLastLocalValue(nullptr); |
Dan Gohman | e757043 | 2010-07-08 01:00:56 +0000 | [diff] [blame] | 1119 | } |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1120 | |
Nadav Rotem | c29095f | 2013-02-27 22:52:54 +0000 | [diff] [blame] | 1121 | unsigned NumFastIselRemaining = std::distance(Begin, End); |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1122 | // Do FastISel on as many instructions as possible. |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1123 | for (; BI != Begin; --BI) { |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1124 | const Instruction *Inst = std::prev(BI); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1125 | |
| 1126 | // If we no longer require this instruction, skip it. |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1127 | if (isFoldedOrDeadInstruction(Inst, FuncInfo)) { |
| 1128 | --NumFastIselRemaining; |
Dan Gohman | 722f5fc | 2010-07-01 02:58:57 +0000 | [diff] [blame] | 1129 | continue; |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1130 | } |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1131 | |
| 1132 | // Bottom-up: reset the insert pos at the top, after any local-value |
| 1133 | // instructions. |
| 1134 | FastIS->recomputeInsertPt(); |
Dan Gohman | 722f5fc | 2010-07-01 02:58:57 +0000 | [diff] [blame] | 1135 | |
Dan Gohman | d49763d | 2010-01-12 04:32:35 +0000 | [diff] [blame] | 1136 | // Try to select the instruction with FastISel. |
Chris Lattner | eeba0c7 | 2010-09-05 02:18:34 +0000 | [diff] [blame] | 1137 | if (FastIS->SelectInstruction(Inst)) { |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1138 | --NumFastIselRemaining; |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 1139 | ++NumFastIselSuccess; |
Chris Lattner | 6d27751 | 2011-04-22 21:59:37 +0000 | [diff] [blame] | 1140 | // If fast isel succeeded, skip over all the folded instructions, and |
| 1141 | // then see if there is a load right before the selected instructions. |
| 1142 | // Try to fold the load if so. |
| 1143 | const Instruction *BeforeInst = Inst; |
| 1144 | while (BeforeInst != Begin) { |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1145 | BeforeInst = std::prev(BasicBlock::const_iterator(BeforeInst)); |
Chris Lattner | 6d27751 | 2011-04-22 21:59:37 +0000 | [diff] [blame] | 1146 | if (!isFoldedOrDeadInstruction(BeforeInst, FuncInfo)) |
| 1147 | break; |
| 1148 | } |
| 1149 | if (BeforeInst != Inst && isa<LoadInst>(BeforeInst) && |
| 1150 | BeforeInst->hasOneUse() && |
Eli Bendersky | 90dd3e7 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 1151 | FastIS->tryToFoldLoad(cast<LoadInst>(BeforeInst), Inst)) { |
Chris Lattner | 6d27751 | 2011-04-22 21:59:37 +0000 | [diff] [blame] | 1152 | // If we succeeded, don't re-select the load. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1153 | BI = std::next(BasicBlock::const_iterator(BeforeInst)); |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1154 | --NumFastIselRemaining; |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 1155 | ++NumFastIselSuccess; |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1156 | } |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1157 | continue; |
Chris Lattner | eeba0c7 | 2010-09-05 02:18:34 +0000 | [diff] [blame] | 1158 | } |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1159 | |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 1160 | #ifndef NDEBUG |
Chad Rosier | 2f8347e | 2011-12-13 00:05:11 +0000 | [diff] [blame] | 1161 | if (EnableFastISelVerbose2) |
| 1162 | collectFailStats(Inst); |
Chad Rosier | 0464869 | 2011-12-08 21:37:10 +0000 | [diff] [blame] | 1163 | #endif |
| 1164 | |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1165 | // Then handle certain instructions as single-LLVM-Instruction blocks. |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1166 | if (isa<CallInst>(Inst)) { |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1167 | |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1168 | if (EnableFastISelVerbose || EnableFastISelAbort) { |
David Greene | 30ed3ca | 2010-01-05 01:26:11 +0000 | [diff] [blame] | 1169 | dbgs() << "FastISel missed call: "; |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1170 | Inst->dump(); |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1173 | if (!Inst->getType()->isVoidTy() && !Inst->use_empty()) { |
| 1174 | unsigned &R = FuncInfo->ValueMap[Inst]; |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1175 | if (!R) |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1176 | R = FuncInfo->CreateRegs(Inst->getType()); |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
Dan Gohman | 20c8ab6 | 2009-11-20 02:51:26 +0000 | [diff] [blame] | 1179 | bool HadTailCall = false; |
Chad Rosier | df42cf3 | 2012-12-11 00:18:02 +0000 | [diff] [blame] | 1180 | MachineBasicBlock::iterator SavedInsertPt = FuncInfo->InsertPt; |
Devang Patel | 43c3f4b | 2010-10-25 21:31:46 +0000 | [diff] [blame] | 1181 | SelectBasicBlock(Inst, BI, HadTailCall); |
Dan Gohman | 20c8ab6 | 2009-11-20 02:51:26 +0000 | [diff] [blame] | 1182 | |
Chad Rosier | df42cf3 | 2012-12-11 00:18:02 +0000 | [diff] [blame] | 1183 | // If the call was emitted as a tail call, we're done with the block. |
| 1184 | // We also need to delete any previously emitted instructions. |
| 1185 | if (HadTailCall) { |
| 1186 | FastIS->removeDeadCode(SavedInsertPt, FuncInfo->MBB->end()); |
| 1187 | --BI; |
| 1188 | break; |
| 1189 | } |
| 1190 | |
Chad Rosier | cfd0d10 | 2011-11-16 21:02:08 +0000 | [diff] [blame] | 1191 | // Recompute NumFastIselRemaining as Selection DAG instruction |
| 1192 | // selection may have handled the call, input args, etc. |
| 1193 | unsigned RemainingNow = std::distance(Begin, BI); |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 1194 | NumFastIselFailures += NumFastIselRemaining - RemainingNow; |
| 1195 | NumFastIselRemaining = RemainingNow; |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1196 | continue; |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1197 | } |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1198 | |
Eli Friedman | e969280 | 2011-05-17 23:02:10 +0000 | [diff] [blame] | 1199 | if (isa<TerminatorInst>(Inst) && !isa<BranchInst>(Inst)) { |
| 1200 | // Don't abort, and use a different message for terminator misses. |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 1201 | NumFastIselFailures += NumFastIselRemaining; |
Eli Friedman | e969280 | 2011-05-17 23:02:10 +0000 | [diff] [blame] | 1202 | if (EnableFastISelVerbose || EnableFastISelAbort) { |
| 1203 | dbgs() << "FastISel missed terminator: "; |
| 1204 | Inst->dump(); |
| 1205 | } |
| 1206 | } else { |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 1207 | NumFastIselFailures += NumFastIselRemaining; |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1208 | if (EnableFastISelVerbose || EnableFastISelAbort) { |
David Greene | 30ed3ca | 2010-01-05 01:26:11 +0000 | [diff] [blame] | 1209 | dbgs() << "FastISel miss: "; |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1210 | Inst->dump(); |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1211 | } |
| 1212 | if (EnableFastISelAbort) |
| 1213 | // The "fast" selector couldn't handle something and bailed. |
| 1214 | // For the purpose of debugging, just abort. |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1215 | llvm_unreachable("FastISel didn't select the entire block"); |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1216 | } |
| 1217 | break; |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1218 | } |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1219 | |
| 1220 | FastIS->recomputeInsertPt(); |
Evan Cheng | 615620c | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 1221 | } else { |
| 1222 | // Lower any arguments needed in this block if this is the entry block. |
Eli Bendersky | 6084f45 | 2013-04-19 01:04:40 +0000 | [diff] [blame] | 1223 | if (LLVMBB == &Fn.getEntryBlock()) { |
| 1224 | ++NumEntryBlocks; |
Eli Bendersky | 33ebf83 | 2013-02-28 23:09:18 +0000 | [diff] [blame] | 1225 | LowerArguments(Fn); |
Eli Bendersky | 6084f45 | 2013-04-19 01:04:40 +0000 | [diff] [blame] | 1226 | } |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
Devang Patel | 43c3f4b | 2010-10-25 21:31:46 +0000 | [diff] [blame] | 1229 | if (Begin != BI) |
| 1230 | ++NumDAGBlocks; |
| 1231 | else |
| 1232 | ++NumFastIselBlocks; |
| 1233 | |
Eli Friedman | bcd09b3 | 2011-04-19 17:01:08 +0000 | [diff] [blame] | 1234 | if (Begin != BI) { |
| 1235 | // Run SelectionDAG instruction selection on the remainder of the block |
| 1236 | // not handled by FastISel. If FastISel is not run, this is the entire |
| 1237 | // block. |
| 1238 | bool HadTailCall; |
| 1239 | SelectBasicBlock(Begin, BI, HadTailCall); |
| 1240 | } |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1241 | |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1242 | FinishBasicBlock(); |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1243 | FuncInfo->PHINodesToUpdate.clear(); |
Evan Cheng | 0638115 | 2008-08-07 00:43:25 +0000 | [diff] [blame] | 1244 | } |
Dan Gohman | 4aa9095 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 1245 | |
| 1246 | delete FastIS; |
Devang Patel | 79928838 | 2011-05-23 17:44:13 +0000 | [diff] [blame] | 1247 | SDB->clearDanglingDebugInfo(); |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1248 | SDB->SPDescriptor.resetPerFunctionState(); |
| 1249 | } |
| 1250 | |
Michael Gottesman | 1adac35 | 2013-08-22 05:40:50 +0000 | [diff] [blame] | 1251 | /// Given that the input MI is before a partial terminator sequence TSeq, return |
| 1252 | /// true if M + TSeq also a partial terminator sequence. |
| 1253 | /// |
| 1254 | /// A Terminator sequence is a sequence of MachineInstrs which at this point in |
| 1255 | /// lowering copy vregs into physical registers, which are then passed into |
| 1256 | /// terminator instructors so we can satisfy ABI constraints. A partial |
| 1257 | /// terminator sequence is an improper subset of a terminator sequence (i.e. it |
| 1258 | /// may be the whole terminator sequence). |
| 1259 | static bool MIIsInTerminatorSequence(const MachineInstr *MI) { |
| 1260 | // If we do not have a copy or an implicit def, we return true if and only if |
| 1261 | // MI is a debug value. |
| 1262 | if (!MI->isCopy() && !MI->isImplicitDef()) |
| 1263 | // Sometimes DBG_VALUE MI sneak in between the copies from the vregs to the |
| 1264 | // physical registers if there is debug info associated with the terminator |
| 1265 | // of our mbb. We want to include said debug info in our terminator |
| 1266 | // sequence, so we return true in that case. |
| 1267 | return MI->isDebugValue(); |
| 1268 | |
Michael Gottesman | 5e3600c | 2013-09-24 01:50:26 +0000 | [diff] [blame] | 1269 | // We have left the terminator sequence if we are not doing one of the |
| 1270 | // following: |
| 1271 | // |
| 1272 | // 1. Copying a vreg into a physical register. |
| 1273 | // 2. Copying a vreg into a vreg. |
| 1274 | // 3. Defining a register via an implicit def. |
| 1275 | |
| 1276 | // OPI should always be a register definition... |
| 1277 | MachineInstr::const_mop_iterator OPI = MI->operands_begin(); |
Andrew Trick | 6f5aad7 | 2013-09-26 05:53:31 +0000 | [diff] [blame] | 1278 | if (!OPI->isReg() || !OPI->isDef()) |
Michael Gottesman | 5e3600c | 2013-09-24 01:50:26 +0000 | [diff] [blame] | 1279 | return false; |
| 1280 | |
| 1281 | // Defining any register via an implicit def is always ok. |
| 1282 | if (MI->isImplicitDef()) |
| 1283 | return true; |
| 1284 | |
| 1285 | // Grab the copy source... |
| 1286 | MachineInstr::const_mop_iterator OPI2 = OPI; |
| 1287 | ++OPI2; |
| 1288 | assert(OPI2 != MI->operands_end() |
| 1289 | && "Should have a copy implying we should have 2 arguments."); |
| 1290 | |
| 1291 | // Make sure that the copy dest is not a vreg when the copy source is a |
| 1292 | // physical register. |
| 1293 | if (!OPI2->isReg() || |
Michael Gottesman | 1adac35 | 2013-08-22 05:40:50 +0000 | [diff] [blame] | 1294 | (!TargetRegisterInfo::isPhysicalRegister(OPI->getReg()) && |
Michael Gottesman | 5e3600c | 2013-09-24 01:50:26 +0000 | [diff] [blame] | 1295 | TargetRegisterInfo::isPhysicalRegister(OPI2->getReg()))) |
Michael Gottesman | 1adac35 | 2013-08-22 05:40:50 +0000 | [diff] [blame] | 1296 | return false; |
| 1297 | |
| 1298 | return true; |
| 1299 | } |
| 1300 | |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1301 | /// Find the split point at which to splice the end of BB into its success stack |
| 1302 | /// protector check machine basic block. |
Michael Gottesman | 1adac35 | 2013-08-22 05:40:50 +0000 | [diff] [blame] | 1303 | /// |
| 1304 | /// On many platforms, due to ABI constraints, terminators, even before register |
| 1305 | /// allocation, use physical registers. This creates an issue for us since |
| 1306 | /// physical registers at this point can not travel across basic |
| 1307 | /// blocks. Luckily, selectiondag always moves physical registers into vregs |
| 1308 | /// when they enter functions and moves them through a sequence of copies back |
| 1309 | /// into the physical registers right before the terminator creating a |
| 1310 | /// ``Terminator Sequence''. This function is searching for the beginning of the |
| 1311 | /// terminator sequence so that we can ensure that we splice off not just the |
| 1312 | /// terminator, but additionally the copies that move the vregs into the |
| 1313 | /// physical registers. |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1314 | static MachineBasicBlock::iterator |
| 1315 | FindSplitPointForStackProtector(MachineBasicBlock *BB, DebugLoc DL) { |
Andrew Trick | 6f5aad7 | 2013-09-26 05:53:31 +0000 | [diff] [blame] | 1316 | MachineBasicBlock::iterator SplitPoint = BB->getFirstTerminator(); |
Michael Gottesman | 1adac35 | 2013-08-22 05:40:50 +0000 | [diff] [blame] | 1317 | // |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1318 | if (SplitPoint == BB->begin()) |
| 1319 | return SplitPoint; |
| 1320 | |
| 1321 | MachineBasicBlock::iterator Start = BB->begin(); |
| 1322 | MachineBasicBlock::iterator Previous = SplitPoint; |
| 1323 | --Previous; |
| 1324 | |
Michael Gottesman | 1adac35 | 2013-08-22 05:40:50 +0000 | [diff] [blame] | 1325 | while (MIIsInTerminatorSequence(Previous)) { |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1326 | SplitPoint = Previous; |
| 1327 | if (Previous == Start) |
| 1328 | break; |
| 1329 | --Previous; |
| 1330 | } |
| 1331 | |
| 1332 | return SplitPoint; |
Dan Gohman | 7f8b6d5 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 1333 | } |
| 1334 | |
Dan Gohman | 804c95d | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 1335 | void |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1336 | SelectionDAGISel::FinishBasicBlock() { |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1337 | |
David Greene | 30ed3ca | 2010-01-05 01:26:11 +0000 | [diff] [blame] | 1338 | DEBUG(dbgs() << "Total amount of phi nodes to update: " |
Dan Gohman | 7edb39c | 2010-06-18 16:00:29 +0000 | [diff] [blame] | 1339 | << FuncInfo->PHINodesToUpdate.size() << "\n"; |
| 1340 | for (unsigned i = 0, e = FuncInfo->PHINodesToUpdate.size(); i != e; ++i) |
David Greene | 30ed3ca | 2010-01-05 01:26:11 +0000 | [diff] [blame] | 1341 | dbgs() << "Node " << i << " : (" |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1342 | << FuncInfo->PHINodesToUpdate[i].first |
| 1343 | << ", " << FuncInfo->PHINodesToUpdate[i].second << ")\n"); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1344 | |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1345 | const bool MustUpdatePHINodes = SDB->SwitchCases.empty() && |
| 1346 | SDB->JTCases.empty() && |
| 1347 | SDB->BitTestCases.empty(); |
| 1348 | |
Chris Lattner | 5ca31d9 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 1349 | // Next, now that we know what the last MBB the LLVM BB expanded is, update |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1350 | // PHI nodes in successors. |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1351 | if (MustUpdatePHINodes) { |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1352 | for (unsigned i = 0, e = FuncInfo->PHINodesToUpdate.size(); i != e; ++i) { |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1353 | MachineInstrBuilder PHI(*MF, FuncInfo->PHINodesToUpdate[i].first); |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1354 | assert(PHI->isPHI() && |
Nate Begeman | ed728c1 | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1355 | "This is not a machine PHI node that we are updating!"); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1356 | if (!FuncInfo->MBB->isSuccessor(PHI->getParent())) |
Jakob Stoklund Olesen | b0503be | 2010-03-05 21:49:10 +0000 | [diff] [blame] | 1357 | continue; |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1358 | PHI.addReg(FuncInfo->PHINodesToUpdate[i].second).addMBB(FuncInfo->MBB); |
Nate Begeman | ed728c1 | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1359 | } |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1360 | } |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1361 | |
Michael Gottesman | b27f0f1 | 2013-08-20 07:00:16 +0000 | [diff] [blame] | 1362 | // Handle stack protector. |
| 1363 | if (SDB->SPDescriptor.shouldEmitStackProtector()) { |
| 1364 | MachineBasicBlock *ParentMBB = SDB->SPDescriptor.getParentMBB(); |
| 1365 | MachineBasicBlock *SuccessMBB = SDB->SPDescriptor.getSuccessMBB(); |
| 1366 | |
| 1367 | // Find the split point to split the parent mbb. At the same time copy all |
| 1368 | // physical registers used in the tail of parent mbb into virtual registers |
| 1369 | // before the split point and back into physical registers after the split |
| 1370 | // point. This prevents us needing to deal with Live-ins and many other |
| 1371 | // register allocation issues caused by us splitting the parent mbb. The |
| 1372 | // register allocator will clean up said virtual copies later on. |
| 1373 | MachineBasicBlock::iterator SplitPoint = |
| 1374 | FindSplitPointForStackProtector(ParentMBB, SDB->getCurDebugLoc()); |
| 1375 | |
| 1376 | // Splice the terminator of ParentMBB into SuccessMBB. |
| 1377 | SuccessMBB->splice(SuccessMBB->end(), ParentMBB, |
| 1378 | SplitPoint, |
| 1379 | ParentMBB->end()); |
| 1380 | |
| 1381 | // Add compare/jump on neq/jump to the parent BB. |
| 1382 | FuncInfo->MBB = ParentMBB; |
| 1383 | FuncInfo->InsertPt = ParentMBB->end(); |
| 1384 | SDB->visitSPDescriptorParent(SDB->SPDescriptor, ParentMBB); |
| 1385 | CurDAG->setRoot(SDB->getRoot()); |
| 1386 | SDB->clear(); |
| 1387 | CodeGenAndEmitDAG(); |
| 1388 | |
| 1389 | // CodeGen Failure MBB if we have not codegened it yet. |
| 1390 | MachineBasicBlock *FailureMBB = SDB->SPDescriptor.getFailureMBB(); |
| 1391 | if (!FailureMBB->size()) { |
| 1392 | FuncInfo->MBB = FailureMBB; |
| 1393 | FuncInfo->InsertPt = FailureMBB->end(); |
| 1394 | SDB->visitSPDescriptorFailure(SDB->SPDescriptor); |
| 1395 | CurDAG->setRoot(SDB->getRoot()); |
| 1396 | SDB->clear(); |
| 1397 | CodeGenAndEmitDAG(); |
| 1398 | } |
| 1399 | |
| 1400 | // Clear the Per-BB State. |
| 1401 | SDB->SPDescriptor.resetPerBBState(); |
| 1402 | } |
| 1403 | |
| 1404 | // If we updated PHI Nodes, return early. |
| 1405 | if (MustUpdatePHINodes) |
| 1406 | return; |
| 1407 | |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1408 | for (unsigned i = 0, e = SDB->BitTestCases.size(); i != e; ++i) { |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1409 | // Lower header first, if it wasn't already lowered |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1410 | if (!SDB->BitTestCases[i].Emitted) { |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1411 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1412 | FuncInfo->MBB = SDB->BitTestCases[i].Parent; |
| 1413 | FuncInfo->InsertPt = FuncInfo->MBB->end(); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1414 | // Emit the code |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1415 | SDB->visitBitTestHeader(SDB->BitTestCases[i], FuncInfo->MBB); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1416 | CurDAG->setRoot(SDB->getRoot()); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1417 | SDB->clear(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1418 | CodeGenAndEmitDAG(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1419 | } |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1420 | |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 1421 | uint32_t UnhandledWeight = 0; |
| 1422 | for (unsigned j = 0, ej = SDB->BitTestCases[i].Cases.size(); j != ej; ++j) |
| 1423 | UnhandledWeight += SDB->BitTestCases[i].Cases[j].ExtraWeight; |
| 1424 | |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1425 | for (unsigned j = 0, ej = SDB->BitTestCases[i].Cases.size(); j != ej; ++j) { |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 1426 | UnhandledWeight -= SDB->BitTestCases[i].Cases[j].ExtraWeight; |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1427 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1428 | FuncInfo->MBB = SDB->BitTestCases[i].Cases[j].ThisBB; |
| 1429 | FuncInfo->InsertPt = FuncInfo->MBB->end(); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1430 | // Emit the code |
| 1431 | if (j+1 != ej) |
Evan Cheng | ac730dd | 2011-01-06 01:02:44 +0000 | [diff] [blame] | 1432 | SDB->visitBitTestCase(SDB->BitTestCases[i], |
| 1433 | SDB->BitTestCases[i].Cases[j+1].ThisBB, |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 1434 | UnhandledWeight, |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1435 | SDB->BitTestCases[i].Reg, |
Dan Gohman | 7c0303a | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 1436 | SDB->BitTestCases[i].Cases[j], |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1437 | FuncInfo->MBB); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1438 | else |
Evan Cheng | ac730dd | 2011-01-06 01:02:44 +0000 | [diff] [blame] | 1439 | SDB->visitBitTestCase(SDB->BitTestCases[i], |
| 1440 | SDB->BitTestCases[i].Default, |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 1441 | UnhandledWeight, |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1442 | SDB->BitTestCases[i].Reg, |
Dan Gohman | 7c0303a | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 1443 | SDB->BitTestCases[i].Cases[j], |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1444 | FuncInfo->MBB); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1445 | |
| 1446 | |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1447 | CurDAG->setRoot(SDB->getRoot()); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1448 | SDB->clear(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1449 | CodeGenAndEmitDAG(); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1450 | } |
| 1451 | |
| 1452 | // Update PHI Nodes |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1453 | for (unsigned pi = 0, pe = FuncInfo->PHINodesToUpdate.size(); |
| 1454 | pi != pe; ++pi) { |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1455 | MachineInstrBuilder PHI(*MF, FuncInfo->PHINodesToUpdate[pi].first); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1456 | MachineBasicBlock *PHIBB = PHI->getParent(); |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1457 | assert(PHI->isPHI() && |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1458 | "This is not a machine PHI node that we are updating!"); |
| 1459 | // This is "default" BB. We have two jumps to it. From "header" BB and |
| 1460 | // from last "case" BB. |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1461 | if (PHIBB == SDB->BitTestCases[i].Default) |
| 1462 | PHI.addReg(FuncInfo->PHINodesToUpdate[pi].second) |
| 1463 | .addMBB(SDB->BitTestCases[i].Parent) |
| 1464 | .addReg(FuncInfo->PHINodesToUpdate[pi].second) |
| 1465 | .addMBB(SDB->BitTestCases[i].Cases.back().ThisBB); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1466 | // One of "cases" BB. |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1467 | for (unsigned j = 0, ej = SDB->BitTestCases[i].Cases.size(); |
Dan Gohman | e1a9a78 | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1468 | j != ej; ++j) { |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1469 | MachineBasicBlock* cBB = SDB->BitTestCases[i].Cases[j].ThisBB; |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1470 | if (cBB->isSuccessor(PHIBB)) |
| 1471 | PHI.addReg(FuncInfo->PHINodesToUpdate[pi].second).addMBB(cBB); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1472 | } |
| 1473 | } |
| 1474 | } |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1475 | SDB->BitTestCases.clear(); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1476 | |
Nate Begeman | 866b4b4 | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 1477 | // If the JumpTable record is filled in, then we need to emit a jump table. |
| 1478 | // Updating the PHI nodes is tricky in this case, since we need to determine |
| 1479 | // whether the PHI is a successor of the range check MBB or the jump table MBB |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1480 | for (unsigned i = 0, e = SDB->JTCases.size(); i != e; ++i) { |
Anton Korobeynikov | 7037826 | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1481 | // Lower header first, if it wasn't already lowered |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1482 | if (!SDB->JTCases[i].first.Emitted) { |
Anton Korobeynikov | 7037826 | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1483 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1484 | FuncInfo->MBB = SDB->JTCases[i].first.HeaderBB; |
| 1485 | FuncInfo->InsertPt = FuncInfo->MBB->end(); |
Anton Korobeynikov | 7037826 | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1486 | // Emit the code |
Dan Gohman | 7c0303a | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 1487 | SDB->visitJumpTableHeader(SDB->JTCases[i].second, SDB->JTCases[i].first, |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1488 | FuncInfo->MBB); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1489 | CurDAG->setRoot(SDB->getRoot()); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1490 | SDB->clear(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1491 | CodeGenAndEmitDAG(); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1492 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1493 | |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1494 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1495 | FuncInfo->MBB = SDB->JTCases[i].second.MBB; |
| 1496 | FuncInfo->InsertPt = FuncInfo->MBB->end(); |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1497 | // Emit the code |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1498 | SDB->visitJumpTable(SDB->JTCases[i].second); |
| 1499 | CurDAG->setRoot(SDB->getRoot()); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1500 | SDB->clear(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1501 | CodeGenAndEmitDAG(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1502 | |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1503 | // Update PHI Nodes |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1504 | for (unsigned pi = 0, pe = FuncInfo->PHINodesToUpdate.size(); |
| 1505 | pi != pe; ++pi) { |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1506 | MachineInstrBuilder PHI(*MF, FuncInfo->PHINodesToUpdate[pi].first); |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1507 | MachineBasicBlock *PHIBB = PHI->getParent(); |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1508 | assert(PHI->isPHI() && |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1509 | "This is not a machine PHI node that we are updating!"); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1510 | // "default" BB. We can go there only from header BB. |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1511 | if (PHIBB == SDB->JTCases[i].second.Default) |
| 1512 | PHI.addReg(FuncInfo->PHINodesToUpdate[pi].second) |
| 1513 | .addMBB(SDB->JTCases[i].first.HeaderBB); |
Anton Korobeynikov | 506eaf7 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1514 | // JT BB. Just iterate over successors here |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1515 | if (FuncInfo->MBB->isSuccessor(PHIBB)) |
| 1516 | PHI.addReg(FuncInfo->PHINodesToUpdate[pi].second).addMBB(FuncInfo->MBB); |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1517 | } |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1518 | } |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1519 | SDB->JTCases.clear(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1520 | |
Chris Lattner | 76a7bc8 | 2006-10-22 23:00:53 +0000 | [diff] [blame] | 1521 | // If the switch block involved a branch to one of the actual successors, we |
| 1522 | // need to update PHI nodes in that block. |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1523 | for (unsigned i = 0, e = FuncInfo->PHINodesToUpdate.size(); i != e; ++i) { |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1524 | MachineInstrBuilder PHI(*MF, FuncInfo->PHINodesToUpdate[i].first); |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1525 | assert(PHI->isPHI() && |
Chris Lattner | 76a7bc8 | 2006-10-22 23:00:53 +0000 | [diff] [blame] | 1526 | "This is not a machine PHI node that we are updating!"); |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1527 | if (FuncInfo->MBB->isSuccessor(PHI->getParent())) |
| 1528 | PHI.addReg(FuncInfo->PHINodesToUpdate[i].second).addMBB(FuncInfo->MBB); |
Chris Lattner | 76a7bc8 | 2006-10-22 23:00:53 +0000 | [diff] [blame] | 1529 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1530 | |
Nate Begeman | ed728c1 | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1531 | // If we generated any switch lowering information, build and codegen any |
| 1532 | // additional DAGs necessary. |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1533 | for (unsigned i = 0, e = SDB->SwitchCases.size(); i != e; ++i) { |
Nate Begeman | ed728c1 | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1534 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | abac063 | 2011-01-14 22:26:16 +0000 | [diff] [blame] | 1535 | FuncInfo->MBB = SDB->SwitchCases[i].ThisBB; |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1536 | FuncInfo->InsertPt = FuncInfo->MBB->end(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1537 | |
Dan Gohman | 5d05971 | 2010-05-01 00:25:44 +0000 | [diff] [blame] | 1538 | // Determine the unique successors. |
| 1539 | SmallVector<MachineBasicBlock *, 2> Succs; |
| 1540 | Succs.push_back(SDB->SwitchCases[i].TrueBB); |
| 1541 | if (SDB->SwitchCases[i].TrueBB != SDB->SwitchCases[i].FalseBB) |
| 1542 | Succs.push_back(SDB->SwitchCases[i].FalseBB); |
| 1543 | |
Dan Gohman | abac063 | 2011-01-14 22:26:16 +0000 | [diff] [blame] | 1544 | // Emit the code. Note that this could result in FuncInfo->MBB being split. |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1545 | SDB->visitSwitchCase(SDB->SwitchCases[i], FuncInfo->MBB); |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1546 | CurDAG->setRoot(SDB->getRoot()); |
Dan Gohman | 5d05971 | 2010-05-01 00:25:44 +0000 | [diff] [blame] | 1547 | SDB->clear(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1548 | CodeGenAndEmitDAG(); |
Dan Gohman | abac063 | 2011-01-14 22:26:16 +0000 | [diff] [blame] | 1549 | |
| 1550 | // Remember the last block, now that any splitting is done, for use in |
| 1551 | // populating PHI nodes in successors. |
| 1552 | MachineBasicBlock *ThisBB = FuncInfo->MBB; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1553 | |
Chris Lattner | 707339a5 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1554 | // Handle any PHI nodes in successors of this chunk, as if we were coming |
| 1555 | // from the original BB before switch expansion. Note that PHI nodes can |
| 1556 | // occur multiple times in PHINodesToUpdate. We have to be very careful to |
| 1557 | // handle them the right number of times. |
Dan Gohman | 5d05971 | 2010-05-01 00:25:44 +0000 | [diff] [blame] | 1558 | for (unsigned i = 0, e = Succs.size(); i != e; ++i) { |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1559 | FuncInfo->MBB = Succs[i]; |
| 1560 | FuncInfo->InsertPt = FuncInfo->MBB->end(); |
| 1561 | // FuncInfo->MBB may have been removed from the CFG if a branch was |
| 1562 | // constant folded. |
| 1563 | if (ThisBB->isSuccessor(FuncInfo->MBB)) { |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1564 | for (MachineBasicBlock::iterator |
| 1565 | MBBI = FuncInfo->MBB->begin(), MBBE = FuncInfo->MBB->end(); |
| 1566 | MBBI != MBBE && MBBI->isPHI(); ++MBBI) { |
| 1567 | MachineInstrBuilder PHI(*MF, MBBI); |
Jakob Stoklund Olesen | d2a1bee | 2010-01-11 21:02:33 +0000 | [diff] [blame] | 1568 | // This value for this PHI node is recorded in PHINodesToUpdate. |
| 1569 | for (unsigned pn = 0; ; ++pn) { |
Dan Gohman | fd81254 | 2010-04-22 19:55:20 +0000 | [diff] [blame] | 1570 | assert(pn != FuncInfo->PHINodesToUpdate.size() && |
Jakob Stoklund Olesen | d2a1bee | 2010-01-11 21:02:33 +0000 | [diff] [blame] | 1571 | "Didn't find PHI entry!"); |
Jakob Stoklund Olesen | 2705333 | 2012-12-20 18:46:29 +0000 | [diff] [blame] | 1572 | if (FuncInfo->PHINodesToUpdate[pn].first == PHI) { |
| 1573 | PHI.addReg(FuncInfo->PHINodesToUpdate[pn].second).addMBB(ThisBB); |
Jakob Stoklund Olesen | d2a1bee | 2010-01-11 21:02:33 +0000 | [diff] [blame] | 1574 | break; |
| 1575 | } |
Evan Cheng | f4db639 | 2009-09-18 08:26:06 +0000 | [diff] [blame] | 1576 | } |
Chris Lattner | 707339a5 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1577 | } |
Nate Begeman | ed728c1 | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1578 | } |
| 1579 | } |
Chris Lattner | 5ca31d9 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 1580 | } |
Dan Gohman | 1a6c47f | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1581 | SDB->SwitchCases.clear(); |
Chris Lattner | 7a60d91 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1582 | } |
Evan Cheng | 739a6a4 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 1583 | |
Jim Laskey | 95eda5b | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 1584 | |
Dan Gohman | 817a24f | 2009-02-06 18:26:51 +0000 | [diff] [blame] | 1585 | /// Create the scheduler. If a specific scheduler was specified |
| 1586 | /// via the SchedulerRegistry, use it, otherwise select the |
| 1587 | /// one preferred by the target. |
Dan Gohman | adec96f | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 1588 | /// |
Dan Gohman | dfaf646 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 1589 | ScheduleDAGSDNodes *SelectionDAGISel::CreateScheduler() { |
Jim Laskey | 29e635d | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 1590 | RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1591 | |
Jim Laskey | 95eda5b | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 1592 | if (!Ctor) { |
Jim Laskey | 29e635d | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 1593 | Ctor = ISHeuristic; |
Jim Laskey | 17c67ef | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 1594 | RegisterScheduler::setDefault(Ctor); |
Evan Cheng | c1e1d97 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 1595 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1596 | |
Bill Wendling | 084669a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 1597 | return Ctor(this, OptLevel); |
Evan Cheng | 739a6a4 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 1598 | } |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1599 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1600 | //===----------------------------------------------------------------------===// |
| 1601 | // Helper functions used by the generated instruction selector. |
| 1602 | //===----------------------------------------------------------------------===// |
| 1603 | // Calls to these methods are generated by tblgen. |
| 1604 | |
| 1605 | /// CheckAndMask - The isel is trying to match something like (and X, 255). If |
| 1606 | /// the dag combiner simplified the 255, we still want to match. RHS is the |
| 1607 | /// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value |
| 1608 | /// specified in the .td file (e.g. 255). |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1609 | bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS, |
Dan Gohman | f0bb128 | 2007-07-24 23:00:27 +0000 | [diff] [blame] | 1610 | int64_t DesiredMaskS) const { |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1611 | const APInt &ActualMask = RHS->getAPIntValue(); |
| 1612 | const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1613 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1614 | // If the actual mask exactly matches, success! |
| 1615 | if (ActualMask == DesiredMask) |
| 1616 | return true; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1617 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1618 | // If the actual AND mask is allowing unallowed bits, this doesn't match. |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1619 | if (ActualMask.intersects(~DesiredMask)) |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1620 | return false; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1621 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1622 | // Otherwise, the DAG Combiner may have proven that the value coming in is |
| 1623 | // either already zero or is not demanded. Check for known zero input bits. |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1624 | APInt NeededMask = DesiredMask & ~ActualMask; |
Dan Gohman | 309d3d5 | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1625 | if (CurDAG->MaskedValueIsZero(LHS, NeededMask)) |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1626 | return true; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1627 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1628 | // TODO: check to see if missing bits are just not demanded. |
| 1629 | |
| 1630 | // Otherwise, this pattern doesn't match. |
| 1631 | return false; |
| 1632 | } |
| 1633 | |
| 1634 | /// CheckOrMask - The isel is trying to match something like (or X, 255). If |
| 1635 | /// the dag combiner simplified the 255, we still want to match. RHS is the |
| 1636 | /// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value |
| 1637 | /// specified in the .td file (e.g. 255). |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1638 | bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS, |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1639 | int64_t DesiredMaskS) const { |
| 1640 | const APInt &ActualMask = RHS->getAPIntValue(); |
| 1641 | const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1642 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1643 | // If the actual mask exactly matches, success! |
| 1644 | if (ActualMask == DesiredMask) |
| 1645 | return true; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1646 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1647 | // If the actual AND mask is allowing unallowed bits, this doesn't match. |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1648 | if (ActualMask.intersects(~DesiredMask)) |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1649 | return false; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1650 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1651 | // Otherwise, the DAG Combiner may have proven that the value coming in is |
| 1652 | // either already zero or is not demanded. Check for known zero input bits. |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1653 | APInt NeededMask = DesiredMask & ~ActualMask; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1654 | |
Dan Gohman | 1f372ed | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1655 | APInt KnownZero, KnownOne; |
Jay Foad | a0653a3 | 2014-05-14 21:14:37 +0000 | [diff] [blame] | 1656 | CurDAG->computeKnownBits(LHS, KnownZero, KnownOne); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1657 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1658 | // If all the missing bits in the or are already known to be set, match! |
| 1659 | if ((NeededMask & KnownOne) == NeededMask) |
| 1660 | return true; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1661 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1662 | // TODO: check to see if missing bits are just not demanded. |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1663 | |
Chris Lattner | 6df3496 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1664 | // Otherwise, this pattern doesn't match. |
| 1665 | return false; |
| 1666 | } |
| 1667 | |
Jim Laskey | 03593f7 | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 1668 | |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1669 | /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated |
| 1670 | /// by tblgen. Others should not call it. |
| 1671 | void SelectionDAGISel:: |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1672 | SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) { |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1673 | std::vector<SDValue> InOps; |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1674 | std::swap(InOps, Ops); |
| 1675 | |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1676 | Ops.push_back(InOps[InlineAsm::Op_InputChain]); // 0 |
| 1677 | Ops.push_back(InOps[InlineAsm::Op_AsmString]); // 1 |
| 1678 | Ops.push_back(InOps[InlineAsm::Op_MDNode]); // 2, !srcloc |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1679 | Ops.push_back(InOps[InlineAsm::Op_ExtraInfo]); // 3 (SideEffect, AlignStack) |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1680 | |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1681 | unsigned i = InlineAsm::Op_FirstOperand, e = InOps.size(); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1682 | if (InOps[e-1].getValueType() == MVT::Glue) |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1683 | --e; // Don't process a glue operand if it is here. |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1684 | |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1685 | while (i != e) { |
Dan Gohman | effb894 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1686 | unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue(); |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1687 | if (!InlineAsm::isMemKind(Flags)) { |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1688 | // Just skip over this operand, copying the operands verbatim. |
Evan Cheng | 2e55923 | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 1689 | Ops.insert(Ops.end(), InOps.begin()+i, |
| 1690 | InOps.begin()+i+InlineAsm::getNumOperandRegisters(Flags) + 1); |
| 1691 | i += InlineAsm::getNumOperandRegisters(Flags) + 1; |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1692 | } else { |
Evan Cheng | 2e55923 | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 1693 | assert(InlineAsm::getNumOperandRegisters(Flags) == 1 && |
| 1694 | "Memory operand with multiple values?"); |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1695 | // Otherwise, this is a memory operand. Ask the target to select it. |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1696 | std::vector<SDValue> SelOps; |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1697 | if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps)) |
Chris Lattner | 2104b8d | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 1698 | report_fatal_error("Could not match memory address. Inline asm" |
Chris Lattner | 94ef528 | 2010-04-07 23:50:38 +0000 | [diff] [blame] | 1699 | " failure!"); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1700 | |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1701 | // Add this to the output node. |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1702 | unsigned NewFlags = |
| 1703 | InlineAsm::getFlagWord(InlineAsm::Kind_Mem, SelOps.size()); |
| 1704 | Ops.push_back(CurDAG->getTargetConstant(NewFlags, MVT::i32)); |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1705 | Ops.insert(Ops.end(), SelOps.begin(), SelOps.end()); |
| 1706 | i += 2; |
| 1707 | } |
| 1708 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 1709 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1710 | // Add the glue input back if present. |
Chris Lattner | dcf785b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1711 | if (e != InOps.size()) |
| 1712 | Ops.push_back(InOps.back()); |
| 1713 | } |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 1714 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1715 | /// findGlueUse - Return use of MVT::Glue value produced by the specified |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1716 | /// SDNode. |
| 1717 | /// |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1718 | static SDNode *findGlueUse(SDNode *N) { |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1719 | unsigned FlagResNo = N->getNumValues()-1; |
| 1720 | for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) { |
| 1721 | SDUse &Use = I.getUse(); |
| 1722 | if (Use.getResNo() == FlagResNo) |
| 1723 | return Use.getUser(); |
| 1724 | } |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1725 | return nullptr; |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1726 | } |
| 1727 | |
| 1728 | /// findNonImmUse - Return true if "Use" is a non-immediate use of "Def". |
| 1729 | /// This function recursively traverses up the operand chain, ignoring |
| 1730 | /// certain nodes. |
| 1731 | static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse, |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1732 | SDNode *Root, SmallPtrSet<SDNode*, 16> &Visited, |
| 1733 | bool IgnoreChains) { |
Chris Lattner | 8585850 | 2010-02-23 19:32:27 +0000 | [diff] [blame] | 1734 | // The NodeID's are given uniques ID's where a node ID is guaranteed to be |
| 1735 | // greater than all of its (recursive) operands. If we scan to a point where |
| 1736 | // 'use' is smaller than the node we're scanning for, then we know we will |
| 1737 | // never find it. |
| 1738 | // |
| 1739 | // The Use may be -1 (unassigned) if it is a newly allocated node. This can |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1740 | // happen because we scan down to newly selected nodes in the case of glue |
Chris Lattner | 8585850 | 2010-02-23 19:32:27 +0000 | [diff] [blame] | 1741 | // uses. |
| 1742 | if ((Use->getNodeId() < Def->getNodeId() && Use->getNodeId() != -1)) |
| 1743 | return false; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1744 | |
Chris Lattner | 8585850 | 2010-02-23 19:32:27 +0000 | [diff] [blame] | 1745 | // Don't revisit nodes if we already scanned it and didn't fail, we know we |
| 1746 | // won't fail if we scan it again. |
| 1747 | if (!Visited.insert(Use)) |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1748 | return false; |
| 1749 | |
| 1750 | for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) { |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1751 | // Ignore chain uses, they are validated by HandleMergeInputChains. |
| 1752 | if (Use->getOperand(i).getValueType() == MVT::Other && IgnoreChains) |
| 1753 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1754 | |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1755 | SDNode *N = Use->getOperand(i).getNode(); |
| 1756 | if (N == Def) { |
| 1757 | if (Use == ImmedUse || Use == Root) |
| 1758 | continue; // We are not looking for immediate use. |
| 1759 | assert(N != Root); |
| 1760 | return true; |
| 1761 | } |
| 1762 | |
| 1763 | // Traverse up the operand chain. |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1764 | if (findNonImmUse(N, Def, ImmedUse, Root, Visited, IgnoreChains)) |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1765 | return true; |
| 1766 | } |
| 1767 | return false; |
| 1768 | } |
| 1769 | |
Evan Cheng | 5e73ff2 | 2010-02-15 19:41:07 +0000 | [diff] [blame] | 1770 | /// IsProfitableToFold - Returns true if it's profitable to fold the specific |
| 1771 | /// operand node N of U during instruction selection that starts at Root. |
| 1772 | bool SelectionDAGISel::IsProfitableToFold(SDValue N, SDNode *U, |
| 1773 | SDNode *Root) const { |
| 1774 | if (OptLevel == CodeGenOpt::None) return false; |
| 1775 | return N.hasOneUse(); |
| 1776 | } |
| 1777 | |
| 1778 | /// IsLegalToFold - Returns true if the specific operand node N of |
| 1779 | /// U can be folded during instruction selection that starts at Root. |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1780 | bool SelectionDAGISel::IsLegalToFold(SDValue N, SDNode *U, SDNode *Root, |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1781 | CodeGenOpt::Level OptLevel, |
| 1782 | bool IgnoreChains) { |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1783 | if (OptLevel == CodeGenOpt::None) return false; |
| 1784 | |
| 1785 | // If Root use can somehow reach N through a path that that doesn't contain |
| 1786 | // U then folding N would create a cycle. e.g. In the following |
| 1787 | // diagram, Root can reach N through X. If N is folded into into Root, then |
| 1788 | // X is both a predecessor and a successor of U. |
| 1789 | // |
| 1790 | // [N*] // |
| 1791 | // ^ ^ // |
| 1792 | // / \ // |
| 1793 | // [U*] [X]? // |
| 1794 | // ^ ^ // |
| 1795 | // \ / // |
| 1796 | // \ / // |
| 1797 | // [Root*] // |
| 1798 | // |
| 1799 | // * indicates nodes to be folded together. |
| 1800 | // |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1801 | // If Root produces glue, then it gets (even more) interesting. Since it |
| 1802 | // will be "glued" together with its glue use in the scheduler, we need to |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1803 | // check if it might reach N. |
| 1804 | // |
| 1805 | // [N*] // |
| 1806 | // ^ ^ // |
| 1807 | // / \ // |
| 1808 | // [U*] [X]? // |
| 1809 | // ^ ^ // |
| 1810 | // \ \ // |
| 1811 | // \ | // |
| 1812 | // [Root*] | // |
| 1813 | // ^ | // |
| 1814 | // f | // |
| 1815 | // | / // |
| 1816 | // [Y] / // |
| 1817 | // ^ / // |
| 1818 | // f / // |
| 1819 | // | / // |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1820 | // [GU] // |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1821 | // |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1822 | // If GU (glue use) indirectly reaches N (the load), and Root folds N |
| 1823 | // (call it Fold), then X is a predecessor of GU and a successor of |
| 1824 | // Fold. But since Fold and GU are glued together, this will create |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1825 | // a cycle in the scheduling graph. |
| 1826 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1827 | // If the node has glue, walk down the graph to the "lowest" node in the |
| 1828 | // glueged set. |
Owen Anderson | 53aa7a9 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1829 | EVT VT = Root->getValueType(Root->getNumValues()-1); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1830 | while (VT == MVT::Glue) { |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1831 | SDNode *GU = findGlueUse(Root); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1832 | if (!GU) |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1833 | break; |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1834 | Root = GU; |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1835 | VT = Root->getValueType(Root->getNumValues()-1); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1836 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1837 | // If our query node has a glue result with a use, we've walked up it. If |
Chris Lattner | 55e81eb | 2010-03-05 06:19:13 +0000 | [diff] [blame] | 1838 | // the user (which has already been selected) has a chain or indirectly uses |
| 1839 | // the chain, our WalkChainUsers predicate will not consider it. Because of |
| 1840 | // this, we cannot ignore chains in this predicate. |
| 1841 | IgnoreChains = false; |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1842 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1843 | |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1844 | |
Chris Lattner | 374a3ac | 2010-03-05 05:49:45 +0000 | [diff] [blame] | 1845 | SmallPtrSet<SDNode*, 16> Visited; |
| 1846 | return !findNonImmUse(Root, N.getNode(), U, Root, Visited, IgnoreChains); |
Anton Korobeynikov | 65a5816 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1847 | } |
| 1848 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1849 | SDNode *SelectionDAGISel::Select_INLINEASM(SDNode *N) { |
| 1850 | std::vector<SDValue> Ops(N->op_begin(), N->op_end()); |
Dan Gohman | 554a75a | 2009-10-29 22:30:23 +0000 | [diff] [blame] | 1851 | SelectInlineAsmMemoryOperands(Ops); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1852 | |
Benjamin Kramer | fdf362b | 2013-03-07 20:33:29 +0000 | [diff] [blame] | 1853 | EVT VTs[] = { MVT::Other, MVT::Glue }; |
Craig Topper | 48d114b | 2014-04-26 18:35:24 +0000 | [diff] [blame] | 1854 | SDValue New = CurDAG->getNode(ISD::INLINEASM, SDLoc(N), VTs, Ops); |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1855 | New->setNodeId(-1); |
Dan Gohman | 554a75a | 2009-10-29 22:30:23 +0000 | [diff] [blame] | 1856 | return New.getNode(); |
| 1857 | } |
| 1858 | |
Renato Golin | c7aea40 | 2014-05-06 16:51:25 +0000 | [diff] [blame] | 1859 | SDNode |
| 1860 | *SelectionDAGISel::Select_READ_REGISTER(SDNode *Op) { |
| 1861 | SDLoc dl(Op); |
| 1862 | MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(Op->getOperand(0)); |
| 1863 | const MDString *RegStr = dyn_cast<MDString>(MD->getMD()->getOperand(0)); |
| 1864 | unsigned Reg = getTargetLowering()->getRegisterByName( |
Hal Finkel | f0e086a | 2014-05-11 19:29:07 +0000 | [diff] [blame] | 1865 | RegStr->getString().data(), Op->getValueType(0)); |
Renato Golin | c7aea40 | 2014-05-06 16:51:25 +0000 | [diff] [blame] | 1866 | SDValue New = CurDAG->getCopyFromReg( |
| 1867 | CurDAG->getEntryNode(), dl, Reg, Op->getValueType(0)); |
| 1868 | New->setNodeId(-1); |
| 1869 | return New.getNode(); |
| 1870 | } |
| 1871 | |
| 1872 | SDNode |
| 1873 | *SelectionDAGISel::Select_WRITE_REGISTER(SDNode *Op) { |
| 1874 | SDLoc dl(Op); |
| 1875 | MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(Op->getOperand(1)); |
| 1876 | const MDString *RegStr = dyn_cast<MDString>(MD->getMD()->getOperand(0)); |
| 1877 | unsigned Reg = getTargetLowering()->getRegisterByName( |
Hal Finkel | f0e086a | 2014-05-11 19:29:07 +0000 | [diff] [blame] | 1878 | RegStr->getString().data(), Op->getOperand(2).getValueType()); |
Renato Golin | c7aea40 | 2014-05-06 16:51:25 +0000 | [diff] [blame] | 1879 | SDValue New = CurDAG->getCopyToReg( |
| 1880 | CurDAG->getEntryNode(), dl, Reg, Op->getOperand(2)); |
| 1881 | New->setNodeId(-1); |
| 1882 | return New.getNode(); |
| 1883 | } |
| 1884 | |
| 1885 | |
| 1886 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1887 | SDNode *SelectionDAGISel::Select_UNDEF(SDNode *N) { |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1888 | return CurDAG->SelectNodeTo(N, TargetOpcode::IMPLICIT_DEF,N->getValueType(0)); |
Dan Gohman | 554a75a | 2009-10-29 22:30:23 +0000 | [diff] [blame] | 1889 | } |
| 1890 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1891 | /// GetVBR - decode a vbr encoding whose top bit is set. |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 1892 | LLVM_ATTRIBUTE_ALWAYS_INLINE static uint64_t |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1893 | GetVBR(uint64_t Val, const unsigned char *MatcherTable, unsigned &Idx) { |
| 1894 | assert(Val >= 128 && "Not a VBR"); |
| 1895 | Val &= 127; // Remove first vbr bit. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1896 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1897 | unsigned Shift = 7; |
| 1898 | uint64_t NextBits; |
| 1899 | do { |
Chris Lattner | 53cf6b8 | 2010-02-28 22:38:43 +0000 | [diff] [blame] | 1900 | NextBits = MatcherTable[Idx++]; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1901 | Val |= (NextBits&127) << Shift; |
| 1902 | Shift += 7; |
| 1903 | } while (NextBits & 128); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1904 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1905 | return Val; |
| 1906 | } |
| 1907 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1908 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1909 | /// UpdateChainsAndGlue - When a match is complete, this method updates uses of |
| 1910 | /// interior glue and chain results to use the new glue and chain results. |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1911 | void SelectionDAGISel:: |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1912 | UpdateChainsAndGlue(SDNode *NodeToMatch, SDValue InputChain, |
| 1913 | const SmallVectorImpl<SDNode*> &ChainNodesMatched, |
| 1914 | SDValue InputGlue, |
| 1915 | const SmallVectorImpl<SDNode*> &GlueResultNodesMatched, |
| 1916 | bool isMorphNodeTo) { |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1917 | SmallVector<SDNode*, 4> NowDeadNodes; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1918 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1919 | // Now that all the normal results are replaced, we replace the chain and |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1920 | // glue results if present. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1921 | if (!ChainNodesMatched.empty()) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1922 | assert(InputChain.getNode() && |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1923 | "Matched input chains but didn't produce a chain"); |
| 1924 | // Loop over all of the nodes we matched that produced a chain result. |
| 1925 | // Replace all the chain results with the final chain we ended up with. |
| 1926 | for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) { |
| 1927 | SDNode *ChainNode = ChainNodesMatched[i]; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1928 | |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1929 | // If this node was already deleted, don't look at it. |
| 1930 | if (ChainNode->getOpcode() == ISD::DELETED_NODE) |
| 1931 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1932 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1933 | // Don't replace the results of the root node if we're doing a |
| 1934 | // MorphNodeTo. |
| 1935 | if (ChainNode == NodeToMatch && isMorphNodeTo) |
| 1936 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1937 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1938 | SDValue ChainVal = SDValue(ChainNode, ChainNode->getNumValues()-1); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1939 | if (ChainVal.getValueType() == MVT::Glue) |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1940 | ChainVal = ChainVal.getValue(ChainVal->getNumValues()-2); |
| 1941 | assert(ChainVal.getValueType() == MVT::Other && "Not a chain?"); |
Jakob Stoklund Olesen | beb9469 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1942 | CurDAG->ReplaceAllUsesOfValueWith(ChainVal, InputChain); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1943 | |
Chris Lattner | e01f7e3 | 2010-03-28 05:28:31 +0000 | [diff] [blame] | 1944 | // If the node became dead and we haven't already seen it, delete it. |
| 1945 | if (ChainNode->use_empty() && |
| 1946 | !std::count(NowDeadNodes.begin(), NowDeadNodes.end(), ChainNode)) |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1947 | NowDeadNodes.push_back(ChainNode); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1948 | } |
| 1949 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1950 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1951 | // If the result produces glue, update any glue results in the matched |
| 1952 | // pattern with the glue result. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1953 | if (InputGlue.getNode()) { |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1954 | // Handle any interior nodes explicitly marked. |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1955 | for (unsigned i = 0, e = GlueResultNodesMatched.size(); i != e; ++i) { |
| 1956 | SDNode *FRN = GlueResultNodesMatched[i]; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1957 | |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1958 | // If this node was already deleted, don't look at it. |
| 1959 | if (FRN->getOpcode() == ISD::DELETED_NODE) |
| 1960 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1961 | |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1962 | assert(FRN->getValueType(FRN->getNumValues()-1) == MVT::Glue && |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 1963 | "Doesn't have a glue result"); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1964 | CurDAG->ReplaceAllUsesOfValueWith(SDValue(FRN, FRN->getNumValues()-1), |
Jakob Stoklund Olesen | beb9469 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1965 | InputGlue); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1966 | |
Chris Lattner | 7aed1fb | 2010-03-28 04:54:33 +0000 | [diff] [blame] | 1967 | // If the node became dead and we haven't already seen it, delete it. |
| 1968 | if (FRN->use_empty() && |
| 1969 | !std::count(NowDeadNodes.begin(), NowDeadNodes.end(), FRN)) |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1970 | NowDeadNodes.push_back(FRN); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1971 | } |
| 1972 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1973 | |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 1974 | if (!NowDeadNodes.empty()) |
Jakob Stoklund Olesen | beb9469 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1975 | CurDAG->RemoveDeadNodes(NowDeadNodes); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1976 | |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 1977 | DEBUG(dbgs() << "ISEL: Match complete!\n"); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 1978 | } |
| 1979 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 1980 | enum ChainResult { |
| 1981 | CR_Simple, |
| 1982 | CR_InducesCycle, |
| 1983 | CR_LeadsToInteriorNode |
| 1984 | }; |
| 1985 | |
| 1986 | /// WalkChainUsers - Walk down the users of the specified chained node that is |
| 1987 | /// part of the pattern we're matching, looking at all of the users we find. |
| 1988 | /// This determines whether something is an interior node, whether we have a |
| 1989 | /// non-pattern node in between two pattern nodes (which prevent folding because |
| 1990 | /// it would induce a cycle) and whether we have a TokenFactor node sandwiched |
| 1991 | /// between pattern nodes (in which case the TF becomes part of the pattern). |
| 1992 | /// |
| 1993 | /// The walk we do here is guaranteed to be small because we quickly get down to |
| 1994 | /// already selected nodes "below" us. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 1995 | static ChainResult |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 1996 | WalkChainUsers(const SDNode *ChainedNode, |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 1997 | SmallVectorImpl<SDNode*> &ChainedNodesInPattern, |
| 1998 | SmallVectorImpl<SDNode*> &InteriorChainedNodes) { |
| 1999 | ChainResult Result = CR_Simple; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2000 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2001 | for (SDNode::use_iterator UI = ChainedNode->use_begin(), |
| 2002 | E = ChainedNode->use_end(); UI != E; ++UI) { |
| 2003 | // Make sure the use is of the chain, not some other value we produce. |
| 2004 | if (UI.getUse().getValueType() != MVT::Other) continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2005 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2006 | SDNode *User = *UI; |
| 2007 | |
Tim Northover | 31d093c | 2013-09-22 08:21:56 +0000 | [diff] [blame] | 2008 | if (User->getOpcode() == ISD::HANDLENODE) // Root of the graph. |
| 2009 | continue; |
| 2010 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2011 | // If we see an already-selected machine node, then we've gone beyond the |
| 2012 | // pattern that we're selecting down into the already selected chunk of the |
| 2013 | // DAG. |
Nadav Rotem | 7c277da | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 2014 | unsigned UserOpcode = User->getOpcode(); |
Tim Northover | 31d093c | 2013-09-22 08:21:56 +0000 | [diff] [blame] | 2015 | if (User->isMachineOpcode() || |
| 2016 | UserOpcode == ISD::CopyToReg || |
Nadav Rotem | 7c277da | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 2017 | UserOpcode == ISD::CopyFromReg || |
| 2018 | UserOpcode == ISD::INLINEASM || |
| 2019 | UserOpcode == ISD::EH_LABEL || |
| 2020 | UserOpcode == ISD::LIFETIME_START || |
| 2021 | UserOpcode == ISD::LIFETIME_END) { |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 2022 | // If their node ID got reset to -1 then they've already been selected. |
| 2023 | // Treat them like a MachineOpcode. |
| 2024 | if (User->getNodeId() == -1) |
| 2025 | continue; |
| 2026 | } |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2027 | |
| 2028 | // If we have a TokenFactor, we handle it specially. |
| 2029 | if (User->getOpcode() != ISD::TokenFactor) { |
| 2030 | // If the node isn't a token factor and isn't part of our pattern, then it |
| 2031 | // must be a random chained node in between two nodes we're selecting. |
| 2032 | // This happens when we have something like: |
| 2033 | // x = load ptr |
| 2034 | // call |
| 2035 | // y = x+4 |
| 2036 | // store y -> ptr |
| 2037 | // Because we structurally match the load/store as a read/modify/write, |
| 2038 | // but the call is chained between them. We cannot fold in this case |
| 2039 | // because it would induce a cycle in the graph. |
| 2040 | if (!std::count(ChainedNodesInPattern.begin(), |
| 2041 | ChainedNodesInPattern.end(), User)) |
| 2042 | return CR_InducesCycle; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2043 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2044 | // Otherwise we found a node that is part of our pattern. For example in: |
| 2045 | // x = load ptr |
| 2046 | // y = x+4 |
| 2047 | // store y -> ptr |
| 2048 | // This would happen when we're scanning down from the load and see the |
| 2049 | // store as a user. Record that there is a use of ChainedNode that is |
| 2050 | // part of the pattern and keep scanning uses. |
| 2051 | Result = CR_LeadsToInteriorNode; |
| 2052 | InteriorChainedNodes.push_back(User); |
| 2053 | continue; |
| 2054 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2055 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2056 | // If we found a TokenFactor, there are two cases to consider: first if the |
| 2057 | // TokenFactor is just hanging "below" the pattern we're matching (i.e. no |
| 2058 | // uses of the TF are in our pattern) we just want to ignore it. Second, |
| 2059 | // the TokenFactor can be sandwiched in between two chained nodes, like so: |
| 2060 | // [Load chain] |
| 2061 | // ^ |
| 2062 | // | |
| 2063 | // [Load] |
| 2064 | // ^ ^ |
| 2065 | // | \ DAG's like cheese |
| 2066 | // / \ do you? |
| 2067 | // / | |
| 2068 | // [TokenFactor] [Op] |
| 2069 | // ^ ^ |
| 2070 | // | | |
| 2071 | // \ / |
| 2072 | // \ / |
| 2073 | // [Store] |
| 2074 | // |
| 2075 | // In this case, the TokenFactor becomes part of our match and we rewrite it |
| 2076 | // as a new TokenFactor. |
| 2077 | // |
| 2078 | // To distinguish these two cases, do a recursive walk down the uses. |
| 2079 | switch (WalkChainUsers(User, ChainedNodesInPattern, InteriorChainedNodes)) { |
| 2080 | case CR_Simple: |
| 2081 | // If the uses of the TokenFactor are just already-selected nodes, ignore |
| 2082 | // it, it is "below" our pattern. |
| 2083 | continue; |
| 2084 | case CR_InducesCycle: |
| 2085 | // If the uses of the TokenFactor lead to nodes that are not part of our |
| 2086 | // pattern that are not selected, folding would turn this into a cycle, |
| 2087 | // bail out now. |
| 2088 | return CR_InducesCycle; |
| 2089 | case CR_LeadsToInteriorNode: |
| 2090 | break; // Otherwise, keep processing. |
| 2091 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2092 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2093 | // Okay, we know we're in the interesting interior case. The TokenFactor |
| 2094 | // is now going to be considered part of the pattern so that we rewrite its |
| 2095 | // uses (it may have uses that are not part of the pattern) with the |
| 2096 | // ultimate chain result of the generated code. We will also add its chain |
| 2097 | // inputs as inputs to the ultimate TokenFactor we create. |
| 2098 | Result = CR_LeadsToInteriorNode; |
| 2099 | ChainedNodesInPattern.push_back(User); |
| 2100 | InteriorChainedNodes.push_back(User); |
| 2101 | continue; |
| 2102 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2103 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2104 | return Result; |
| 2105 | } |
| 2106 | |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2107 | /// HandleMergeInputChains - This implements the OPC_EmitMergeInputChains |
Chris Lattner | 27a184b | 2010-03-02 19:34:59 +0000 | [diff] [blame] | 2108 | /// operation for when the pattern matched at least one node with a chains. The |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2109 | /// input vector contains a list of all of the chained nodes that we match. We |
| 2110 | /// must determine if this is a valid thing to cover (i.e. matching it won't |
| 2111 | /// induce cycles in the DAG) and if so, creating a TokenFactor node. that will |
| 2112 | /// be used as the input node chain for the generated nodes. |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2113 | static SDValue |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2114 | HandleMergeInputChains(SmallVectorImpl<SDNode*> &ChainNodesMatched, |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2115 | SelectionDAG *CurDAG) { |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2116 | // Walk all of the chained nodes we've matched, recursively scanning down the |
| 2117 | // users of the chain result. This adds any TokenFactor nodes that are caught |
| 2118 | // in between chained nodes to the chained and interior nodes list. |
| 2119 | SmallVector<SDNode*, 3> InteriorChainedNodes; |
| 2120 | for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) { |
| 2121 | if (WalkChainUsers(ChainNodesMatched[i], ChainNodesMatched, |
| 2122 | InteriorChainedNodes) == CR_InducesCycle) |
| 2123 | return SDValue(); // Would induce a cycle. |
| 2124 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2125 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2126 | // Okay, we have walked all the matched nodes and collected TokenFactor nodes |
| 2127 | // that we are interested in. Form our input TokenFactor node. |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2128 | SmallVector<SDValue, 3> InputChains; |
| 2129 | for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) { |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2130 | // Add the input chain of this node to the InputChains list (which will be |
| 2131 | // the operands of the generated TokenFactor) if it's not an interior node. |
| 2132 | SDNode *N = ChainNodesMatched[i]; |
| 2133 | if (N->getOpcode() != ISD::TokenFactor) { |
| 2134 | if (std::count(InteriorChainedNodes.begin(),InteriorChainedNodes.end(),N)) |
| 2135 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2136 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2137 | // Otherwise, add the input chain. |
| 2138 | SDValue InChain = ChainNodesMatched[i]->getOperand(0); |
| 2139 | assert(InChain.getValueType() == MVT::Other && "Not a chain"); |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2140 | InputChains.push_back(InChain); |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2141 | continue; |
| 2142 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2143 | |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2144 | // If we have a token factor, we want to add all inputs of the token factor |
| 2145 | // that are not part of the pattern we're matching. |
| 2146 | for (unsigned op = 0, e = N->getNumOperands(); op != e; ++op) { |
| 2147 | if (!std::count(ChainNodesMatched.begin(), ChainNodesMatched.end(), |
Chris Lattner | 2f846ee | 2010-03-02 02:37:23 +0000 | [diff] [blame] | 2148 | N->getOperand(op).getNode())) |
| 2149 | InputChains.push_back(N->getOperand(op)); |
Chris Lattner | b884fe8 | 2010-03-02 02:22:10 +0000 | [diff] [blame] | 2150 | } |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2151 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2152 | |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2153 | if (InputChains.size() == 1) |
| 2154 | return InputChains[0]; |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2155 | return CurDAG->getNode(ISD::TokenFactor, SDLoc(ChainNodesMatched[0]), |
Craig Topper | 48d114b | 2014-04-26 18:35:24 +0000 | [diff] [blame] | 2156 | MVT::Other, InputChains); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2157 | } |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2158 | |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2159 | /// MorphNode - Handle morphing a node in place for the selector. |
| 2160 | SDNode *SelectionDAGISel:: |
| 2161 | MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTList, |
Craig Topper | b2ba83c | 2014-04-27 19:21:20 +0000 | [diff] [blame] | 2162 | ArrayRef<SDValue> Ops, unsigned EmitNodeInfo) { |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2163 | // It is possible we're using MorphNodeTo to replace a node with no |
| 2164 | // normal results with one that has a normal result (or we could be |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2165 | // adding a chain) and the input could have glue and chains as well. |
Chris Lattner | 6642118 | 2010-03-28 08:43:23 +0000 | [diff] [blame] | 2166 | // In this case we need to shift the operands down. |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2167 | // FIXME: This is a horrible hack and broken in obscure cases, no worse |
Chris Lattner | decc73d | 2010-03-27 18:54:50 +0000 | [diff] [blame] | 2168 | // than the old isel though. |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2169 | int OldGlueResultNo = -1, OldChainResultNo = -1; |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2170 | |
| 2171 | unsigned NTMNumResults = Node->getNumValues(); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 2172 | if (Node->getValueType(NTMNumResults-1) == MVT::Glue) { |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2173 | OldGlueResultNo = NTMNumResults-1; |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2174 | if (NTMNumResults != 1 && |
| 2175 | Node->getValueType(NTMNumResults-2) == MVT::Other) |
| 2176 | OldChainResultNo = NTMNumResults-2; |
| 2177 | } else if (Node->getValueType(NTMNumResults-1) == MVT::Other) |
| 2178 | OldChainResultNo = NTMNumResults-1; |
| 2179 | |
Chris Lattner | 350bb06 | 2010-03-02 07:14:49 +0000 | [diff] [blame] | 2180 | // Call the underlying SelectionDAG routine to do the transmogrification. Note |
| 2181 | // that this deletes operands of the old node that become dead. |
Craig Topper | b2ba83c | 2014-04-27 19:21:20 +0000 | [diff] [blame] | 2182 | SDNode *Res = CurDAG->MorphNodeTo(Node, ~TargetOpc, VTList, Ops); |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2183 | |
| 2184 | // MorphNodeTo can operate in two ways: if an existing node with the |
| 2185 | // specified operands exists, it can just return it. Otherwise, it |
| 2186 | // updates the node in place to have the requested operands. |
| 2187 | if (Res == Node) { |
| 2188 | // If we updated the node in place, reset the node ID. To the isel, |
| 2189 | // this should be just like a newly allocated machine node. |
| 2190 | Res->setNodeId(-1); |
| 2191 | } |
| 2192 | |
| 2193 | unsigned ResNumResults = Res->getNumValues(); |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2194 | // Move the glue if needed. |
| 2195 | if ((EmitNodeInfo & OPFL_GlueOutput) && OldGlueResultNo != -1 && |
| 2196 | (unsigned)OldGlueResultNo != ResNumResults-1) |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2197 | CurDAG->ReplaceAllUsesOfValueWith(SDValue(Node, OldGlueResultNo), |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2198 | SDValue(Res, ResNumResults-1)); |
| 2199 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2200 | if ((EmitNodeInfo & OPFL_GlueOutput) != 0) |
Bill Wendling | f8446423 | 2010-07-04 08:58:43 +0000 | [diff] [blame] | 2201 | --ResNumResults; |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2202 | |
| 2203 | // Move the chain reference if needed. |
| 2204 | if ((EmitNodeInfo & OPFL_Chain) && OldChainResultNo != -1 && |
| 2205 | (unsigned)OldChainResultNo != ResNumResults-1) |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2206 | CurDAG->ReplaceAllUsesOfValueWith(SDValue(Node, OldChainResultNo), |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2207 | SDValue(Res, ResNumResults-1)); |
| 2208 | |
| 2209 | // Otherwise, no replacement happened because the node already exists. Replace |
| 2210 | // Uses of the old node with the new one. |
| 2211 | if (Res != Node) |
| 2212 | CurDAG->ReplaceAllUsesWith(Node, Res); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2213 | |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2214 | return Res; |
| 2215 | } |
| 2216 | |
Craig Topper | 04b4e83 | 2012-09-16 16:48:25 +0000 | [diff] [blame] | 2217 | /// CheckSame - Implements OP_CheckSame. |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2218 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2219 | CheckSame(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2220 | SDValue N, |
| 2221 | const SmallVectorImpl<std::pair<SDValue, SDNode*> > &RecordedNodes) { |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2222 | // Accept if it is exactly the same as a previously recorded node. |
| 2223 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
| 2224 | assert(RecNo < RecordedNodes.size() && "Invalid CheckSame"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2225 | return N == RecordedNodes[RecNo].first; |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2226 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2227 | |
Craig Topper | a1bbc32 | 2013-10-05 05:38:16 +0000 | [diff] [blame] | 2228 | /// CheckChildSame - Implements OP_CheckChildXSame. |
| 2229 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
| 2230 | CheckChildSame(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
| 2231 | SDValue N, |
| 2232 | const SmallVectorImpl<std::pair<SDValue, SDNode*> > &RecordedNodes, |
| 2233 | unsigned ChildNo) { |
| 2234 | if (ChildNo >= N.getNumOperands()) |
| 2235 | return false; // Match fails if out of range child #. |
| 2236 | return ::CheckSame(MatcherTable, MatcherIndex, N.getOperand(ChildNo), |
| 2237 | RecordedNodes); |
| 2238 | } |
| 2239 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2240 | /// CheckPatternPredicate - Implements OP_CheckPatternPredicate. |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2241 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2242 | CheckPatternPredicate(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 2243 | const SelectionDAGISel &SDISel) { |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2244 | return SDISel.CheckPatternPredicate(MatcherTable[MatcherIndex++]); |
| 2245 | } |
| 2246 | |
| 2247 | /// CheckNodePredicate - Implements OP_CheckNodePredicate. |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2248 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2249 | CheckNodePredicate(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 2250 | const SelectionDAGISel &SDISel, SDNode *N) { |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2251 | return SDISel.CheckNodePredicate(N, MatcherTable[MatcherIndex++]); |
| 2252 | } |
| 2253 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2254 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2255 | CheckOpcode(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
| 2256 | SDNode *N) { |
Chris Lattner | 552dddc | 2010-03-25 06:33:05 +0000 | [diff] [blame] | 2257 | uint16_t Opc = MatcherTable[MatcherIndex++]; |
| 2258 | Opc |= (unsigned short)MatcherTable[MatcherIndex++] << 8; |
| 2259 | return N->getOpcode() == Opc; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2260 | } |
| 2261 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2262 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2263 | CheckType(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 2264 | SDValue N, const TargetLowering *TLI) { |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2265 | MVT::SimpleValueType VT = (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
| 2266 | if (N.getValueType() == VT) return true; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2267 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2268 | // Handle the case when VT is iPTR. |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 2269 | return VT == MVT::iPTR && N.getValueType() == TLI->getPointerTy(); |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2270 | } |
| 2271 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2272 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2273 | CheckChildType(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Craig Topper | 7ca1d18 | 2014-02-05 05:44:28 +0000 | [diff] [blame] | 2274 | SDValue N, const TargetLowering *TLI, unsigned ChildNo) { |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2275 | if (ChildNo >= N.getNumOperands()) |
| 2276 | return false; // Match fails if out of range child #. |
| 2277 | return ::CheckType(MatcherTable, MatcherIndex, N.getOperand(ChildNo), TLI); |
| 2278 | } |
| 2279 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2280 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2281 | CheckCondCode(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
| 2282 | SDValue N) { |
| 2283 | return cast<CondCodeSDNode>(N)->get() == |
| 2284 | (ISD::CondCode)MatcherTable[MatcherIndex++]; |
| 2285 | } |
| 2286 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2287 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2288 | CheckValueType(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 2289 | SDValue N, const TargetLowering *TLI) { |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2290 | MVT::SimpleValueType VT = (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
| 2291 | if (cast<VTSDNode>(N)->getVT() == VT) |
| 2292 | return true; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2293 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2294 | // Handle the case when VT is iPTR. |
Bill Wendling | f771908 | 2013-06-06 00:43:09 +0000 | [diff] [blame] | 2295 | return VT == MVT::iPTR && cast<VTSDNode>(N)->getVT() == TLI->getPointerTy(); |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2296 | } |
| 2297 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2298 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2299 | CheckInteger(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
| 2300 | SDValue N) { |
| 2301 | int64_t Val = MatcherTable[MatcherIndex++]; |
| 2302 | if (Val & 128) |
| 2303 | Val = GetVBR(Val, MatcherTable, MatcherIndex); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2304 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2305 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2306 | return C && C->getSExtValue() == Val; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2307 | } |
| 2308 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2309 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Craig Topper | 7ca1d18 | 2014-02-05 05:44:28 +0000 | [diff] [blame] | 2310 | CheckChildInteger(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
| 2311 | SDValue N, unsigned ChildNo) { |
| 2312 | if (ChildNo >= N.getNumOperands()) |
| 2313 | return false; // Match fails if out of range child #. |
| 2314 | return ::CheckInteger(MatcherTable, MatcherIndex, N.getOperand(ChildNo)); |
| 2315 | } |
| 2316 | |
| 2317 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2318 | CheckAndImm(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 2319 | SDValue N, const SelectionDAGISel &SDISel) { |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2320 | int64_t Val = MatcherTable[MatcherIndex++]; |
| 2321 | if (Val & 128) |
| 2322 | Val = GetVBR(Val, MatcherTable, MatcherIndex); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2323 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2324 | if (N->getOpcode() != ISD::AND) return false; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2325 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2326 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2327 | return C && SDISel.CheckAndMask(N.getOperand(0), C, Val); |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2328 | } |
| 2329 | |
Chandler Carruth | 82058c0 | 2010-10-23 08:40:19 +0000 | [diff] [blame] | 2330 | LLVM_ATTRIBUTE_ALWAYS_INLINE static bool |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2331 | CheckOrImm(const unsigned char *MatcherTable, unsigned &MatcherIndex, |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 2332 | SDValue N, const SelectionDAGISel &SDISel) { |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2333 | int64_t Val = MatcherTable[MatcherIndex++]; |
| 2334 | if (Val & 128) |
| 2335 | Val = GetVBR(Val, MatcherTable, MatcherIndex); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2336 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2337 | if (N->getOpcode() != ISD::OR) return false; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2338 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2339 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2340 | return C && SDISel.CheckOrMask(N.getOperand(0), C, Val); |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2341 | } |
| 2342 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2343 | /// IsPredicateKnownToFail - If we know how and can do so without pushing a |
| 2344 | /// scope, evaluate the current node. If the current predicate is known to |
| 2345 | /// fail, set Result=true and return anything. If the current predicate is |
| 2346 | /// known to pass, set Result=false and return the MatcherIndex to continue |
| 2347 | /// with. If the current predicate is unknown, set Result=false and return the |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2348 | /// MatcherIndex to continue with. |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2349 | static unsigned IsPredicateKnownToFail(const unsigned char *Table, |
| 2350 | unsigned Index, SDValue N, |
Jakub Staszak | cec09b2 | 2012-04-30 23:41:30 +0000 | [diff] [blame] | 2351 | bool &Result, |
| 2352 | const SelectionDAGISel &SDISel, |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2353 | SmallVectorImpl<std::pair<SDValue, SDNode*> > &RecordedNodes) { |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2354 | switch (Table[Index++]) { |
| 2355 | default: |
| 2356 | Result = false; |
| 2357 | return Index-1; // Could not evaluate this predicate. |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2358 | case SelectionDAGISel::OPC_CheckSame: |
| 2359 | Result = !::CheckSame(Table, Index, N, RecordedNodes); |
| 2360 | return Index; |
Craig Topper | a1bbc32 | 2013-10-05 05:38:16 +0000 | [diff] [blame] | 2361 | case SelectionDAGISel::OPC_CheckChild0Same: |
| 2362 | case SelectionDAGISel::OPC_CheckChild1Same: |
| 2363 | case SelectionDAGISel::OPC_CheckChild2Same: |
| 2364 | case SelectionDAGISel::OPC_CheckChild3Same: |
| 2365 | Result = !::CheckChildSame(Table, Index, N, RecordedNodes, |
| 2366 | Table[Index-1] - SelectionDAGISel::OPC_CheckChild0Same); |
| 2367 | return Index; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2368 | case SelectionDAGISel::OPC_CheckPatternPredicate: |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2369 | Result = !::CheckPatternPredicate(Table, Index, SDISel); |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2370 | return Index; |
| 2371 | case SelectionDAGISel::OPC_CheckPredicate: |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2372 | Result = !::CheckNodePredicate(Table, Index, SDISel, N.getNode()); |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2373 | return Index; |
| 2374 | case SelectionDAGISel::OPC_CheckOpcode: |
| 2375 | Result = !::CheckOpcode(Table, Index, N.getNode()); |
| 2376 | return Index; |
| 2377 | case SelectionDAGISel::OPC_CheckType: |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2378 | Result = !::CheckType(Table, Index, N, SDISel.getTargetLowering()); |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2379 | return Index; |
| 2380 | case SelectionDAGISel::OPC_CheckChild0Type: |
| 2381 | case SelectionDAGISel::OPC_CheckChild1Type: |
| 2382 | case SelectionDAGISel::OPC_CheckChild2Type: |
| 2383 | case SelectionDAGISel::OPC_CheckChild3Type: |
| 2384 | case SelectionDAGISel::OPC_CheckChild4Type: |
| 2385 | case SelectionDAGISel::OPC_CheckChild5Type: |
| 2386 | case SelectionDAGISel::OPC_CheckChild6Type: |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2387 | case SelectionDAGISel::OPC_CheckChild7Type: |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2388 | Result = !::CheckChildType(Table, Index, N, SDISel.getTargetLowering(), |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2389 | Table[Index-1] - SelectionDAGISel::OPC_CheckChild0Type); |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2390 | return Index; |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2391 | case SelectionDAGISel::OPC_CheckCondCode: |
| 2392 | Result = !::CheckCondCode(Table, Index, N); |
| 2393 | return Index; |
| 2394 | case SelectionDAGISel::OPC_CheckValueType: |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2395 | Result = !::CheckValueType(Table, Index, N, SDISel.getTargetLowering()); |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2396 | return Index; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2397 | case SelectionDAGISel::OPC_CheckInteger: |
| 2398 | Result = !::CheckInteger(Table, Index, N); |
| 2399 | return Index; |
Craig Topper | 7ca1d18 | 2014-02-05 05:44:28 +0000 | [diff] [blame] | 2400 | case SelectionDAGISel::OPC_CheckChild0Integer: |
| 2401 | case SelectionDAGISel::OPC_CheckChild1Integer: |
| 2402 | case SelectionDAGISel::OPC_CheckChild2Integer: |
| 2403 | case SelectionDAGISel::OPC_CheckChild3Integer: |
| 2404 | case SelectionDAGISel::OPC_CheckChild4Integer: |
| 2405 | Result = !::CheckChildInteger(Table, Index, N, |
| 2406 | Table[Index-1] - SelectionDAGISel::OPC_CheckChild0Integer); |
| 2407 | return Index; |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2408 | case SelectionDAGISel::OPC_CheckAndImm: |
| 2409 | Result = !::CheckAndImm(Table, Index, N, SDISel); |
| 2410 | return Index; |
| 2411 | case SelectionDAGISel::OPC_CheckOrImm: |
| 2412 | Result = !::CheckOrImm(Table, Index, N, SDISel); |
| 2413 | return Index; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2414 | } |
| 2415 | } |
| 2416 | |
Dan Gohman | b29cda9 | 2010-04-15 17:08:50 +0000 | [diff] [blame] | 2417 | namespace { |
Chris Lattner | 9732ab6 | 2010-03-02 06:55:04 +0000 | [diff] [blame] | 2418 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2419 | struct MatchScope { |
| 2420 | /// FailIndex - If this match fails, this is the index to continue with. |
| 2421 | unsigned FailIndex; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2422 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2423 | /// NodeStack - The node stack when the scope was formed. |
| 2424 | SmallVector<SDValue, 4> NodeStack; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2425 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2426 | /// NumRecordedNodes - The number of recorded nodes when the scope was formed. |
| 2427 | unsigned NumRecordedNodes; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2428 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2429 | /// NumMatchedMemRefs - The number of matched memref entries. |
| 2430 | unsigned NumMatchedMemRefs; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2431 | |
| 2432 | /// InputChain/InputGlue - The current chain/glue |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2433 | SDValue InputChain, InputGlue; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2434 | |
| 2435 | /// HasChainNodesMatched - True if the ChainNodesMatched list is non-empty. |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2436 | bool HasChainNodesMatched, HasGlueResultNodesMatched; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2437 | }; |
| 2438 | |
Dan Gohman | b29cda9 | 2010-04-15 17:08:50 +0000 | [diff] [blame] | 2439 | } |
| 2440 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2441 | SDNode *SelectionDAGISel:: |
| 2442 | SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable, |
| 2443 | unsigned TableSize) { |
| 2444 | // FIXME: Should these even be selected? Handle these cases in the caller? |
| 2445 | switch (NodeToMatch->getOpcode()) { |
| 2446 | default: |
| 2447 | break; |
| 2448 | case ISD::EntryToken: // These nodes remain the same. |
| 2449 | case ISD::BasicBlock: |
| 2450 | case ISD::Register: |
Jakob Stoklund Olesen | 9349351d | 2012-01-18 23:52:12 +0000 | [diff] [blame] | 2451 | case ISD::RegisterMask: |
Chris Lattner | 9efbbcb | 2010-03-14 17:53:23 +0000 | [diff] [blame] | 2452 | //case ISD::VALUETYPE: |
| 2453 | //case ISD::CONDCODE: |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2454 | case ISD::HANDLENODE: |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 2455 | case ISD::MDNODE_SDNODE: |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2456 | case ISD::TargetConstant: |
| 2457 | case ISD::TargetConstantFP: |
| 2458 | case ISD::TargetConstantPool: |
| 2459 | case ISD::TargetFrameIndex: |
| 2460 | case ISD::TargetExternalSymbol: |
| 2461 | case ISD::TargetBlockAddress: |
| 2462 | case ISD::TargetJumpTable: |
| 2463 | case ISD::TargetGlobalTLSAddress: |
| 2464 | case ISD::TargetGlobalAddress: |
| 2465 | case ISD::TokenFactor: |
| 2466 | case ISD::CopyFromReg: |
| 2467 | case ISD::CopyToReg: |
Chris Lattner | ee2fbbc | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 2468 | case ISD::EH_LABEL: |
Nadav Rotem | 7c277da | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 2469 | case ISD::LIFETIME_START: |
| 2470 | case ISD::LIFETIME_END: |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 2471 | NodeToMatch->setNodeId(-1); // Mark selected. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2472 | return nullptr; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2473 | case ISD::AssertSext: |
| 2474 | case ISD::AssertZext: |
| 2475 | CurDAG->ReplaceAllUsesOfValueWith(SDValue(NodeToMatch, 0), |
| 2476 | NodeToMatch->getOperand(0)); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2477 | return nullptr; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2478 | case ISD::INLINEASM: return Select_INLINEASM(NodeToMatch); |
Renato Golin | c7aea40 | 2014-05-06 16:51:25 +0000 | [diff] [blame] | 2479 | case ISD::READ_REGISTER: return Select_READ_REGISTER(NodeToMatch); |
| 2480 | case ISD::WRITE_REGISTER: return Select_WRITE_REGISTER(NodeToMatch); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2481 | case ISD::UNDEF: return Select_UNDEF(NodeToMatch); |
| 2482 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2483 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2484 | assert(!NodeToMatch->isMachineOpcode() && "Node already selected!"); |
| 2485 | |
| 2486 | // Set up the node stack with NodeToMatch as the only node on the stack. |
| 2487 | SmallVector<SDValue, 8> NodeStack; |
| 2488 | SDValue N = SDValue(NodeToMatch, 0); |
| 2489 | NodeStack.push_back(N); |
| 2490 | |
| 2491 | // MatchScopes - Scopes used when matching, if a match failure happens, this |
| 2492 | // indicates where to continue checking. |
| 2493 | SmallVector<MatchScope, 8> MatchScopes; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2494 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2495 | // RecordedNodes - This is the set of nodes that have been recorded by the |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2496 | // state machine. The second value is the parent of the node, or null if the |
| 2497 | // root is recorded. |
| 2498 | SmallVector<std::pair<SDValue, SDNode*>, 8> RecordedNodes; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2499 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2500 | // MatchedMemRefs - This is the set of MemRef's we've seen in the input |
| 2501 | // pattern. |
| 2502 | SmallVector<MachineMemOperand*, 2> MatchedMemRefs; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2503 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2504 | // These are the current input chain and glue for use when generating nodes. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2505 | // Various Emit operations change these. For example, emitting a copytoreg |
| 2506 | // uses and updates these. |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2507 | SDValue InputChain, InputGlue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2508 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2509 | // ChainNodesMatched - If a pattern matches nodes that have input/output |
| 2510 | // chains, the OPC_EmitMergeInputChains operation is emitted which indicates |
| 2511 | // which ones they are. The result is captured into this list so that we can |
| 2512 | // update the chain results when the pattern is complete. |
| 2513 | SmallVector<SDNode*, 3> ChainNodesMatched; |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2514 | SmallVector<SDNode*, 3> GlueResultNodesMatched; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2515 | |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 2516 | DEBUG(dbgs() << "ISEL: Starting pattern match on root node: "; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2517 | NodeToMatch->dump(CurDAG); |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 2518 | dbgs() << '\n'); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2519 | |
Chris Lattner | c1a3190 | 2010-03-01 18:47:11 +0000 | [diff] [blame] | 2520 | // Determine where to start the interpreter. Normally we start at opcode #0, |
| 2521 | // but if the state machine starts with an OPC_SwitchOpcode, then we |
| 2522 | // accelerate the first lookup (which is guaranteed to be hot) with the |
| 2523 | // OpcodeOffset table. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2524 | unsigned MatcherIndex = 0; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2525 | |
Chris Lattner | c1a3190 | 2010-03-01 18:47:11 +0000 | [diff] [blame] | 2526 | if (!OpcodeOffset.empty()) { |
| 2527 | // Already computed the OpcodeOffset table, just index into it. |
| 2528 | if (N.getOpcode() < OpcodeOffset.size()) |
| 2529 | MatcherIndex = OpcodeOffset[N.getOpcode()]; |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 2530 | DEBUG(dbgs() << " Initial Opcode index to " << MatcherIndex << "\n"); |
Chris Lattner | c1a3190 | 2010-03-01 18:47:11 +0000 | [diff] [blame] | 2531 | |
| 2532 | } else if (MatcherTable[0] == OPC_SwitchOpcode) { |
| 2533 | // Otherwise, the table isn't computed, but the state machine does start |
| 2534 | // with an OPC_SwitchOpcode instruction. Populate the table now, since this |
| 2535 | // is the first time we're selecting an instruction. |
| 2536 | unsigned Idx = 1; |
| 2537 | while (1) { |
| 2538 | // Get the size of this case. |
| 2539 | unsigned CaseSize = MatcherTable[Idx++]; |
| 2540 | if (CaseSize & 128) |
| 2541 | CaseSize = GetVBR(CaseSize, MatcherTable, Idx); |
| 2542 | if (CaseSize == 0) break; |
| 2543 | |
| 2544 | // Get the opcode, add the index to the table. |
Chris Lattner | 552dddc | 2010-03-25 06:33:05 +0000 | [diff] [blame] | 2545 | uint16_t Opc = MatcherTable[Idx++]; |
| 2546 | Opc |= (unsigned short)MatcherTable[Idx++] << 8; |
Chris Lattner | c1a3190 | 2010-03-01 18:47:11 +0000 | [diff] [blame] | 2547 | if (Opc >= OpcodeOffset.size()) |
| 2548 | OpcodeOffset.resize((Opc+1)*2); |
| 2549 | OpcodeOffset[Opc] = Idx; |
| 2550 | Idx += CaseSize; |
| 2551 | } |
| 2552 | |
| 2553 | // Okay, do the lookup for the first opcode. |
| 2554 | if (N.getOpcode() < OpcodeOffset.size()) |
| 2555 | MatcherIndex = OpcodeOffset[N.getOpcode()]; |
| 2556 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2557 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2558 | while (1) { |
| 2559 | assert(MatcherIndex < TableSize && "Invalid index"); |
Dan Gohman | 52cc041 | 2010-03-09 02:15:05 +0000 | [diff] [blame] | 2560 | #ifndef NDEBUG |
| 2561 | unsigned CurrentOpcodeIndex = MatcherIndex; |
| 2562 | #endif |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2563 | BuiltinOpcodes Opcode = (BuiltinOpcodes)MatcherTable[MatcherIndex++]; |
| 2564 | switch (Opcode) { |
| 2565 | case OPC_Scope: { |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2566 | // Okay, the semantics of this operation are that we should push a scope |
| 2567 | // then evaluate the first child. However, pushing a scope only to have |
| 2568 | // the first check fail (which then pops it) is inefficient. If we can |
| 2569 | // determine immediately that the first check (or first several) will |
| 2570 | // immediately fail, don't even bother pushing a scope for them. |
| 2571 | unsigned FailIndex; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2572 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2573 | while (1) { |
| 2574 | unsigned NumToSkip = MatcherTable[MatcherIndex++]; |
| 2575 | if (NumToSkip & 128) |
| 2576 | NumToSkip = GetVBR(NumToSkip, MatcherTable, MatcherIndex); |
| 2577 | // Found the end of the scope with no match. |
| 2578 | if (NumToSkip == 0) { |
| 2579 | FailIndex = 0; |
| 2580 | break; |
| 2581 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2582 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2583 | FailIndex = MatcherIndex+NumToSkip; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2584 | |
Chris Lattner | decc73d | 2010-03-27 18:54:50 +0000 | [diff] [blame] | 2585 | unsigned MatcherIndexOfPredicate = MatcherIndex; |
| 2586 | (void)MatcherIndexOfPredicate; // silence warning. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2587 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2588 | // If we can't evaluate this predicate without pushing a scope (e.g. if |
| 2589 | // it is a 'MoveParent') or if the predicate succeeds on this node, we |
| 2590 | // push the scope and evaluate the full predicate chain. |
| 2591 | bool Result; |
| 2592 | MatcherIndex = IsPredicateKnownToFail(MatcherTable, MatcherIndex, N, |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2593 | Result, *this, RecordedNodes); |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2594 | if (!Result) |
| 2595 | break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2596 | |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 2597 | DEBUG(dbgs() << " Skipped scope entry (due to false predicate) at " |
Chris Lattner | decc73d | 2010-03-27 18:54:50 +0000 | [diff] [blame] | 2598 | << "index " << MatcherIndexOfPredicate |
| 2599 | << ", continuing at " << FailIndex << "\n"); |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 2600 | ++NumDAGIselRetries; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2601 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2602 | // Otherwise, we know that this case of the Scope is guaranteed to fail, |
| 2603 | // move to the next case. |
| 2604 | MatcherIndex = FailIndex; |
| 2605 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2606 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2607 | // If the whole scope failed to match, bail. |
| 2608 | if (FailIndex == 0) break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2609 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2610 | // Push a MatchScope which indicates where to go if the first child fails |
| 2611 | // to match. |
| 2612 | MatchScope NewEntry; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2613 | NewEntry.FailIndex = FailIndex; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2614 | NewEntry.NodeStack.append(NodeStack.begin(), NodeStack.end()); |
| 2615 | NewEntry.NumRecordedNodes = RecordedNodes.size(); |
| 2616 | NewEntry.NumMatchedMemRefs = MatchedMemRefs.size(); |
| 2617 | NewEntry.InputChain = InputChain; |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2618 | NewEntry.InputGlue = InputGlue; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2619 | NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty(); |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2620 | NewEntry.HasGlueResultNodesMatched = !GlueResultNodesMatched.empty(); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2621 | MatchScopes.push_back(NewEntry); |
| 2622 | continue; |
| 2623 | } |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2624 | case OPC_RecordNode: { |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2625 | // Remember this node, it may end up being an operand in the pattern. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2626 | SDNode *Parent = nullptr; |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2627 | if (NodeStack.size() > 1) |
| 2628 | Parent = NodeStack[NodeStack.size()-2].getNode(); |
| 2629 | RecordedNodes.push_back(std::make_pair(N, Parent)); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2630 | continue; |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2631 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2632 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2633 | case OPC_RecordChild0: case OPC_RecordChild1: |
| 2634 | case OPC_RecordChild2: case OPC_RecordChild3: |
| 2635 | case OPC_RecordChild4: case OPC_RecordChild5: |
| 2636 | case OPC_RecordChild6: case OPC_RecordChild7: { |
| 2637 | unsigned ChildNo = Opcode-OPC_RecordChild0; |
| 2638 | if (ChildNo >= N.getNumOperands()) |
| 2639 | break; // Match fails if out of range child #. |
| 2640 | |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2641 | RecordedNodes.push_back(std::make_pair(N->getOperand(ChildNo), |
| 2642 | N.getNode())); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2643 | continue; |
| 2644 | } |
| 2645 | case OPC_RecordMemRef: |
| 2646 | MatchedMemRefs.push_back(cast<MemSDNode>(N)->getMemOperand()); |
| 2647 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2648 | |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 2649 | case OPC_CaptureGlueInput: |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2650 | // If the current node has an input glue, capture it in InputGlue. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2651 | if (N->getNumOperands() != 0 && |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 2652 | N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Glue) |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2653 | InputGlue = N->getOperand(N->getNumOperands()-1); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2654 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2655 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2656 | case OPC_MoveChild: { |
| 2657 | unsigned ChildNo = MatcherTable[MatcherIndex++]; |
| 2658 | if (ChildNo >= N.getNumOperands()) |
| 2659 | break; // Match fails if out of range child #. |
| 2660 | N = N.getOperand(ChildNo); |
| 2661 | NodeStack.push_back(N); |
| 2662 | continue; |
| 2663 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2664 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2665 | case OPC_MoveParent: |
| 2666 | // Pop the current node off the NodeStack. |
| 2667 | NodeStack.pop_back(); |
| 2668 | assert(!NodeStack.empty() && "Node stack imbalance!"); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2669 | N = NodeStack.back(); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2670 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2671 | |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2672 | case OPC_CheckSame: |
| 2673 | if (!::CheckSame(MatcherTable, MatcherIndex, N, RecordedNodes)) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2674 | continue; |
Craig Topper | a1bbc32 | 2013-10-05 05:38:16 +0000 | [diff] [blame] | 2675 | |
| 2676 | case OPC_CheckChild0Same: case OPC_CheckChild1Same: |
| 2677 | case OPC_CheckChild2Same: case OPC_CheckChild3Same: |
| 2678 | if (!::CheckChildSame(MatcherTable, MatcherIndex, N, RecordedNodes, |
| 2679 | Opcode-OPC_CheckChild0Same)) |
| 2680 | break; |
| 2681 | continue; |
| 2682 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2683 | case OPC_CheckPatternPredicate: |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2684 | if (!::CheckPatternPredicate(MatcherTable, MatcherIndex, *this)) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2685 | continue; |
| 2686 | case OPC_CheckPredicate: |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2687 | if (!::CheckNodePredicate(MatcherTable, MatcherIndex, *this, |
| 2688 | N.getNode())) |
| 2689 | break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2690 | continue; |
Chris Lattner | 0acbb71 | 2010-03-04 01:23:08 +0000 | [diff] [blame] | 2691 | case OPC_CheckComplexPat: { |
| 2692 | unsigned CPNum = MatcherTable[MatcherIndex++]; |
| 2693 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
| 2694 | assert(RecNo < RecordedNodes.size() && "Invalid CheckComplexPat"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2695 | if (!CheckComplexPattern(NodeToMatch, RecordedNodes[RecNo].second, |
| 2696 | RecordedNodes[RecNo].first, CPNum, |
Chris Lattner | 0acbb71 | 2010-03-04 01:23:08 +0000 | [diff] [blame] | 2697 | RecordedNodes)) |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2698 | break; |
| 2699 | continue; |
Chris Lattner | 0acbb71 | 2010-03-04 01:23:08 +0000 | [diff] [blame] | 2700 | } |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2701 | case OPC_CheckOpcode: |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2702 | if (!::CheckOpcode(MatcherTable, MatcherIndex, N.getNode())) break; |
| 2703 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2704 | |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2705 | case OPC_CheckType: |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2706 | if (!::CheckType(MatcherTable, MatcherIndex, N, getTargetLowering())) |
| 2707 | break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2708 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2709 | |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2710 | case OPC_SwitchOpcode: { |
| 2711 | unsigned CurNodeOpcode = N.getOpcode(); |
Chris Lattner | e89ca7c | 2010-03-01 07:43:08 +0000 | [diff] [blame] | 2712 | unsigned SwitchStart = MatcherIndex-1; (void)SwitchStart; |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2713 | unsigned CaseSize; |
| 2714 | while (1) { |
| 2715 | // Get the size of this case. |
| 2716 | CaseSize = MatcherTable[MatcherIndex++]; |
| 2717 | if (CaseSize & 128) |
| 2718 | CaseSize = GetVBR(CaseSize, MatcherTable, MatcherIndex); |
| 2719 | if (CaseSize == 0) break; |
| 2720 | |
Chris Lattner | 552dddc | 2010-03-25 06:33:05 +0000 | [diff] [blame] | 2721 | uint16_t Opc = MatcherTable[MatcherIndex++]; |
| 2722 | Opc |= (unsigned short)MatcherTable[MatcherIndex++] << 8; |
| 2723 | |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2724 | // If the opcode matches, then we will execute this case. |
Chris Lattner | 552dddc | 2010-03-25 06:33:05 +0000 | [diff] [blame] | 2725 | if (CurNodeOpcode == Opc) |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2726 | break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2727 | |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2728 | // Otherwise, skip over this case. |
| 2729 | MatcherIndex += CaseSize; |
| 2730 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2731 | |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2732 | // If no cases matched, bail out. |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2733 | if (CaseSize == 0) break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2734 | |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2735 | // Otherwise, execute the case we found. |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 2736 | DEBUG(dbgs() << " OpcodeSwitch from " << SwitchStart |
Chris Lattner | f4d1775 | 2010-03-01 06:59:22 +0000 | [diff] [blame] | 2737 | << " to " << MatcherIndex << "\n"); |
| 2738 | continue; |
| 2739 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2740 | |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2741 | case OPC_SwitchType: { |
Craig Topper | d9c2783 | 2013-08-15 02:44:19 +0000 | [diff] [blame] | 2742 | MVT CurNodeVT = N.getSimpleValueType(); |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2743 | unsigned SwitchStart = MatcherIndex-1; (void)SwitchStart; |
| 2744 | unsigned CaseSize; |
| 2745 | while (1) { |
| 2746 | // Get the size of this case. |
| 2747 | CaseSize = MatcherTable[MatcherIndex++]; |
| 2748 | if (CaseSize & 128) |
| 2749 | CaseSize = GetVBR(CaseSize, MatcherTable, MatcherIndex); |
| 2750 | if (CaseSize == 0) break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2751 | |
Duncan Sands | 1462777 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 2752 | MVT CaseVT = (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2753 | if (CaseVT == MVT::iPTR) |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2754 | CaseVT = getTargetLowering()->getPointerTy(); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2755 | |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2756 | // If the VT matches, then we will execute this case. |
| 2757 | if (CurNodeVT == CaseVT) |
| 2758 | break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2759 | |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2760 | // Otherwise, skip over this case. |
| 2761 | MatcherIndex += CaseSize; |
| 2762 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2763 | |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2764 | // If no cases matched, bail out. |
| 2765 | if (CaseSize == 0) break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2766 | |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2767 | // Otherwise, execute the case we found. |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 2768 | DEBUG(dbgs() << " TypeSwitch[" << EVT(CurNodeVT).getEVTString() |
Chris Lattner | 3e1ffd0 | 2010-03-03 06:28:15 +0000 | [diff] [blame] | 2769 | << "] from " << SwitchStart << " to " << MatcherIndex<<'\n'); |
| 2770 | continue; |
| 2771 | } |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2772 | case OPC_CheckChild0Type: case OPC_CheckChild1Type: |
| 2773 | case OPC_CheckChild2Type: case OPC_CheckChild3Type: |
| 2774 | case OPC_CheckChild4Type: case OPC_CheckChild5Type: |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2775 | case OPC_CheckChild6Type: case OPC_CheckChild7Type: |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2776 | if (!::CheckChildType(MatcherTable, MatcherIndex, N, getTargetLowering(), |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2777 | Opcode-OPC_CheckChild0Type)) |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2778 | break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2779 | continue; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2780 | case OPC_CheckCondCode: |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2781 | if (!::CheckCondCode(MatcherTable, MatcherIndex, N)) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2782 | continue; |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2783 | case OPC_CheckValueType: |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2784 | if (!::CheckValueType(MatcherTable, MatcherIndex, N, getTargetLowering())) |
| 2785 | break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2786 | continue; |
Chris Lattner | 796f1da | 2010-03-03 07:31:15 +0000 | [diff] [blame] | 2787 | case OPC_CheckInteger: |
| 2788 | if (!::CheckInteger(MatcherTable, MatcherIndex, N)) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2789 | continue; |
Craig Topper | 7ca1d18 | 2014-02-05 05:44:28 +0000 | [diff] [blame] | 2790 | case OPC_CheckChild0Integer: case OPC_CheckChild1Integer: |
| 2791 | case OPC_CheckChild2Integer: case OPC_CheckChild3Integer: |
| 2792 | case OPC_CheckChild4Integer: |
| 2793 | if (!::CheckChildInteger(MatcherTable, MatcherIndex, N, |
| 2794 | Opcode-OPC_CheckChild0Integer)) break; |
| 2795 | continue; |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2796 | case OPC_CheckAndImm: |
| 2797 | if (!::CheckAndImm(MatcherTable, MatcherIndex, N, *this)) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2798 | continue; |
Chris Lattner | dc1b6f7 | 2010-03-03 07:46:25 +0000 | [diff] [blame] | 2799 | case OPC_CheckOrImm: |
| 2800 | if (!::CheckOrImm(MatcherTable, MatcherIndex, N, *this)) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2801 | continue; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2802 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2803 | case OPC_CheckFoldableChainNode: { |
| 2804 | assert(NodeStack.size() != 1 && "No parent node"); |
| 2805 | // Verify that all intermediate nodes between the root and this one have |
| 2806 | // a single use. |
| 2807 | bool HasMultipleUses = false; |
| 2808 | for (unsigned i = 1, e = NodeStack.size()-1; i != e; ++i) |
| 2809 | if (!NodeStack[i].hasOneUse()) { |
| 2810 | HasMultipleUses = true; |
| 2811 | break; |
| 2812 | } |
| 2813 | if (HasMultipleUses) break; |
| 2814 | |
| 2815 | // Check to see that the target thinks this is profitable to fold and that |
| 2816 | // we can fold it without inducing cycles in the graph. |
| 2817 | if (!IsProfitableToFold(N, NodeStack[NodeStack.size()-2].getNode(), |
| 2818 | NodeToMatch) || |
| 2819 | !IsLegalToFold(N, NodeStack[NodeStack.size()-2].getNode(), |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 2820 | NodeToMatch, OptLevel, |
| 2821 | true/*We validate our own chains*/)) |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2822 | break; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2823 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2824 | continue; |
| 2825 | } |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2826 | case OPC_EmitInteger: { |
| 2827 | MVT::SimpleValueType VT = |
| 2828 | (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
| 2829 | int64_t Val = MatcherTable[MatcherIndex++]; |
| 2830 | if (Val & 128) |
| 2831 | Val = GetVBR(Val, MatcherTable, MatcherIndex); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2832 | RecordedNodes.push_back(std::pair<SDValue, SDNode*>( |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2833 | CurDAG->getTargetConstant(Val, VT), nullptr)); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2834 | continue; |
| 2835 | } |
| 2836 | case OPC_EmitRegister: { |
| 2837 | MVT::SimpleValueType VT = |
| 2838 | (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
| 2839 | unsigned RegNo = MatcherTable[MatcherIndex++]; |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2840 | RecordedNodes.push_back(std::pair<SDValue, SDNode*>( |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2841 | CurDAG->getRegister(RegNo, VT), nullptr)); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2842 | continue; |
| 2843 | } |
Jim Grosbach | 1d479db | 2011-03-01 01:37:19 +0000 | [diff] [blame] | 2844 | case OPC_EmitRegister2: { |
| 2845 | // For targets w/ more than 256 register names, the register enum |
| 2846 | // values are stored in two bytes in the matcher table (just like |
| 2847 | // opcodes). |
| 2848 | MVT::SimpleValueType VT = |
| 2849 | (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
| 2850 | unsigned RegNo = MatcherTable[MatcherIndex++]; |
| 2851 | RegNo |= MatcherTable[MatcherIndex++] << 8; |
| 2852 | RecordedNodes.push_back(std::pair<SDValue, SDNode*>( |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2853 | CurDAG->getRegister(RegNo, VT), nullptr)); |
Jim Grosbach | 1d479db | 2011-03-01 01:37:19 +0000 | [diff] [blame] | 2854 | continue; |
| 2855 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2856 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2857 | case OPC_EmitConvertToTarget: { |
| 2858 | // Convert from IMM/FPIMM to target version. |
| 2859 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 2860 | assert(RecNo < RecordedNodes.size() && "Invalid EmitConvertToTarget"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2861 | SDValue Imm = RecordedNodes[RecNo].first; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2862 | |
| 2863 | if (Imm->getOpcode() == ISD::Constant) { |
Nadav Rotem | 40cda80 | 2013-03-07 06:34:49 +0000 | [diff] [blame] | 2864 | const ConstantInt *Val=cast<ConstantSDNode>(Imm)->getConstantIntValue(); |
| 2865 | Imm = CurDAG->getConstant(*Val, Imm.getValueType(), true); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2866 | } else if (Imm->getOpcode() == ISD::ConstantFP) { |
| 2867 | const ConstantFP *Val=cast<ConstantFPSDNode>(Imm)->getConstantFPValue(); |
Nadav Rotem | 40cda80 | 2013-03-07 06:34:49 +0000 | [diff] [blame] | 2868 | Imm = CurDAG->getConstantFP(*Val, Imm.getValueType(), true); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2869 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2870 | |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2871 | RecordedNodes.push_back(std::make_pair(Imm, RecordedNodes[RecNo].second)); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2872 | continue; |
| 2873 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2874 | |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2875 | case OPC_EmitMergeInputChains1_0: // OPC_EmitMergeInputChains, 1, 0 |
| 2876 | case OPC_EmitMergeInputChains1_1: { // OPC_EmitMergeInputChains, 1, 1 |
| 2877 | // These are space-optimized forms of OPC_EmitMergeInputChains. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2878 | assert(!InputChain.getNode() && |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2879 | "EmitMergeInputChains should be the first chain producing node"); |
| 2880 | assert(ChainNodesMatched.empty() && |
| 2881 | "Should only have one EmitMergeInputChains per match"); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2882 | |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2883 | // Read all of the chained nodes. |
| 2884 | unsigned RecNo = Opcode == OPC_EmitMergeInputChains1_1; |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 2885 | assert(RecNo < RecordedNodes.size() && "Invalid EmitMergeInputChains"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2886 | ChainNodesMatched.push_back(RecordedNodes[RecNo].first.getNode()); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2887 | |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2888 | // FIXME: What if other value results of the node have uses not matched |
| 2889 | // by this pattern? |
| 2890 | if (ChainNodesMatched.back() != NodeToMatch && |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2891 | !RecordedNodes[RecNo].first.hasOneUse()) { |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2892 | ChainNodesMatched.clear(); |
| 2893 | break; |
| 2894 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2895 | |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2896 | // Merge the input chains if they are not intra-pattern references. |
| 2897 | InputChain = HandleMergeInputChains(ChainNodesMatched, CurDAG); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2898 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2899 | if (!InputChain.getNode()) |
Chris Lattner | 49e2773 | 2010-03-28 05:50:16 +0000 | [diff] [blame] | 2900 | break; // Failed to merge. |
| 2901 | continue; |
| 2902 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2903 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2904 | case OPC_EmitMergeInputChains: { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2905 | assert(!InputChain.getNode() && |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2906 | "EmitMergeInputChains should be the first chain producing node"); |
| 2907 | // This node gets a list of nodes we matched in the input that have |
| 2908 | // chains. We want to token factor all of the input chains to these nodes |
| 2909 | // together. However, if any of the input chains is actually one of the |
| 2910 | // nodes matched in this pattern, then we have an intra-match reference. |
| 2911 | // Ignore these because the newly token factored chain should not refer to |
| 2912 | // the old nodes. |
| 2913 | unsigned NumChains = MatcherTable[MatcherIndex++]; |
| 2914 | assert(NumChains != 0 && "Can't TF zero chains"); |
| 2915 | |
| 2916 | assert(ChainNodesMatched.empty() && |
| 2917 | "Should only have one EmitMergeInputChains per match"); |
| 2918 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2919 | // Read all of the chained nodes. |
Chris Lattner | 27a184b | 2010-03-02 19:34:59 +0000 | [diff] [blame] | 2920 | for (unsigned i = 0; i != NumChains; ++i) { |
| 2921 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 2922 | assert(RecNo < RecordedNodes.size() && "Invalid EmitMergeInputChains"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2923 | ChainNodesMatched.push_back(RecordedNodes[RecNo].first.getNode()); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2924 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2925 | // FIXME: What if other value results of the node have uses not matched |
| 2926 | // by this pattern? |
| 2927 | if (ChainNodesMatched.back() != NodeToMatch && |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2928 | !RecordedNodes[RecNo].first.hasOneUse()) { |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2929 | ChainNodesMatched.clear(); |
| 2930 | break; |
| 2931 | } |
| 2932 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2933 | |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2934 | // If the inner loop broke out, the match fails. |
| 2935 | if (ChainNodesMatched.empty()) |
| 2936 | break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2937 | |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2938 | // Merge the input chains if they are not intra-pattern references. |
| 2939 | InputChain = HandleMergeInputChains(ChainNodesMatched, CurDAG); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2940 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2941 | if (!InputChain.getNode()) |
Chris Lattner | c1f2e15 | 2010-03-02 00:00:03 +0000 | [diff] [blame] | 2942 | break; // Failed to merge. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2943 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2944 | continue; |
| 2945 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2946 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2947 | case OPC_EmitCopyToReg: { |
| 2948 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 2949 | assert(RecNo < RecordedNodes.size() && "Invalid EmitCopyToReg"); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2950 | unsigned DestPhysReg = MatcherTable[MatcherIndex++]; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2951 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2952 | if (!InputChain.getNode()) |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2953 | InputChain = CurDAG->getEntryNode(); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2954 | |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2955 | InputChain = CurDAG->getCopyToReg(InputChain, SDLoc(NodeToMatch), |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2956 | DestPhysReg, RecordedNodes[RecNo].first, |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2957 | InputGlue); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2958 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2959 | InputGlue = InputChain.getValue(1); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2960 | continue; |
| 2961 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2962 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2963 | case OPC_EmitNodeXForm: { |
| 2964 | unsigned XFormNo = MatcherTable[MatcherIndex++]; |
| 2965 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 2966 | assert(RecNo < RecordedNodes.size() && "Invalid EmitNodeXForm"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 2967 | SDValue Res = RunSDNodeXForm(RecordedNodes[RecNo].first, XFormNo); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2968 | RecordedNodes.push_back(std::pair<SDValue,SDNode*>(Res, nullptr)); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2969 | continue; |
| 2970 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2971 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2972 | case OPC_EmitNode: |
| 2973 | case OPC_MorphNodeTo: { |
Chris Lattner | 53cf6b8 | 2010-02-28 22:38:43 +0000 | [diff] [blame] | 2974 | uint16_t TargetOpc = MatcherTable[MatcherIndex++]; |
| 2975 | TargetOpc |= (unsigned short)MatcherTable[MatcherIndex++] << 8; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2976 | unsigned EmitNodeInfo = MatcherTable[MatcherIndex++]; |
| 2977 | // Get the result VT list. |
| 2978 | unsigned NumVTs = MatcherTable[MatcherIndex++]; |
| 2979 | SmallVector<EVT, 4> VTs; |
| 2980 | for (unsigned i = 0; i != NumVTs; ++i) { |
| 2981 | MVT::SimpleValueType VT = |
| 2982 | (MVT::SimpleValueType)MatcherTable[MatcherIndex++]; |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2983 | if (VT == MVT::iPTR) VT = getTargetLowering()->getPointerTy().SimpleTy; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2984 | VTs.push_back(VT); |
| 2985 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2986 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 2987 | if (EmitNodeInfo & OPFL_Chain) |
| 2988 | VTs.push_back(MVT::Other); |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 2989 | if (EmitNodeInfo & OPFL_GlueOutput) |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 2990 | VTs.push_back(MVT::Glue); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 2991 | |
Chris Lattner | e89ca7c | 2010-03-01 07:43:08 +0000 | [diff] [blame] | 2992 | // This is hot code, so optimize the two most common cases of 1 and 2 |
| 2993 | // results. |
| 2994 | SDVTList VTList; |
| 2995 | if (VTs.size() == 1) |
| 2996 | VTList = CurDAG->getVTList(VTs[0]); |
| 2997 | else if (VTs.size() == 2) |
| 2998 | VTList = CurDAG->getVTList(VTs[0], VTs[1]); |
| 2999 | else |
Craig Topper | abb4ac7 | 2014-04-16 06:10:51 +0000 | [diff] [blame] | 3000 | VTList = CurDAG->getVTList(VTs); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3001 | |
| 3002 | // Get the operand list. |
| 3003 | unsigned NumOps = MatcherTable[MatcherIndex++]; |
| 3004 | SmallVector<SDValue, 8> Ops; |
| 3005 | for (unsigned i = 0; i != NumOps; ++i) { |
| 3006 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
| 3007 | if (RecNo & 128) |
| 3008 | RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3009 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3010 | assert(RecNo < RecordedNodes.size() && "Invalid EmitNode"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 3011 | Ops.push_back(RecordedNodes[RecNo].first); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3012 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3013 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3014 | // If there are variadic operands to add, handle them now. |
| 3015 | if (EmitNodeInfo & OPFL_VariadicInfo) { |
| 3016 | // Determine the start index to copy from. |
| 3017 | unsigned FirstOpToCopy = getNumFixedFromVariadicInfo(EmitNodeInfo); |
| 3018 | FirstOpToCopy += (EmitNodeInfo & OPFL_Chain) ? 1 : 0; |
| 3019 | assert(NodeToMatch->getNumOperands() >= FirstOpToCopy && |
| 3020 | "Invalid variadic node"); |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3021 | // Copy all of the variadic operands, not including a potential glue |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3022 | // input. |
| 3023 | for (unsigned i = FirstOpToCopy, e = NodeToMatch->getNumOperands(); |
| 3024 | i != e; ++i) { |
| 3025 | SDValue V = NodeToMatch->getOperand(i); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 3026 | if (V.getValueType() == MVT::Glue) break; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3027 | Ops.push_back(V); |
| 3028 | } |
| 3029 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3030 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3031 | // If this has chain/glue inputs, add them. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3032 | if (EmitNodeInfo & OPFL_Chain) |
| 3033 | Ops.push_back(InputChain); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3034 | if ((EmitNodeInfo & OPFL_GlueInput) && InputGlue.getNode() != nullptr) |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3035 | Ops.push_back(InputGlue); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3036 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3037 | // Create the node. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3038 | SDNode *Res = nullptr; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3039 | if (Opcode != OPC_MorphNodeTo) { |
| 3040 | // If this is a normal EmitNode command, just create the new node and |
| 3041 | // add the results to the RecordedNodes list. |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3042 | Res = CurDAG->getMachineNode(TargetOpc, SDLoc(NodeToMatch), |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 3043 | VTList, Ops); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3044 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3045 | // Add all the non-glue/non-chain results to the RecordedNodes list. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3046 | for (unsigned i = 0, e = VTs.size(); i != e; ++i) { |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 3047 | if (VTs[i] == MVT::Other || VTs[i] == MVT::Glue) break; |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 3048 | RecordedNodes.push_back(std::pair<SDValue,SDNode*>(SDValue(Res, i), |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3049 | nullptr)); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3050 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3051 | |
Jakob Stoklund Olesen | d114da6 | 2012-04-20 23:36:09 +0000 | [diff] [blame] | 3052 | } else if (NodeToMatch->getOpcode() != ISD::DELETED_NODE) { |
Craig Topper | b2ba83c | 2014-04-27 19:21:20 +0000 | [diff] [blame] | 3053 | Res = MorphNode(NodeToMatch, TargetOpc, VTList, Ops, EmitNodeInfo); |
Jakob Stoklund Olesen | d114da6 | 2012-04-20 23:36:09 +0000 | [diff] [blame] | 3054 | } else { |
| 3055 | // NodeToMatch was eliminated by CSE when the target changed the DAG. |
| 3056 | // We will visit the equivalent node later. |
| 3057 | DEBUG(dbgs() << "Node was eliminated by CSE\n"); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3058 | return nullptr; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3059 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3060 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3061 | // If the node had chain/glue results, update our notion of the current |
| 3062 | // chain and glue. |
| 3063 | if (EmitNodeInfo & OPFL_GlueOutput) { |
| 3064 | InputGlue = SDValue(Res, VTs.size()-1); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3065 | if (EmitNodeInfo & OPFL_Chain) |
| 3066 | InputChain = SDValue(Res, VTs.size()-2); |
| 3067 | } else if (EmitNodeInfo & OPFL_Chain) |
| 3068 | InputChain = SDValue(Res, VTs.size()-1); |
| 3069 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3070 | // If the OPFL_MemRefs glue is set on this node, slap all of the |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3071 | // accumulated memrefs onto it. |
| 3072 | // |
| 3073 | // FIXME: This is vastly incorrect for patterns with multiple outputs |
| 3074 | // instructions that access memory and for ComplexPatterns that match |
| 3075 | // loads. |
| 3076 | if (EmitNodeInfo & OPFL_MemRefs) { |
Cameron Zwarich | 2af60ab | 2011-05-19 23:44:34 +0000 | [diff] [blame] | 3077 | // Only attach load or store memory operands if the generated |
| 3078 | // instruction may load or store. |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 3079 | const MCInstrDesc &MCID = TM.getInstrInfo()->get(TargetOpc); |
| 3080 | bool mayLoad = MCID.mayLoad(); |
| 3081 | bool mayStore = MCID.mayStore(); |
Cameron Zwarich | 2af60ab | 2011-05-19 23:44:34 +0000 | [diff] [blame] | 3082 | |
| 3083 | unsigned NumMemRefs = 0; |
Craig Topper | af0ad9e | 2013-07-03 05:18:47 +0000 | [diff] [blame] | 3084 | for (SmallVectorImpl<MachineMemOperand *>::const_iterator I = |
| 3085 | MatchedMemRefs.begin(), E = MatchedMemRefs.end(); I != E; ++I) { |
Cameron Zwarich | 2af60ab | 2011-05-19 23:44:34 +0000 | [diff] [blame] | 3086 | if ((*I)->isLoad()) { |
| 3087 | if (mayLoad) |
| 3088 | ++NumMemRefs; |
| 3089 | } else if ((*I)->isStore()) { |
| 3090 | if (mayStore) |
| 3091 | ++NumMemRefs; |
| 3092 | } else { |
| 3093 | ++NumMemRefs; |
| 3094 | } |
| 3095 | } |
| 3096 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3097 | MachineSDNode::mmo_iterator MemRefs = |
Cameron Zwarich | 2af60ab | 2011-05-19 23:44:34 +0000 | [diff] [blame] | 3098 | MF->allocateMemRefsArray(NumMemRefs); |
| 3099 | |
| 3100 | MachineSDNode::mmo_iterator MemRefsPos = MemRefs; |
Craig Topper | af0ad9e | 2013-07-03 05:18:47 +0000 | [diff] [blame] | 3101 | for (SmallVectorImpl<MachineMemOperand *>::const_iterator I = |
| 3102 | MatchedMemRefs.begin(), E = MatchedMemRefs.end(); I != E; ++I) { |
Cameron Zwarich | 2af60ab | 2011-05-19 23:44:34 +0000 | [diff] [blame] | 3103 | if ((*I)->isLoad()) { |
| 3104 | if (mayLoad) |
| 3105 | *MemRefsPos++ = *I; |
| 3106 | } else if ((*I)->isStore()) { |
| 3107 | if (mayStore) |
| 3108 | *MemRefsPos++ = *I; |
| 3109 | } else { |
| 3110 | *MemRefsPos++ = *I; |
| 3111 | } |
| 3112 | } |
| 3113 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3114 | cast<MachineSDNode>(Res) |
Cameron Zwarich | 2af60ab | 2011-05-19 23:44:34 +0000 | [diff] [blame] | 3115 | ->setMemRefs(MemRefs, MemRefs + NumMemRefs); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3116 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3117 | |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 3118 | DEBUG(dbgs() << " " |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3119 | << (Opcode == OPC_MorphNodeTo ? "Morphed" : "Created") |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 3120 | << " node: "; Res->dump(CurDAG); dbgs() << "\n"); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3121 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3122 | // If this was a MorphNodeTo then we're completely done! |
| 3123 | if (Opcode == OPC_MorphNodeTo) { |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3124 | // Update chain and glue uses. |
| 3125 | UpdateChainsAndGlue(NodeToMatch, InputChain, ChainNodesMatched, |
| 3126 | InputGlue, GlueResultNodesMatched, true); |
Chris Lattner | 925ac71 | 2010-03-02 07:50:03 +0000 | [diff] [blame] | 3127 | return Res; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3128 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3129 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3130 | continue; |
| 3131 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3132 | |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 3133 | case OPC_MarkGlueResults: { |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3134 | unsigned NumNodes = MatcherTable[MatcherIndex++]; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3135 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3136 | // Read and remember all the glue-result nodes. |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3137 | for (unsigned i = 0; i != NumNodes; ++i) { |
| 3138 | unsigned RecNo = MatcherTable[MatcherIndex++]; |
| 3139 | if (RecNo & 128) |
| 3140 | RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex); |
| 3141 | |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 3142 | assert(RecNo < RecordedNodes.size() && "Invalid MarkGlueResults"); |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3143 | GlueResultNodesMatched.push_back(RecordedNodes[RecNo].first.getNode()); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3144 | } |
| 3145 | continue; |
| 3146 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3147 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3148 | case OPC_CompleteMatch: { |
| 3149 | // The match has been completed, and any new nodes (if any) have been |
| 3150 | // created. Patch up references to the matched dag to use the newly |
| 3151 | // created nodes. |
| 3152 | unsigned NumResults = MatcherTable[MatcherIndex++]; |
| 3153 | |
| 3154 | for (unsigned i = 0; i != NumResults; ++i) { |
| 3155 | unsigned ResSlot = MatcherTable[MatcherIndex++]; |
| 3156 | if (ResSlot & 128) |
| 3157 | ResSlot = GetVBR(ResSlot, MatcherTable, MatcherIndex); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3158 | |
Craig Topper | a7afa71 | 2013-10-06 22:38:19 +0000 | [diff] [blame] | 3159 | assert(ResSlot < RecordedNodes.size() && "Invalid CompleteMatch"); |
Chris Lattner | a9e57e0 | 2010-09-21 22:00:25 +0000 | [diff] [blame] | 3160 | SDValue Res = RecordedNodes[ResSlot].first; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3161 | |
Chris Lattner | 4d8786b | 2010-03-28 05:54:03 +0000 | [diff] [blame] | 3162 | assert(i < NodeToMatch->getNumValues() && |
| 3163 | NodeToMatch->getValueType(i) != MVT::Other && |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 3164 | NodeToMatch->getValueType(i) != MVT::Glue && |
Chris Lattner | 4d8786b | 2010-03-28 05:54:03 +0000 | [diff] [blame] | 3165 | "Invalid number of results to complete!"); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3166 | assert((NodeToMatch->getValueType(i) == Res.getValueType() || |
| 3167 | NodeToMatch->getValueType(i) == MVT::iPTR || |
| 3168 | Res.getValueType() == MVT::iPTR || |
| 3169 | NodeToMatch->getValueType(i).getSizeInBits() == |
| 3170 | Res.getValueType().getSizeInBits()) && |
| 3171 | "invalid replacement"); |
| 3172 | CurDAG->ReplaceAllUsesOfValueWith(SDValue(NodeToMatch, i), Res); |
| 3173 | } |
| 3174 | |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 3175 | // If the root node defines glue, add it to the glue nodes to update list. |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 3176 | if (NodeToMatch->getValueType(NodeToMatch->getNumValues()-1) == MVT::Glue) |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3177 | GlueResultNodesMatched.push_back(NodeToMatch); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3178 | |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3179 | // Update chain and glue uses. |
| 3180 | UpdateChainsAndGlue(NodeToMatch, InputChain, ChainNodesMatched, |
| 3181 | InputGlue, GlueResultNodesMatched, false); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3182 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3183 | assert(NodeToMatch->use_empty() && |
| 3184 | "Didn't replace all uses of the node?"); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3185 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3186 | // FIXME: We just return here, which interacts correctly with SelectRoot |
| 3187 | // above. We should fix this to not return an SDNode* anymore. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3188 | return nullptr; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3189 | } |
| 3190 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3191 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3192 | // If the code reached this point, then the match failed. See if there is |
| 3193 | // another child to try in the current 'Scope', otherwise pop it until we |
| 3194 | // find a case to check. |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 3195 | DEBUG(dbgs() << " Match failed at index " << CurrentOpcodeIndex << "\n"); |
Jan Wen Voung | 7857a64 | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 3196 | ++NumDAGIselRetries; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3197 | while (1) { |
| 3198 | if (MatchScopes.empty()) { |
| 3199 | CannotYetSelect(NodeToMatch); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3200 | return nullptr; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3201 | } |
| 3202 | |
| 3203 | // Restore the interpreter state back to the point where the scope was |
| 3204 | // formed. |
| 3205 | MatchScope &LastScope = MatchScopes.back(); |
| 3206 | RecordedNodes.resize(LastScope.NumRecordedNodes); |
| 3207 | NodeStack.clear(); |
| 3208 | NodeStack.append(LastScope.NodeStack.begin(), LastScope.NodeStack.end()); |
| 3209 | N = NodeStack.back(); |
| 3210 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3211 | if (LastScope.NumMatchedMemRefs != MatchedMemRefs.size()) |
| 3212 | MatchedMemRefs.resize(LastScope.NumMatchedMemRefs); |
| 3213 | MatcherIndex = LastScope.FailIndex; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3214 | |
Eli Bendersky | dbeefaa | 2013-04-19 21:37:07 +0000 | [diff] [blame] | 3215 | DEBUG(dbgs() << " Continuing at " << MatcherIndex << "\n"); |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3216 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3217 | InputChain = LastScope.InputChain; |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3218 | InputGlue = LastScope.InputGlue; |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3219 | if (!LastScope.HasChainNodesMatched) |
| 3220 | ChainNodesMatched.clear(); |
Chris Lattner | f647e95 | 2010-12-23 17:13:18 +0000 | [diff] [blame] | 3221 | if (!LastScope.HasGlueResultNodesMatched) |
| 3222 | GlueResultNodesMatched.clear(); |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3223 | |
| 3224 | // Check to see what the offset is at the new MatcherIndex. If it is zero |
| 3225 | // we have reached the end of this scope, otherwise we have another child |
| 3226 | // in the current scope to try. |
| 3227 | unsigned NumToSkip = MatcherTable[MatcherIndex++]; |
| 3228 | if (NumToSkip & 128) |
| 3229 | NumToSkip = GetVBR(NumToSkip, MatcherTable, MatcherIndex); |
| 3230 | |
| 3231 | // If we have another child in this scope to match, update FailIndex and |
| 3232 | // try it. |
| 3233 | if (NumToSkip != 0) { |
| 3234 | LastScope.FailIndex = MatcherIndex+NumToSkip; |
| 3235 | break; |
| 3236 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3237 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3238 | // End of this scope, pop it and try the next child in the containing |
| 3239 | // scope. |
| 3240 | MatchScopes.pop_back(); |
| 3241 | } |
| 3242 | } |
| 3243 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3244 | |
Chris Lattner | 5ef43ce | 2010-02-28 22:37:22 +0000 | [diff] [blame] | 3245 | |
| 3246 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 3247 | void SelectionDAGISel::CannotYetSelect(SDNode *N) { |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame^] | 3248 | std::string msg; |
| 3249 | raw_string_ostream Msg(msg); |
Chris Lattner | 17f906b | 2010-12-21 02:07:03 +0000 | [diff] [blame] | 3250 | Msg << "Cannot select: "; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 3251 | |
Chris Lattner | 878b3e4 | 2010-03-04 00:21:16 +0000 | [diff] [blame] | 3252 | if (N->getOpcode() != ISD::INTRINSIC_W_CHAIN && |
| 3253 | N->getOpcode() != ISD::INTRINSIC_WO_CHAIN && |
| 3254 | N->getOpcode() != ISD::INTRINSIC_VOID) { |
| 3255 | N->printrFull(Msg, CurDAG); |
Craig Topper | a538d83 | 2012-08-22 06:07:19 +0000 | [diff] [blame] | 3256 | Msg << "\nIn function: " << MF->getName(); |
Chris Lattner | 878b3e4 | 2010-03-04 00:21:16 +0000 | [diff] [blame] | 3257 | } else { |
| 3258 | bool HasInputChain = N->getOperand(0).getValueType() == MVT::Other; |
| 3259 | unsigned iid = |
| 3260 | cast<ConstantSDNode>(N->getOperand(HasInputChain))->getZExtValue(); |
| 3261 | if (iid < Intrinsic::num_intrinsics) |
| 3262 | Msg << "intrinsic %" << Intrinsic::getName((Intrinsic::ID)iid); |
| 3263 | else if (const TargetIntrinsicInfo *TII = TM.getIntrinsicInfo()) |
| 3264 | Msg << "target intrinsic %" << TII->getName(iid); |
| 3265 | else |
| 3266 | Msg << "unknown intrinsic #" << iid; |
| 3267 | } |
Chris Lattner | 2104b8d | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 3268 | report_fatal_error(Msg.str()); |
Dan Gohman | 554a75a | 2009-10-29 22:30:23 +0000 | [diff] [blame] | 3269 | } |
| 3270 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 3271 | char SelectionDAGISel::ID = 0; |