Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1 | //===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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 | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This implements the SelectionDAGISel class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "isel" |
Dan Gohman | 84fbac5 | 2009-02-06 17:22:58 +0000 | [diff] [blame] | 15 | #include "ScheduleDAGSDNodes.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 16 | #include "SelectionDAGBuild.h" |
Dan Gohman | 84fbac5 | 2009-02-06 17:22:58 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/SelectionDAGISel.h" |
Jim Laskey | c7c3f11 | 2006-10-16 20:52:31 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/AliasAnalysis.h" |
Anton Korobeynikov | 5502bf6 | 2007-04-04 21:14:49 +0000 | [diff] [blame] | 19 | #include "llvm/Constants.h" |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 20 | #include "llvm/CallingConv.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 21 | #include "llvm/DerivedTypes.h" |
| 22 | #include "llvm/Function.h" |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 23 | #include "llvm/GlobalVariable.h" |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 24 | #include "llvm/InlineAsm.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 25 | #include "llvm/Instructions.h" |
| 26 | #include "llvm/Intrinsics.h" |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 27 | #include "llvm/IntrinsicInst.h" |
Dan Gohman | 78eca17 | 2008-08-19 22:33:34 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/FastISel.h" |
Gordon Henriksen | 5a29c9e | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/GCStrategy.h" |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/GCMetadata.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineFunction.h" |
| 32 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 33 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
| 35 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 36 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | fc54c55 | 2009-01-15 22:18:12 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/ScheduleHazardRecognizer.h" |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/SchedulerRegistry.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/SelectionDAG.h" |
Devang Patel | 6e7a161 | 2009-01-09 19:11:50 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/DwarfWriter.h" |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetRegisterInfo.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 42 | #include "llvm/Target/TargetData.h" |
| 43 | #include "llvm/Target/TargetFrameInfo.h" |
| 44 | #include "llvm/Target/TargetInstrInfo.h" |
| 45 | #include "llvm/Target/TargetLowering.h" |
| 46 | #include "llvm/Target/TargetMachine.h" |
Vladimir Prus | 1247291 | 2006-05-23 13:43:15 +0000 | [diff] [blame] | 47 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Compiler.h" |
Evan Cheng | db8d56b | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 49 | #include "llvm/Support/Debug.h" |
| 50 | #include "llvm/Support/MathExtras.h" |
| 51 | #include "llvm/Support/Timer.h" |
Jeff Cohen | 7e88103 | 2006-02-24 02:52:40 +0000 | [diff] [blame] | 52 | #include <algorithm> |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 53 | using namespace llvm; |
| 54 | |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 55 | static cl::opt<bool> |
Duncan Sands | 7cb0787 | 2008-10-27 08:42:46 +0000 | [diff] [blame] | 56 | DisableLegalizeTypes("disable-legalize-types", cl::Hidden); |
Dan Gohman | 78eca17 | 2008-08-19 22:33:34 +0000 | [diff] [blame] | 57 | static cl::opt<bool> |
Dan Gohman | 293d5f8 | 2008-09-09 22:06:46 +0000 | [diff] [blame] | 58 | EnableFastISelVerbose("fast-isel-verbose", cl::Hidden, |
Dan Gohman | d659d50 | 2008-10-20 21:30:12 +0000 | [diff] [blame] | 59 | cl::desc("Enable verbose messages in the \"fast\" " |
Dan Gohman | 293d5f8 | 2008-09-09 22:06:46 +0000 | [diff] [blame] | 60 | "instruction selector")); |
| 61 | static cl::opt<bool> |
Dan Gohman | 4344a5d | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 62 | EnableFastISelAbort("fast-isel-abort", cl::Hidden, |
| 63 | cl::desc("Enable abort calls when \"fast\" instruction fails")); |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 64 | static cl::opt<bool> |
| 65 | SchedLiveInCopies("schedule-livein-copies", |
| 66 | cl::desc("Schedule copies of livein registers"), |
| 67 | cl::init(false)); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 68 | |
Chris Lattner | da8abb0 | 2005-09-01 18:44:10 +0000 | [diff] [blame] | 69 | #ifndef NDEBUG |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 70 | static cl::opt<bool> |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 71 | ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden, |
| 72 | cl::desc("Pop up a window to show dags before the first " |
| 73 | "dag combine pass")); |
| 74 | static cl::opt<bool> |
| 75 | ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden, |
| 76 | cl::desc("Pop up a window to show dags before legalize types")); |
| 77 | static cl::opt<bool> |
| 78 | ViewLegalizeDAGs("view-legalize-dags", cl::Hidden, |
| 79 | cl::desc("Pop up a window to show dags before legalize")); |
| 80 | static cl::opt<bool> |
| 81 | ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden, |
| 82 | cl::desc("Pop up a window to show dags before the second " |
| 83 | "dag combine pass")); |
| 84 | static cl::opt<bool> |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 85 | ViewDAGCombineLT("view-dag-combine-lt-dags", cl::Hidden, |
| 86 | cl::desc("Pop up a window to show dags before the post legalize types" |
| 87 | " dag combine pass")); |
| 88 | static cl::opt<bool> |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 89 | ViewISelDAGs("view-isel-dags", cl::Hidden, |
| 90 | cl::desc("Pop up a window to show isel dags as they are selected")); |
| 91 | static cl::opt<bool> |
| 92 | ViewSchedDAGs("view-sched-dags", cl::Hidden, |
| 93 | cl::desc("Pop up a window to show sched dags as they are processed")); |
Dan Gohman | 3e1a7ae | 2007-08-28 20:32:58 +0000 | [diff] [blame] | 94 | static cl::opt<bool> |
| 95 | ViewSUnitDAGs("view-sunit-dags", cl::Hidden, |
Chris Lattner | 5bab785 | 2008-01-25 17:24:52 +0000 | [diff] [blame] | 96 | cl::desc("Pop up a window to show SUnit dags after they are processed")); |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 97 | #else |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 98 | static const bool ViewDAGCombine1 = false, |
| 99 | ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false, |
| 100 | ViewDAGCombine2 = false, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 101 | ViewDAGCombineLT = false, |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 102 | ViewISelDAGs = false, ViewSchedDAGs = false, |
| 103 | ViewSUnitDAGs = false; |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 104 | #endif |
| 105 | |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 106 | //===---------------------------------------------------------------------===// |
| 107 | /// |
| 108 | /// RegisterScheduler class - Track the registration of instruction schedulers. |
| 109 | /// |
| 110 | //===---------------------------------------------------------------------===// |
| 111 | MachinePassRegistry RegisterScheduler::Registry; |
| 112 | |
| 113 | //===---------------------------------------------------------------------===// |
| 114 | /// |
| 115 | /// ISHeuristic command line option for instruction schedulers. |
| 116 | /// |
| 117 | //===---------------------------------------------------------------------===// |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 118 | static cl::opt<RegisterScheduler::FunctionPassCtor, false, |
| 119 | RegisterPassParser<RegisterScheduler> > |
| 120 | ISHeuristic("pre-RA-sched", |
| 121 | cl::init(&createDefaultScheduler), |
| 122 | cl::desc("Instruction schedulers available (before register" |
| 123 | " allocation):")); |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 124 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 125 | static RegisterScheduler |
Dan Gohman | b8cab92 | 2008-10-14 20:25:08 +0000 | [diff] [blame] | 126 | defaultListDAGScheduler("default", "Best scheduler for the target", |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 127 | createDefaultScheduler); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 128 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 129 | namespace llvm { |
| 130 | //===--------------------------------------------------------------------===// |
Jim Laskey | 9373beb | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 131 | /// createDefaultScheduler - This creates an instruction scheduler appropriate |
| 132 | /// for the target. |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 133 | ScheduleDAGSDNodes* createDefaultScheduler(SelectionDAGISel *IS, |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 134 | CodeGenOpt::Level OptLevel) { |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 135 | const TargetLowering &TLI = IS->getTargetLowering(); |
| 136 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 137 | if (OptLevel == CodeGenOpt::None) |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 138 | return createFastDAGScheduler(IS, OptLevel); |
Dan Gohman | 9e76fea | 2008-11-20 03:11:19 +0000 | [diff] [blame] | 139 | if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 140 | return createTDListDAGScheduler(IS, OptLevel); |
Dan Gohman | 9e76fea | 2008-11-20 03:11:19 +0000 | [diff] [blame] | 141 | assert(TLI.getSchedulingPreference() == |
| 142 | TargetLowering::SchedulingForRegPressure && "Unknown sched type!"); |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 143 | return createBURRListDAGScheduler(IS, OptLevel); |
Jim Laskey | 9373beb | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 144 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Evan Cheng | ff9b373 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 147 | // EmitInstrWithCustomInserter - This method should be implemented by targets |
| 148 | // that mark instructions with the 'usesCustomDAGSchedInserter' flag. These |
Chris Lattner | 025c39b | 2005-08-26 20:54:47 +0000 | [diff] [blame] | 149 | // instructions are special in various ways, which require special support to |
| 150 | // insert. The specified MachineInstr is created but not inserted into any |
| 151 | // basic blocks, and the scheduler passes ownership of it to this method. |
Evan Cheng | ff9b373 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 152 | MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 153 | MachineBasicBlock *MBB) const { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 154 | cerr << "If a target marks an instruction with " |
| 155 | << "'usesCustomDAGSchedInserter', it must implement " |
Evan Cheng | ff9b373 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 156 | << "TargetLowering::EmitInstrWithCustomInserter!\n"; |
Chris Lattner | 025c39b | 2005-08-26 20:54:47 +0000 | [diff] [blame] | 157 | abort(); |
| 158 | return 0; |
| 159 | } |
| 160 | |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 161 | /// EmitLiveInCopy - Emit a copy for a live in physical register. If the |
| 162 | /// physical register has only a single copy use, then coalesced the copy |
| 163 | /// if possible. |
| 164 | static void EmitLiveInCopy(MachineBasicBlock *MBB, |
| 165 | MachineBasicBlock::iterator &InsertPos, |
| 166 | unsigned VirtReg, unsigned PhysReg, |
| 167 | const TargetRegisterClass *RC, |
| 168 | DenseMap<MachineInstr*, unsigned> &CopyRegMap, |
| 169 | const MachineRegisterInfo &MRI, |
| 170 | const TargetRegisterInfo &TRI, |
| 171 | const TargetInstrInfo &TII) { |
| 172 | unsigned NumUses = 0; |
| 173 | MachineInstr *UseMI = NULL; |
| 174 | for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg), |
| 175 | UE = MRI.use_end(); UI != UE; ++UI) { |
| 176 | UseMI = &*UI; |
| 177 | if (++NumUses > 1) |
| 178 | break; |
| 179 | } |
| 180 | |
| 181 | // If the number of uses is not one, or the use is not a move instruction, |
| 182 | // don't coalesce. Also, only coalesce away a virtual register to virtual |
| 183 | // register copy. |
| 184 | bool Coalesced = false; |
Evan Cheng | 04ee5a1 | 2009-01-20 19:12:24 +0000 | [diff] [blame] | 185 | unsigned SrcReg, DstReg, SrcSubReg, DstSubReg; |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 186 | if (NumUses == 1 && |
Evan Cheng | 04ee5a1 | 2009-01-20 19:12:24 +0000 | [diff] [blame] | 187 | TII.isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubReg, DstSubReg) && |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 188 | TargetRegisterInfo::isVirtualRegister(DstReg)) { |
| 189 | VirtReg = DstReg; |
| 190 | Coalesced = true; |
| 191 | } |
| 192 | |
| 193 | // Now find an ideal location to insert the copy. |
| 194 | MachineBasicBlock::iterator Pos = InsertPos; |
| 195 | while (Pos != MBB->begin()) { |
| 196 | MachineInstr *PrevMI = prior(Pos); |
| 197 | DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI); |
| 198 | // copyRegToReg might emit multiple instructions to do a copy. |
| 199 | unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second; |
| 200 | if (CopyDstReg && !TRI.regsOverlap(CopyDstReg, PhysReg)) |
| 201 | // This is what the BB looks like right now: |
| 202 | // r1024 = mov r0 |
| 203 | // ... |
| 204 | // r1 = mov r1024 |
| 205 | // |
| 206 | // We want to insert "r1025 = mov r1". Inserting this copy below the |
| 207 | // move to r1024 makes it impossible for that move to be coalesced. |
| 208 | // |
| 209 | // r1025 = mov r1 |
| 210 | // r1024 = mov r0 |
| 211 | // ... |
| 212 | // r1 = mov 1024 |
| 213 | // r2 = mov 1025 |
| 214 | break; // Woot! Found a good location. |
| 215 | --Pos; |
| 216 | } |
| 217 | |
David Goodwin | f1daf7d | 2009-07-08 23:10:31 +0000 | [diff] [blame] | 218 | bool Emitted = TII.copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC); |
| 219 | assert(Emitted && "Unable to issue a live-in copy instruction!\n"); |
| 220 | (void) Emitted; |
| 221 | |
| 222 | CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg)); |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 223 | if (Coalesced) { |
| 224 | if (&*InsertPos == UseMI) ++InsertPos; |
| 225 | MBB->erase(UseMI); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | /// EmitLiveInCopies - If this is the first basic block in the function, |
| 230 | /// and if it has live ins that need to be copied into vregs, emit the |
| 231 | /// copies into the block. |
| 232 | static void EmitLiveInCopies(MachineBasicBlock *EntryMBB, |
| 233 | const MachineRegisterInfo &MRI, |
| 234 | const TargetRegisterInfo &TRI, |
| 235 | const TargetInstrInfo &TII) { |
| 236 | if (SchedLiveInCopies) { |
| 237 | // Emit the copies at a heuristically-determined location in the block. |
| 238 | DenseMap<MachineInstr*, unsigned> CopyRegMap; |
| 239 | MachineBasicBlock::iterator InsertPos = EntryMBB->begin(); |
| 240 | for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(), |
| 241 | E = MRI.livein_end(); LI != E; ++LI) |
| 242 | if (LI->second) { |
| 243 | const TargetRegisterClass *RC = MRI.getRegClass(LI->second); |
| 244 | EmitLiveInCopy(EntryMBB, InsertPos, LI->second, LI->first, |
| 245 | RC, CopyRegMap, MRI, TRI, TII); |
| 246 | } |
| 247 | } else { |
| 248 | // Emit the copies into the top of the block. |
| 249 | for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(), |
| 250 | E = MRI.livein_end(); LI != E; ++LI) |
| 251 | if (LI->second) { |
| 252 | const TargetRegisterClass *RC = MRI.getRegClass(LI->second); |
David Goodwin | f1daf7d | 2009-07-08 23:10:31 +0000 | [diff] [blame] | 253 | bool Emitted = TII.copyRegToReg(*EntryMBB, EntryMBB->begin(), |
| 254 | LI->second, LI->first, RC, RC); |
| 255 | assert(Emitted && "Unable to issue a live-in copy instruction!\n"); |
| 256 | (void) Emitted; |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | } |
| 260 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 261 | //===----------------------------------------------------------------------===// |
| 262 | // SelectionDAGISel code |
| 263 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 264 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 265 | SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, CodeGenOpt::Level OL) : |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 266 | FunctionPass(&ID), TM(tm), TLI(*tm.getTargetLowering()), |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 267 | FuncInfo(new FunctionLoweringInfo(TLI)), |
| 268 | CurDAG(new SelectionDAG(TLI, *FuncInfo)), |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 269 | SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo, OL)), |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 270 | GFI(), |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 271 | OptLevel(OL), |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 272 | DAGSize(0) |
| 273 | {} |
| 274 | |
| 275 | SelectionDAGISel::~SelectionDAGISel() { |
| 276 | delete SDL; |
| 277 | delete CurDAG; |
| 278 | delete FuncInfo; |
| 279 | } |
| 280 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 281 | unsigned SelectionDAGISel::MakeReg(MVT VT) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 282 | return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 285 | void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const { |
Jim Laskey | c7c3f11 | 2006-10-16 20:52:31 +0000 | [diff] [blame] | 286 | AU.addRequired<AliasAnalysis>(); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 287 | AU.addRequired<GCModuleInfo>(); |
Devang Patel | 6e7a161 | 2009-01-09 19:11:50 +0000 | [diff] [blame] | 288 | AU.addRequired<DwarfWriter>(); |
Chris Lattner | c8d288f | 2007-03-31 04:18:03 +0000 | [diff] [blame] | 289 | AU.setPreservesAll(); |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 290 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 291 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 292 | bool SelectionDAGISel::runOnFunction(Function &Fn) { |
Dan Gohman | 4344a5d | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 293 | // Do some sanity-checking on the command-line options. |
| 294 | assert((!EnableFastISelVerbose || EnableFastISel) && |
| 295 | "-fast-isel-verbose requires -fast-isel"); |
| 296 | assert((!EnableFastISelAbort || EnableFastISel) && |
| 297 | "-fast-isel-abort requires -fast-isel"); |
| 298 | |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 299 | // Do not codegen any 'available_externally' functions at all, they have |
| 300 | // definitions outside the translation unit. |
| 301 | if (Fn.hasAvailableExternallyLinkage()) |
| 302 | return false; |
| 303 | |
| 304 | |
Dan Gohman | 5f43f92 | 2007-08-27 16:26:13 +0000 | [diff] [blame] | 305 | // Get alias analysis for load/store combining. |
| 306 | AA = &getAnalysis<AliasAnalysis>(); |
| 307 | |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 308 | TargetMachine &TM = TLI.getTargetMachine(); |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 309 | MF = &MachineFunction::construct(&Fn, TM); |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 310 | const TargetInstrInfo &TII = *TM.getInstrInfo(); |
| 311 | const TargetRegisterInfo &TRI = *TM.getRegisterInfo(); |
| 312 | |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 313 | if (MF->getFunction()->hasGC()) |
| 314 | GFI = &getAnalysis<GCModuleInfo>().getFunctionInfo(*MF->getFunction()); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 315 | else |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 316 | GFI = 0; |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 317 | RegInfo = &MF->getRegInfo(); |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 318 | DOUT << "\n\n\n=== " << Fn.getName() << "\n"; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 319 | |
Duncan Sands | 1465d61 | 2009-01-28 13:14:17 +0000 | [diff] [blame] | 320 | MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>(); |
| 321 | DwarfWriter *DW = getAnalysisIfAvailable<DwarfWriter>(); |
Owen Anderson | 5dcaceb | 2009-07-09 18:44:09 +0000 | [diff] [blame^] | 322 | CurDAG->init(*MF, MMI, DW); |
Devang Patel | b51d40c | 2009-02-03 18:46:32 +0000 | [diff] [blame] | 323 | FuncInfo->set(Fn, *MF, *CurDAG, EnableFastISel); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 324 | SDL->init(GFI, *AA); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 325 | |
Dale Johannesen | 1532f3d | 2008-04-02 00:25:04 +0000 | [diff] [blame] | 326 | for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) |
| 327 | if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator())) |
| 328 | // Mark landing pad. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 329 | FuncInfo->MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad(); |
Duncan Sands | 9fac0b5 | 2007-06-06 10:05:18 +0000 | [diff] [blame] | 330 | |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 331 | SelectAllBasicBlocks(Fn, *MF, MMI, DW, TII); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 332 | |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 333 | // If the first basic block in the function has live ins that need to be |
| 334 | // copied into vregs, emit the copies into the top of the block before |
| 335 | // emitting the code for the block. |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 336 | EmitLiveInCopies(MF->begin(), *RegInfo, TRI, TII); |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 337 | |
Evan Cheng | ad2070c | 2007-02-10 02:43:39 +0000 | [diff] [blame] | 338 | // Add function live-ins to entry block live-in set. |
Dan Gohman | 8a11053 | 2008-09-05 22:59:21 +0000 | [diff] [blame] | 339 | for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(), |
| 340 | E = RegInfo->livein_end(); I != E; ++I) |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 341 | MF->begin()->addLiveIn(I->first); |
Evan Cheng | ad2070c | 2007-02-10 02:43:39 +0000 | [diff] [blame] | 342 | |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 343 | #ifndef NDEBUG |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 344 | assert(FuncInfo->CatchInfoFound.size() == FuncInfo->CatchInfoLost.size() && |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 345 | "Not all catch info was assigned to a landing pad!"); |
| 346 | #endif |
| 347 | |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 348 | FuncInfo->clear(); |
| 349 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 350 | return true; |
| 351 | } |
| 352 | |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 353 | static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB, |
| 354 | MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) { |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 355 | for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 356 | if (EHSelectorInst *EHSel = dyn_cast<EHSelectorInst>(I)) { |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 357 | // Apply the catch info to DestBB. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 358 | AddCatchInfo(*EHSel, MMI, FLI.MBBMap[DestBB]); |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 359 | #ifndef NDEBUG |
Duncan Sands | 560a737 | 2007-11-15 09:54:37 +0000 | [diff] [blame] | 360 | if (!FLI.MBBMap[SrcBB]->isLandingPad()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 361 | FLI.CatchInfoFound.insert(EHSel); |
Duncan Sands | f407082 | 2007-06-15 19:04:19 +0000 | [diff] [blame] | 362 | #endif |
| 363 | } |
| 364 | } |
| 365 | |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 366 | /// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and |
| 367 | /// whether object offset >= 0. |
| 368 | static bool |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 369 | IsFixedFrameObjectWithPosOffset(MachineFrameInfo *MFI, SDValue Op) { |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 370 | if (!isa<FrameIndexSDNode>(Op)) return false; |
| 371 | |
| 372 | FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op); |
| 373 | int FrameIdx = FrameIdxNode->getIndex(); |
| 374 | return MFI->isFixedObjectIndex(FrameIdx) && |
| 375 | MFI->getObjectOffset(FrameIdx) >= 0; |
| 376 | } |
| 377 | |
| 378 | /// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could |
| 379 | /// possibly be overwritten when lowering the outgoing arguments in a tail |
| 380 | /// call. Currently the implementation of this call is very conservative and |
| 381 | /// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with |
| 382 | /// virtual registers would be overwritten by direct lowering. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 383 | static bool IsPossiblyOverwrittenArgumentOfTailCall(SDValue Op, |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 384 | MachineFrameInfo *MFI) { |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 385 | RegisterSDNode * OpReg = NULL; |
| 386 | if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS || |
| 387 | (Op.getOpcode()== ISD::CopyFromReg && |
| 388 | (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) && |
| 389 | (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) || |
| 390 | (Op.getOpcode() == ISD::LOAD && |
| 391 | IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) || |
| 392 | (Op.getOpcode() == ISD::MERGE_VALUES && |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 393 | Op.getOperand(Op.getResNo()).getOpcode() == ISD::LOAD && |
| 394 | IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.getResNo()). |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 395 | getOperand(1)))) |
| 396 | return true; |
| 397 | return false; |
| 398 | } |
| 399 | |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 400 | /// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the |
Arnold Schwaighofer | 48abc5c | 2007-10-12 21:30:57 +0000 | [diff] [blame] | 401 | /// DAG and fixes their tailcall attribute operand. |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 402 | static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 403 | const TargetLowering& TLI) { |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 404 | SDNode * Ret = NULL; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 405 | SDValue Terminator = DAG.getRoot(); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 406 | |
| 407 | // Find RET node. |
| 408 | if (Terminator.getOpcode() == ISD::RET) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 409 | Ret = Terminator.getNode(); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | // Fix tail call attribute of CALL nodes. |
| 413 | for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(), |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 414 | BI = DAG.allnodes_end(); BI != BE; ) { |
| 415 | --BI; |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 416 | if (CallSDNode *TheCall = dyn_cast<CallSDNode>(BI)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 417 | SDValue OpRet(Ret, 0); |
| 418 | SDValue OpCall(BI, 0); |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 419 | bool isMarkedTailCall = TheCall->isTailCall(); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 420 | // If CALL node has tail call attribute set to true and the call is not |
| 421 | // eligible (no RET or the target rejects) the attribute is fixed to |
Arnold Schwaighofer | 48abc5c | 2007-10-12 21:30:57 +0000 | [diff] [blame] | 422 | // false. The TargetLowering::IsEligibleForTailCallOptimization function |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 423 | // must correctly identify tail call optimizable calls. |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 424 | if (!isMarkedTailCall) continue; |
| 425 | if (Ret==NULL || |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 426 | !TLI.IsEligibleForTailCallOptimization(TheCall, OpRet, DAG)) { |
| 427 | // Not eligible. Mark CALL node as non tail call. Note that we |
| 428 | // can modify the call node in place since calls are not CSE'd. |
| 429 | TheCall->setNotTailCall(); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 430 | } else { |
| 431 | // Look for tail call clobbered arguments. Emit a series of |
| 432 | // copyto/copyfrom virtual register nodes to protect them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 433 | SmallVector<SDValue, 32> Ops; |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 434 | SDValue Chain = TheCall->getChain(), InFlag; |
| 435 | Ops.push_back(Chain); |
| 436 | Ops.push_back(TheCall->getCallee()); |
| 437 | for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; ++i) { |
| 438 | SDValue Arg = TheCall->getArg(i); |
| 439 | bool isByVal = TheCall->getArgFlags(i).isByVal(); |
| 440 | MachineFunction &MF = DAG.getMachineFunction(); |
| 441 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 442 | if (!isByVal && |
| 443 | IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) { |
| 444 | MVT VT = Arg.getValueType(); |
| 445 | unsigned VReg = MF.getRegInfo(). |
| 446 | createVirtualRegister(TLI.getRegClassFor(VT)); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 447 | Chain = DAG.getCopyToReg(Chain, Arg.getDebugLoc(), |
Dale Johannesen | c460ae9 | 2009-02-04 00:13:36 +0000 | [diff] [blame] | 448 | VReg, Arg, InFlag); |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 449 | InFlag = Chain.getValue(1); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 450 | Arg = DAG.getCopyFromReg(Chain, Arg.getDebugLoc(), |
Dale Johannesen | c460ae9 | 2009-02-04 00:13:36 +0000 | [diff] [blame] | 451 | VReg, VT, InFlag); |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 452 | Chain = Arg.getValue(1); |
| 453 | InFlag = Arg.getValue(2); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 454 | } |
| 455 | Ops.push_back(Arg); |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 456 | Ops.push_back(TheCall->getArgFlagsVal(i)); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 457 | } |
| 458 | // Link in chain of CopyTo/CopyFromReg. |
| 459 | Ops[0] = Chain; |
| 460 | DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size()); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 461 | } |
| 462 | } |
| 463 | } |
| 464 | } |
| 465 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 466 | void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, |
| 467 | BasicBlock::iterator Begin, |
Dan Gohman | 5edd361 | 2008-08-28 20:28:56 +0000 | [diff] [blame] | 468 | BasicBlock::iterator End) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 469 | SDL->setCurrentBasicBlock(BB); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 470 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 471 | // Lower all of the non-terminator instructions. |
| 472 | for (BasicBlock::iterator I = Begin; I != End; ++I) |
| 473 | if (!isa<TerminatorInst>(I)) |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 474 | SDL->visit(*I); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 475 | |
| 476 | // Ensure that all instructions which are used outside of their defining |
| 477 | // blocks are available as virtual registers. Invoke is handled elsewhere. |
| 478 | for (BasicBlock::iterator I = Begin; I != End; ++I) |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 479 | if (!isa<PHINode>(I) && !isa<InvokeInst>(I)) |
| 480 | SDL->CopyToExportRegsIfNeeded(I); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 481 | |
| 482 | // Handle PHI nodes in successor blocks. |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 483 | if (End == LLVMBB->end()) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 484 | HandlePHINodesInSuccessorBlocks(LLVMBB); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 485 | |
| 486 | // Lower the terminator after the copies are emitted. |
| 487 | SDL->visit(*LLVMBB->getTerminator()); |
| 488 | } |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 489 | |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 490 | // Make sure the root of the DAG is up-to-date. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 491 | CurDAG->setRoot(SDL->getControlRoot()); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 492 | |
| 493 | // Check whether calls in this block are real tail calls. Fix up CALL nodes |
| 494 | // with correct tailcall attribute so that the target can rely on the tailcall |
| 495 | // attribute indicating whether the call is really eligible for tail call |
| 496 | // optimization. |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 497 | if (PerformTailCallOpt) |
| 498 | CheckDAGForTailCallsAndFixThem(*CurDAG, TLI); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 499 | |
| 500 | // Final step, emit the lowered DAG as machine code. |
| 501 | CodeGenAndEmitDAG(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 502 | SDL->clear(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 505 | void SelectionDAGISel::ComputeLiveOutVRegInfo() { |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 506 | SmallPtrSet<SDNode*, 128> VisitedNodes; |
| 507 | SmallVector<SDNode*, 128> Worklist; |
| 508 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 509 | Worklist.push_back(CurDAG->getRoot().getNode()); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 510 | |
| 511 | APInt Mask; |
| 512 | APInt KnownZero; |
| 513 | APInt KnownOne; |
| 514 | |
| 515 | while (!Worklist.empty()) { |
| 516 | SDNode *N = Worklist.back(); |
| 517 | Worklist.pop_back(); |
| 518 | |
| 519 | // If we've already seen this node, ignore it. |
| 520 | if (!VisitedNodes.insert(N)) |
| 521 | continue; |
| 522 | |
| 523 | // Otherwise, add all chain operands to the worklist. |
| 524 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 525 | if (N->getOperand(i).getValueType() == MVT::Other) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 526 | Worklist.push_back(N->getOperand(i).getNode()); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 527 | |
| 528 | // If this is a CopyToReg with a vreg dest, process it. |
| 529 | if (N->getOpcode() != ISD::CopyToReg) |
| 530 | continue; |
| 531 | |
| 532 | unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg(); |
| 533 | if (!TargetRegisterInfo::isVirtualRegister(DestReg)) |
| 534 | continue; |
| 535 | |
| 536 | // Ignore non-scalar or non-integer values. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 537 | SDValue Src = N->getOperand(2); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 538 | MVT SrcVT = Src.getValueType(); |
| 539 | if (!SrcVT.isInteger() || SrcVT.isVector()) |
| 540 | continue; |
| 541 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 542 | unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 543 | Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits()); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 544 | CurDAG->ComputeMaskedBits(Src, Mask, KnownZero, KnownOne); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 545 | |
| 546 | // Only install this information if it tells us something. |
| 547 | if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) { |
| 548 | DestReg -= TargetRegisterInfo::FirstVirtualRegister; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 549 | FunctionLoweringInfo &FLI = CurDAG->getFunctionLoweringInfo(); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 550 | if (DestReg >= FLI.LiveOutRegInfo.size()) |
| 551 | FLI.LiveOutRegInfo.resize(DestReg+1); |
| 552 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg]; |
| 553 | LOI.NumSignBits = NumSignBits; |
Dan Gohman | a80efce | 2009-03-27 23:55:04 +0000 | [diff] [blame] | 554 | LOI.KnownOne = KnownOne; |
| 555 | LOI.KnownZero = KnownZero; |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | } |
| 559 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 560 | void SelectionDAGISel::CodeGenAndEmitDAG() { |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 561 | std::string GroupName; |
| 562 | if (TimePassesIsEnabled) |
| 563 | GroupName = "Instruction Selection and Scheduling"; |
| 564 | std::string BlockName; |
| 565 | if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs || |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 566 | ViewDAGCombine2 || ViewDAGCombineLT || ViewISelDAGs || ViewSchedDAGs || |
| 567 | ViewSUnitDAGs) |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 568 | BlockName = CurDAG->getMachineFunction().getFunction()->getName() + ':' + |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 569 | BB->getBasicBlock()->getName(); |
| 570 | |
| 571 | DOUT << "Initial selection DAG:\n"; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 572 | DEBUG(CurDAG->dump()); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 573 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 574 | if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName); |
Dan Gohman | 417e11b | 2007-10-08 15:12:17 +0000 | [diff] [blame] | 575 | |
Chris Lattner | af21d55 | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 576 | // Run the DAG combiner in pre-legalize mode. |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 577 | if (TimePassesIsEnabled) { |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 578 | NamedRegionTimer T("DAG Combining 1", GroupName); |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 579 | CurDAG->Combine(Unrestricted, *AA, OptLevel); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 580 | } else { |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 581 | CurDAG->Combine(Unrestricted, *AA, OptLevel); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 582 | } |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 583 | |
Dan Gohman | 417e11b | 2007-10-08 15:12:17 +0000 | [diff] [blame] | 584 | DOUT << "Optimized lowered selection DAG:\n"; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 585 | DEBUG(CurDAG->dump()); |
Duncan Sands | f00e74f | 2008-07-17 17:06:03 +0000 | [diff] [blame] | 586 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 587 | // Second step, hack on the DAG until it only uses operations and types that |
| 588 | // the target supports. |
Duncan Sands | 7cb0787 | 2008-10-27 08:42:46 +0000 | [diff] [blame] | 589 | if (!DisableLegalizeTypes) { |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 590 | if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " + |
| 591 | BlockName); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 592 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 593 | bool Changed; |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 594 | if (TimePassesIsEnabled) { |
| 595 | NamedRegionTimer T("Type Legalization", GroupName); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 596 | Changed = CurDAG->LegalizeTypes(); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 597 | } else { |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 598 | Changed = CurDAG->LegalizeTypes(); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | DOUT << "Type-legalized selection DAG:\n"; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 602 | DEBUG(CurDAG->dump()); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 603 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 604 | if (Changed) { |
| 605 | if (ViewDAGCombineLT) |
| 606 | CurDAG->viewGraph("dag-combine-lt input for " + BlockName); |
| 607 | |
| 608 | // Run the DAG combiner in post-type-legalize mode. |
| 609 | if (TimePassesIsEnabled) { |
| 610 | NamedRegionTimer T("DAG Combining after legalize types", GroupName); |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 611 | CurDAG->Combine(NoIllegalTypes, *AA, OptLevel); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 612 | } else { |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 613 | CurDAG->Combine(NoIllegalTypes, *AA, OptLevel); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | DOUT << "Optimized type-legalized selection DAG:\n"; |
| 617 | DEBUG(CurDAG->dump()); |
| 618 | } |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 619 | |
| 620 | if (TimePassesIsEnabled) { |
| 621 | NamedRegionTimer T("Vector Legalization", GroupName); |
| 622 | Changed = CurDAG->LegalizeVectors(); |
| 623 | } else { |
| 624 | Changed = CurDAG->LegalizeVectors(); |
| 625 | } |
| 626 | |
| 627 | if (Changed) { |
| 628 | if (TimePassesIsEnabled) { |
| 629 | NamedRegionTimer T("Type Legalization 2", GroupName); |
| 630 | Changed = CurDAG->LegalizeTypes(); |
| 631 | } else { |
| 632 | Changed = CurDAG->LegalizeTypes(); |
| 633 | } |
| 634 | |
| 635 | if (ViewDAGCombineLT) |
| 636 | CurDAG->viewGraph("dag-combine-lv input for " + BlockName); |
| 637 | |
| 638 | // Run the DAG combiner in post-type-legalize mode. |
| 639 | if (TimePassesIsEnabled) { |
| 640 | NamedRegionTimer T("DAG Combining after legalize vectors", GroupName); |
| 641 | CurDAG->Combine(NoIllegalOperations, *AA, OptLevel); |
| 642 | } else { |
| 643 | CurDAG->Combine(NoIllegalOperations, *AA, OptLevel); |
| 644 | } |
| 645 | |
| 646 | DOUT << "Optimized vector-legalized selection DAG:\n"; |
| 647 | DEBUG(CurDAG->dump()); |
| 648 | } |
Chris Lattner | 70587ea | 2008-07-10 23:37:50 +0000 | [diff] [blame] | 649 | } |
Duncan Sands | f00e74f | 2008-07-17 17:06:03 +0000 | [diff] [blame] | 650 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 651 | if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 652 | |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 653 | if (TimePassesIsEnabled) { |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 654 | NamedRegionTimer T("DAG Legalization", GroupName); |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 655 | CurDAG->Legalize(DisableLegalizeTypes, OptLevel); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 656 | } else { |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 657 | CurDAG->Legalize(DisableLegalizeTypes, OptLevel); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 658 | } |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 659 | |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 660 | DOUT << "Legalized selection DAG:\n"; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 661 | DEBUG(CurDAG->dump()); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 662 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 663 | if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 664 | |
Chris Lattner | af21d55 | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 665 | // Run the DAG combiner in post-legalize mode. |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 666 | if (TimePassesIsEnabled) { |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 667 | NamedRegionTimer T("DAG Combining 2", GroupName); |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 668 | CurDAG->Combine(NoIllegalOperations, *AA, OptLevel); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 669 | } else { |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 670 | CurDAG->Combine(NoIllegalOperations, *AA, OptLevel); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 671 | } |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 672 | |
Dan Gohman | 417e11b | 2007-10-08 15:12:17 +0000 | [diff] [blame] | 673 | DOUT << "Optimized legalized selection DAG:\n"; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 674 | DEBUG(CurDAG->dump()); |
Dan Gohman | 417e11b | 2007-10-08 15:12:17 +0000 | [diff] [blame] | 675 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 676 | if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName); |
Chris Lattner | ead0d88 | 2008-06-17 06:09:18 +0000 | [diff] [blame] | 677 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 678 | if (OptLevel != CodeGenOpt::None) |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 679 | ComputeLiveOutVRegInfo(); |
Evan Cheng | 552c4a8 | 2006-04-28 02:09:19 +0000 | [diff] [blame] | 680 | |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 681 | // Third, instruction select all of the operations to machine code, adding the |
| 682 | // code to the MachineBasicBlock. |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 683 | if (TimePassesIsEnabled) { |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 684 | NamedRegionTimer T("Instruction Selection", GroupName); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 685 | InstructionSelect(); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 686 | } else { |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 687 | InstructionSelect(); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 688 | } |
Evan Cheng | db8d56b | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 689 | |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 690 | DOUT << "Selected selection DAG:\n"; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 691 | DEBUG(CurDAG->dump()); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 692 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 693 | if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName); |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 694 | |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 695 | // Schedule machine code. |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 696 | ScheduleDAGSDNodes *Scheduler = CreateScheduler(); |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 697 | if (TimePassesIsEnabled) { |
| 698 | NamedRegionTimer T("Instruction Scheduling", GroupName); |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 699 | Scheduler->Run(CurDAG, BB, BB->end()); |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 700 | } else { |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 701 | Scheduler->Run(CurDAG, BB, BB->end()); |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 702 | } |
| 703 | |
Dan Gohman | 462dc7f | 2008-07-21 20:00:07 +0000 | [diff] [blame] | 704 | if (ViewSUnitDAGs) Scheduler->viewGraph(); |
| 705 | |
Evan Cheng | db8d56b | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 706 | // Emit machine code to BB. This can change 'BB' to the last block being |
| 707 | // inserted into. |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 708 | if (TimePassesIsEnabled) { |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 709 | NamedRegionTimer T("Instruction Creation", GroupName); |
| 710 | BB = Scheduler->EmitSchedule(); |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 711 | } else { |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 712 | BB = Scheduler->EmitSchedule(); |
| 713 | } |
| 714 | |
| 715 | // Free the scheduler state. |
| 716 | if (TimePassesIsEnabled) { |
| 717 | NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName); |
| 718 | delete Scheduler; |
| 719 | } else { |
| 720 | delete Scheduler; |
Evan Cheng | ebffb66 | 2008-07-01 17:59:20 +0000 | [diff] [blame] | 721 | } |
Evan Cheng | db8d56b | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 722 | |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 723 | DOUT << "Selected machine code:\n"; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 724 | DEBUG(BB->dump()); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 725 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 726 | |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 727 | void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, |
| 728 | MachineFunction &MF, |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 729 | MachineModuleInfo *MMI, |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 730 | DwarfWriter *DW, |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 731 | const TargetInstrInfo &TII) { |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 732 | // Initialize the Fast-ISel state, if needed. |
| 733 | FastISel *FastIS = 0; |
| 734 | if (EnableFastISel) |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 735 | FastIS = TLI.createFastISel(MF, MMI, DW, |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 736 | FuncInfo->ValueMap, |
| 737 | FuncInfo->MBBMap, |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 738 | FuncInfo->StaticAllocaMap |
| 739 | #ifndef NDEBUG |
| 740 | , FuncInfo->CatchInfoLost |
| 741 | #endif |
| 742 | ); |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 743 | |
| 744 | // Iterate over all basic blocks in the function. |
Evan Cheng | 39fd6e8 | 2008-08-07 00:43:25 +0000 | [diff] [blame] | 745 | for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) { |
| 746 | BasicBlock *LLVMBB = &*I; |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 747 | BB = FuncInfo->MBBMap[LLVMBB]; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 748 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 749 | BasicBlock::iterator const Begin = LLVMBB->begin(); |
| 750 | BasicBlock::iterator const End = LLVMBB->end(); |
Evan Cheng | 9f11850 | 2008-09-08 16:01:27 +0000 | [diff] [blame] | 751 | BasicBlock::iterator BI = Begin; |
Dan Gohman | 5edd361 | 2008-08-28 20:28:56 +0000 | [diff] [blame] | 752 | |
| 753 | // Lower any arguments needed in this block if this is the entry block. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 754 | bool SuppressFastISel = false; |
| 755 | if (LLVMBB == &Fn.getEntryBlock()) { |
Dan Gohman | 5edd361 | 2008-08-28 20:28:56 +0000 | [diff] [blame] | 756 | LowerArguments(LLVMBB); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 757 | |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 758 | // If any of the arguments has the byval attribute, forgo |
| 759 | // fast-isel in the entry block. |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 760 | if (FastIS) { |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 761 | unsigned j = 1; |
| 762 | for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end(); |
| 763 | I != E; ++I, ++j) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 764 | if (Fn.paramHasAttr(j, Attribute::ByVal)) { |
Dan Gohman | 77ca41e | 2008-09-25 17:21:42 +0000 | [diff] [blame] | 765 | if (EnableFastISelVerbose || EnableFastISelAbort) |
| 766 | cerr << "FastISel skips entry block due to byval argument\n"; |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 767 | SuppressFastISel = true; |
| 768 | break; |
| 769 | } |
| 770 | } |
| 771 | } |
| 772 | |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 773 | if (MMI && BB->isLandingPad()) { |
| 774 | // Add a label to mark the beginning of the landing pad. Deletion of the |
| 775 | // landing pad can thus be detected via the MachineModuleInfo. |
| 776 | unsigned LabelID = MMI->addLandingPad(BB); |
| 777 | |
| 778 | const TargetInstrDesc &II = TII.get(TargetInstrInfo::EH_LABEL); |
Bill Wendling | b288487 | 2009-02-03 01:55:42 +0000 | [diff] [blame] | 779 | BuildMI(BB, SDL->getCurDebugLoc(), II).addImm(LabelID); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 780 | |
| 781 | // Mark exception register as live in. |
| 782 | unsigned Reg = TLI.getExceptionAddressRegister(); |
| 783 | if (Reg) BB->addLiveIn(Reg); |
| 784 | |
| 785 | // Mark exception selector register as live in. |
| 786 | Reg = TLI.getExceptionSelectorRegister(); |
| 787 | if (Reg) BB->addLiveIn(Reg); |
| 788 | |
| 789 | // FIXME: Hack around an exception handling flaw (PR1508): the personality |
| 790 | // function and list of typeids logically belong to the invoke (or, if you |
| 791 | // like, the basic block containing the invoke), and need to be associated |
| 792 | // with it in the dwarf exception handling tables. Currently however the |
| 793 | // information is provided by an intrinsic (eh.selector) that can be moved |
| 794 | // to unexpected places by the optimizers: if the unwind edge is critical, |
| 795 | // then breaking it can result in the intrinsics being in the successor of |
| 796 | // the landing pad, not the landing pad itself. This results in exceptions |
| 797 | // not being caught because no typeids are associated with the invoke. |
| 798 | // This may not be the only way things can go wrong, but it is the only way |
| 799 | // we try to work around for the moment. |
| 800 | BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator()); |
| 801 | |
| 802 | if (Br && Br->isUnconditional()) { // Critical edge? |
| 803 | BasicBlock::iterator I, E; |
| 804 | for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I) |
| 805 | if (isa<EHSelectorInst>(I)) |
| 806 | break; |
| 807 | |
| 808 | if (I == E) |
| 809 | // No catch info found - try to extract some from the successor. |
| 810 | copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, *FuncInfo); |
| 811 | } |
| 812 | } |
| 813 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 814 | // Before doing SelectionDAG ISel, see if FastISel has been requested. |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 815 | if (FastIS && !SuppressFastISel) { |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 816 | // Emit code for any incoming arguments. This must happen before |
| 817 | // beginning FastISel on the entry block. |
| 818 | if (LLVMBB == &Fn.getEntryBlock()) { |
| 819 | CurDAG->setRoot(SDL->getControlRoot()); |
| 820 | CodeGenAndEmitDAG(); |
| 821 | SDL->clear(); |
| 822 | } |
Dan Gohman | 241f464 | 2008-10-04 00:56:36 +0000 | [diff] [blame] | 823 | FastIS->startNewBlock(BB); |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 824 | // Do FastISel on as many instructions as possible. |
| 825 | for (; BI != End; ++BI) { |
| 826 | // Just before the terminator instruction, insert instructions to |
| 827 | // feed PHI nodes in successor blocks. |
| 828 | if (isa<TerminatorInst>(BI)) |
| 829 | if (!HandlePHINodesInSuccessorBlocksFast(LLVMBB, FastIS)) { |
Dan Gohman | 4344a5d | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 830 | if (EnableFastISelVerbose || EnableFastISelAbort) { |
Dan Gohman | 293d5f8 | 2008-09-09 22:06:46 +0000 | [diff] [blame] | 831 | cerr << "FastISel miss: "; |
| 832 | BI->dump(); |
| 833 | } |
Dan Gohman | 4344a5d | 2008-09-09 23:05:00 +0000 | [diff] [blame] | 834 | if (EnableFastISelAbort) |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 835 | assert(0 && "FastISel didn't handle a PHI in a successor"); |
| 836 | break; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 837 | } |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 838 | |
| 839 | // First try normal tablegen-generated "fast" selection. |
| 840 | if (FastIS->SelectInstruction(BI)) |
| 841 | continue; |
| 842 | |
| 843 | // Next, try calling the target to attempt to handle the instruction. |
| 844 | if (FastIS->TargetSelectInstruction(BI)) |
| 845 | continue; |
| 846 | |
| 847 | // Then handle certain instructions as single-LLVM-Instruction blocks. |
| 848 | if (isa<CallInst>(BI)) { |
| 849 | if (EnableFastISelVerbose || EnableFastISelAbort) { |
| 850 | cerr << "FastISel missed call: "; |
| 851 | BI->dump(); |
| 852 | } |
| 853 | |
| 854 | if (BI->getType() != Type::VoidTy) { |
| 855 | unsigned &R = FuncInfo->ValueMap[BI]; |
| 856 | if (!R) |
| 857 | R = FuncInfo->CreateRegForValue(BI); |
| 858 | } |
| 859 | |
Devang Patel | 390f3ac | 2009-04-16 01:33:10 +0000 | [diff] [blame] | 860 | SDL->setCurDebugLoc(FastIS->getCurDebugLoc()); |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 861 | SelectBasicBlock(LLVMBB, BI, next(BI)); |
Dan Gohman | 241f464 | 2008-10-04 00:56:36 +0000 | [diff] [blame] | 862 | // If the instruction was codegen'd with multiple blocks, |
| 863 | // inform the FastISel object where to resume inserting. |
| 864 | FastIS->setCurrentBlock(BB); |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 865 | continue; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 866 | } |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 867 | |
| 868 | // Otherwise, give up on FastISel for the rest of the block. |
| 869 | // For now, be a little lenient about non-branch terminators. |
| 870 | if (!isa<TerminatorInst>(BI) || isa<BranchInst>(BI)) { |
| 871 | if (EnableFastISelVerbose || EnableFastISelAbort) { |
| 872 | cerr << "FastISel miss: "; |
| 873 | BI->dump(); |
| 874 | } |
| 875 | if (EnableFastISelAbort) |
| 876 | // The "fast" selector couldn't handle something and bailed. |
| 877 | // For the purpose of debugging, just abort. |
| 878 | assert(0 && "FastISel didn't select the entire block"); |
| 879 | } |
| 880 | break; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 881 | } |
| 882 | } |
| 883 | |
Dan Gohman | d2ff647 | 2008-09-02 20:17:56 +0000 | [diff] [blame] | 884 | // Run SelectionDAG instruction selection on the remainder of the block |
| 885 | // not handled by FastISel. If FastISel is not run, this is the entire |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 886 | // block. |
Devang Patel | 390f3ac | 2009-04-16 01:33:10 +0000 | [diff] [blame] | 887 | if (BI != End) { |
| 888 | // If FastISel is run and it has known DebugLoc then use it. |
| 889 | if (FastIS && !FastIS->getCurDebugLoc().isUnknown()) |
| 890 | SDL->setCurDebugLoc(FastIS->getCurDebugLoc()); |
Evan Cheng | 9f11850 | 2008-09-08 16:01:27 +0000 | [diff] [blame] | 891 | SelectBasicBlock(LLVMBB, BI, End); |
Devang Patel | 390f3ac | 2009-04-16 01:33:10 +0000 | [diff] [blame] | 892 | } |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 893 | |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 894 | FinishBasicBlock(); |
Evan Cheng | 39fd6e8 | 2008-08-07 00:43:25 +0000 | [diff] [blame] | 895 | } |
Dan Gohman | a43abd1 | 2008-09-29 21:55:50 +0000 | [diff] [blame] | 896 | |
| 897 | delete FastIS; |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 898 | } |
| 899 | |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 900 | void |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 901 | SelectionDAGISel::FinishBasicBlock() { |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 902 | |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 903 | DOUT << "Target-post-processed machine code:\n"; |
| 904 | DEBUG(BB->dump()); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 905 | |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 906 | DOUT << "Total amount of phi nodes to update: " |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 907 | << SDL->PHINodesToUpdate.size() << "\n"; |
| 908 | DEBUG(for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) |
| 909 | DOUT << "Node " << i << " : (" << SDL->PHINodesToUpdate[i].first |
| 910 | << ", " << SDL->PHINodesToUpdate[i].second << ")\n";); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 911 | |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 912 | // Next, now that we know what the last MBB the LLVM BB expanded is, update |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 913 | // PHI nodes in successors. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 914 | if (SDL->SwitchCases.empty() && |
| 915 | SDL->JTCases.empty() && |
| 916 | SDL->BitTestCases.empty()) { |
| 917 | for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) { |
| 918 | MachineInstr *PHI = SDL->PHINodesToUpdate[i].first; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 919 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 920 | "This is not a machine PHI node that we are updating!"); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 921 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 922 | false)); |
| 923 | PHI->addOperand(MachineOperand::CreateMBB(BB)); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 924 | } |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 925 | SDL->PHINodesToUpdate.clear(); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 926 | return; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 927 | } |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 928 | |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 929 | for (unsigned i = 0, e = SDL->BitTestCases.size(); i != e; ++i) { |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 930 | // Lower header first, if it wasn't already lowered |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 931 | if (!SDL->BitTestCases[i].Emitted) { |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 932 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 933 | BB = SDL->BitTestCases[i].Parent; |
| 934 | SDL->setCurrentBasicBlock(BB); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 935 | // Emit the code |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 936 | SDL->visitBitTestHeader(SDL->BitTestCases[i]); |
| 937 | CurDAG->setRoot(SDL->getRoot()); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 938 | CodeGenAndEmitDAG(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 939 | SDL->clear(); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 940 | } |
| 941 | |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 942 | for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size(); j != ej; ++j) { |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 943 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 944 | BB = SDL->BitTestCases[i].Cases[j].ThisBB; |
| 945 | SDL->setCurrentBasicBlock(BB); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 946 | // Emit the code |
| 947 | if (j+1 != ej) |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 948 | SDL->visitBitTestCase(SDL->BitTestCases[i].Cases[j+1].ThisBB, |
| 949 | SDL->BitTestCases[i].Reg, |
| 950 | SDL->BitTestCases[i].Cases[j]); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 951 | else |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 952 | SDL->visitBitTestCase(SDL->BitTestCases[i].Default, |
| 953 | SDL->BitTestCases[i].Reg, |
| 954 | SDL->BitTestCases[i].Cases[j]); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 955 | |
| 956 | |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 957 | CurDAG->setRoot(SDL->getRoot()); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 958 | CodeGenAndEmitDAG(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 959 | SDL->clear(); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | // Update PHI Nodes |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 963 | for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) { |
| 964 | MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first; |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 965 | MachineBasicBlock *PHIBB = PHI->getParent(); |
| 966 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 967 | "This is not a machine PHI node that we are updating!"); |
| 968 | // This is "default" BB. We have two jumps to it. From "header" BB and |
| 969 | // from last "case" BB. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 970 | if (PHIBB == SDL->BitTestCases[i].Default) { |
| 971 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 972 | false)); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 973 | PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Parent)); |
| 974 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 975 | false)); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 976 | PHI->addOperand(MachineOperand::CreateMBB(SDL->BitTestCases[i].Cases. |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 977 | back().ThisBB)); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 978 | } |
| 979 | // One of "cases" BB. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 980 | for (unsigned j = 0, ej = SDL->BitTestCases[i].Cases.size(); |
| 981 | j != ej; ++j) { |
| 982 | MachineBasicBlock* cBB = SDL->BitTestCases[i].Cases[j].ThisBB; |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 983 | if (cBB->succ_end() != |
| 984 | std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 985 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 986 | false)); |
| 987 | PHI->addOperand(MachineOperand::CreateMBB(cBB)); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 988 | } |
| 989 | } |
| 990 | } |
| 991 | } |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 992 | SDL->BitTestCases.clear(); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 993 | |
Nate Begeman | 9453eea | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 994 | // If the JumpTable record is filled in, then we need to emit a jump table. |
| 995 | // Updating the PHI nodes is tricky in this case, since we need to determine |
| 996 | // whether the PHI is a successor of the range check MBB or the jump table MBB |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 997 | for (unsigned i = 0, e = SDL->JTCases.size(); i != e; ++i) { |
Anton Korobeynikov | 3a84b9b | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 998 | // Lower header first, if it wasn't already lowered |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 999 | if (!SDL->JTCases[i].first.Emitted) { |
Anton Korobeynikov | 3a84b9b | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1000 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1001 | BB = SDL->JTCases[i].first.HeaderBB; |
| 1002 | SDL->setCurrentBasicBlock(BB); |
Anton Korobeynikov | 3a84b9b | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1003 | // Emit the code |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1004 | SDL->visitJumpTableHeader(SDL->JTCases[i].second, SDL->JTCases[i].first); |
| 1005 | CurDAG->setRoot(SDL->getRoot()); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1006 | CodeGenAndEmitDAG(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1007 | SDL->clear(); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1008 | } |
Anton Korobeynikov | 3a84b9b | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1009 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1010 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1011 | BB = SDL->JTCases[i].second.MBB; |
| 1012 | SDL->setCurrentBasicBlock(BB); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1013 | // Emit the code |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1014 | SDL->visitJumpTable(SDL->JTCases[i].second); |
| 1015 | CurDAG->setRoot(SDL->getRoot()); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1016 | CodeGenAndEmitDAG(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1017 | SDL->clear(); |
Anton Korobeynikov | 3a84b9b | 2007-03-25 15:07:15 +0000 | [diff] [blame] | 1018 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1019 | // Update PHI Nodes |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1020 | for (unsigned pi = 0, pe = SDL->PHINodesToUpdate.size(); pi != pe; ++pi) { |
| 1021 | MachineInstr *PHI = SDL->PHINodesToUpdate[pi].first; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1022 | MachineBasicBlock *PHIBB = PHI->getParent(); |
| 1023 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 1024 | "This is not a machine PHI node that we are updating!"); |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1025 | // "default" BB. We can go there only from header BB. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1026 | if (PHIBB == SDL->JTCases[i].second.Default) { |
| 1027 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 1028 | false)); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1029 | PHI->addOperand(MachineOperand::CreateMBB(SDL->JTCases[i].first.HeaderBB)); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 1030 | } |
Anton Korobeynikov | 4198c58 | 2007-04-09 12:31:58 +0000 | [diff] [blame] | 1031 | // JT BB. Just iterate over successors here |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 1032 | if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1033 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pi].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 1034 | false)); |
| 1035 | PHI->addOperand(MachineOperand::CreateMBB(BB)); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1036 | } |
| 1037 | } |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1038 | } |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1039 | SDL->JTCases.clear(); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1040 | |
Chris Lattner | b2e806e | 2006-10-22 23:00:53 +0000 | [diff] [blame] | 1041 | // If the switch block involved a branch to one of the actual successors, we |
| 1042 | // need to update PHI nodes in that block. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1043 | for (unsigned i = 0, e = SDL->PHINodesToUpdate.size(); i != e; ++i) { |
| 1044 | MachineInstr *PHI = SDL->PHINodesToUpdate[i].first; |
Chris Lattner | b2e806e | 2006-10-22 23:00:53 +0000 | [diff] [blame] | 1045 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 1046 | "This is not a machine PHI node that we are updating!"); |
| 1047 | if (BB->isSuccessor(PHI->getParent())) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1048 | PHI->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[i].second, |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 1049 | false)); |
| 1050 | PHI->addOperand(MachineOperand::CreateMBB(BB)); |
Chris Lattner | b2e806e | 2006-10-22 23:00:53 +0000 | [diff] [blame] | 1051 | } |
| 1052 | } |
| 1053 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1054 | // If we generated any switch lowering information, build and codegen any |
| 1055 | // additional DAGs necessary. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1056 | for (unsigned i = 0, e = SDL->SwitchCases.size(); i != e; ++i) { |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1057 | // Set the current basic block to the mbb we wish to insert the code into |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1058 | BB = SDL->SwitchCases[i].ThisBB; |
| 1059 | SDL->setCurrentBasicBlock(BB); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1060 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1061 | // Emit the code |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1062 | SDL->visitSwitchCase(SDL->SwitchCases[i]); |
| 1063 | CurDAG->setRoot(SDL->getRoot()); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1064 | CodeGenAndEmitDAG(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1065 | SDL->clear(); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1066 | |
| 1067 | // Handle any PHI nodes in successors of this chunk, as if we were coming |
| 1068 | // from the original BB before switch expansion. Note that PHI nodes can |
| 1069 | // occur multiple times in PHINodesToUpdate. We have to be very careful to |
| 1070 | // handle them the right number of times. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1071 | while ((BB = SDL->SwitchCases[i].TrueBB)) { // Handle LHS and RHS. |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1072 | for (MachineBasicBlock::iterator Phi = BB->begin(); |
| 1073 | Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){ |
| 1074 | // This value for this PHI node is recorded in PHINodesToUpdate, get it. |
| 1075 | for (unsigned pn = 0; ; ++pn) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1076 | assert(pn != SDL->PHINodesToUpdate.size() && |
| 1077 | "Didn't find PHI entry!"); |
| 1078 | if (SDL->PHINodesToUpdate[pn].first == Phi) { |
| 1079 | Phi->addOperand(MachineOperand::CreateReg(SDL->PHINodesToUpdate[pn]. |
Chris Lattner | 9ce2e9d | 2007-12-30 00:57:42 +0000 | [diff] [blame] | 1080 | second, false)); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1081 | Phi->addOperand(MachineOperand::CreateMBB(SDL->SwitchCases[i].ThisBB)); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1082 | break; |
| 1083 | } |
| 1084 | } |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1085 | } |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1086 | |
| 1087 | // Don't process RHS if same block as LHS. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1088 | if (BB == SDL->SwitchCases[i].FalseBB) |
| 1089 | SDL->SwitchCases[i].FalseBB = 0; |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 1090 | |
| 1091 | // If we haven't handled the RHS, do so now. Otherwise, we're done. |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1092 | SDL->SwitchCases[i].TrueBB = SDL->SwitchCases[i].FalseBB; |
| 1093 | SDL->SwitchCases[i].FalseBB = 0; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 1094 | } |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1095 | assert(SDL->SwitchCases[i].TrueBB == 0 && SDL->SwitchCases[i].FalseBB == 0); |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 1096 | } |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 1097 | SDL->SwitchCases.clear(); |
| 1098 | |
| 1099 | SDL->PHINodesToUpdate.clear(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1100 | } |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 1101 | |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 1102 | |
Dan Gohman | 0a3776d | 2009-02-06 18:26:51 +0000 | [diff] [blame] | 1103 | /// Create the scheduler. If a specific scheduler was specified |
| 1104 | /// via the SchedulerRegistry, use it, otherwise select the |
| 1105 | /// one preferred by the target. |
Dan Gohman | 5e84368 | 2008-07-14 18:19:29 +0000 | [diff] [blame] | 1106 | /// |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 1107 | ScheduleDAGSDNodes *SelectionDAGISel::CreateScheduler() { |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 1108 | RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault(); |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 1109 | |
| 1110 | if (!Ctor) { |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 1111 | Ctor = ISHeuristic; |
Jim Laskey | 9373beb | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 1112 | RegisterScheduler::setDefault(Ctor); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 1113 | } |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 1114 | |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 1115 | return Ctor(this, OptLevel); |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 1116 | } |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1117 | |
Dan Gohman | fc54c55 | 2009-01-15 22:18:12 +0000 | [diff] [blame] | 1118 | ScheduleHazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() { |
| 1119 | return new ScheduleHazardRecognizer(); |
Jim Laskey | 9ff542f | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 1120 | } |
| 1121 | |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1122 | //===----------------------------------------------------------------------===// |
| 1123 | // Helper functions used by the generated instruction selector. |
| 1124 | //===----------------------------------------------------------------------===// |
| 1125 | // Calls to these methods are generated by tblgen. |
| 1126 | |
| 1127 | /// CheckAndMask - The isel is trying to match something like (and X, 255). If |
| 1128 | /// the dag combiner simplified the 255, we still want to match. RHS is the |
| 1129 | /// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value |
| 1130 | /// specified in the .td file (e.g. 255). |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1131 | bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS, |
Dan Gohman | dc9b3d0 | 2007-07-24 23:00:27 +0000 | [diff] [blame] | 1132 | int64_t DesiredMaskS) const { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1133 | const APInt &ActualMask = RHS->getAPIntValue(); |
| 1134 | const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS); |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1135 | |
| 1136 | // If the actual mask exactly matches, success! |
| 1137 | if (ActualMask == DesiredMask) |
| 1138 | return true; |
| 1139 | |
| 1140 | // If the actual AND mask is allowing unallowed bits, this doesn't match. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1141 | if (ActualMask.intersects(~DesiredMask)) |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1142 | return false; |
| 1143 | |
| 1144 | // Otherwise, the DAG Combiner may have proven that the value coming in is |
| 1145 | // either already zero or is not demanded. Check for known zero input bits. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1146 | APInt NeededMask = DesiredMask & ~ActualMask; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1147 | if (CurDAG->MaskedValueIsZero(LHS, NeededMask)) |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1148 | return true; |
| 1149 | |
| 1150 | // TODO: check to see if missing bits are just not demanded. |
| 1151 | |
| 1152 | // Otherwise, this pattern doesn't match. |
| 1153 | return false; |
| 1154 | } |
| 1155 | |
| 1156 | /// CheckOrMask - The isel is trying to match something like (or X, 255). If |
| 1157 | /// the dag combiner simplified the 255, we still want to match. RHS is the |
| 1158 | /// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value |
| 1159 | /// specified in the .td file (e.g. 255). |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1160 | bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1161 | int64_t DesiredMaskS) const { |
| 1162 | const APInt &ActualMask = RHS->getAPIntValue(); |
| 1163 | const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS); |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1164 | |
| 1165 | // If the actual mask exactly matches, success! |
| 1166 | if (ActualMask == DesiredMask) |
| 1167 | return true; |
| 1168 | |
| 1169 | // If the actual AND mask is allowing unallowed bits, this doesn't match. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1170 | if (ActualMask.intersects(~DesiredMask)) |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1171 | return false; |
| 1172 | |
| 1173 | // Otherwise, the DAG Combiner may have proven that the value coming in is |
| 1174 | // either already zero or is not demanded. Check for known zero input bits. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1175 | APInt NeededMask = DesiredMask & ~ActualMask; |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1176 | |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1177 | APInt KnownZero, KnownOne; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1178 | CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne); |
Chris Lattner | 7554806 | 2006-10-11 03:58:02 +0000 | [diff] [blame] | 1179 | |
| 1180 | // If all the missing bits in the or are already known to be set, match! |
| 1181 | if ((NeededMask & KnownOne) == NeededMask) |
| 1182 | return true; |
| 1183 | |
| 1184 | // TODO: check to see if missing bits are just not demanded. |
| 1185 | |
| 1186 | // Otherwise, this pattern doesn't match. |
| 1187 | return false; |
| 1188 | } |
| 1189 | |
Jim Laskey | 9ff542f | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 1190 | |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1191 | /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated |
| 1192 | /// by tblgen. Others should not call it. |
| 1193 | void SelectionDAGISel:: |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1194 | SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1195 | std::vector<SDValue> InOps; |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1196 | std::swap(InOps, Ops); |
| 1197 | |
| 1198 | Ops.push_back(InOps[0]); // input chain. |
| 1199 | Ops.push_back(InOps[1]); // input asm string. |
| 1200 | |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1201 | unsigned i = 2, e = InOps.size(); |
| 1202 | if (InOps[e-1].getValueType() == MVT::Flag) |
| 1203 | --e; // Don't process a flag operand if it is here. |
| 1204 | |
| 1205 | while (i != e) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1206 | unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue(); |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 1207 | if ((Flags & 7) != 4 /*MEM*/) { |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1208 | // Just skip over this operand, copying the operands verbatim. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 1209 | Ops.insert(Ops.end(), InOps.begin()+i, |
| 1210 | InOps.begin()+i+InlineAsm::getNumOperandRegisters(Flags) + 1); |
| 1211 | i += InlineAsm::getNumOperandRegisters(Flags) + 1; |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1212 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 1213 | assert(InlineAsm::getNumOperandRegisters(Flags) == 1 && |
| 1214 | "Memory operand with multiple values?"); |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1215 | // Otherwise, this is a memory operand. Ask the target to select it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1216 | std::vector<SDValue> SelOps; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1217 | if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps)) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 1218 | cerr << "Could not match memory address. Inline asm failure!\n"; |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1219 | exit(1); |
| 1220 | } |
| 1221 | |
| 1222 | // Add this to the output node. |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1223 | MVT IntPtrTy = CurDAG->getTargetLoweringInfo().getPointerTy(); |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 1224 | Ops.push_back(CurDAG->getTargetConstant(4/*MEM*/ | (SelOps.size()<< 3), |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 1225 | IntPtrTy)); |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 1226 | Ops.insert(Ops.end(), SelOps.begin(), SelOps.end()); |
| 1227 | i += 2; |
| 1228 | } |
| 1229 | } |
| 1230 | |
| 1231 | // Add the flag input back if present. |
| 1232 | if (e != InOps.size()) |
| 1233 | Ops.push_back(InOps.back()); |
| 1234 | } |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 1235 | |
Anton Korobeynikov | c1c6ef8 | 2009-05-08 18:51:58 +0000 | [diff] [blame] | 1236 | /// findFlagUse - Return use of MVT::Flag value produced by the specified |
| 1237 | /// SDNode. |
| 1238 | /// |
| 1239 | static SDNode *findFlagUse(SDNode *N) { |
| 1240 | unsigned FlagResNo = N->getNumValues()-1; |
| 1241 | for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) { |
| 1242 | SDUse &Use = I.getUse(); |
| 1243 | if (Use.getResNo() == FlagResNo) |
| 1244 | return Use.getUser(); |
| 1245 | } |
| 1246 | return NULL; |
| 1247 | } |
| 1248 | |
| 1249 | /// findNonImmUse - Return true if "Use" is a non-immediate use of "Def". |
| 1250 | /// This function recursively traverses up the operand chain, ignoring |
| 1251 | /// certain nodes. |
| 1252 | static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse, |
| 1253 | SDNode *Root, |
| 1254 | SmallPtrSet<SDNode*, 16> &Visited) { |
| 1255 | if (Use->getNodeId() < Def->getNodeId() || |
| 1256 | !Visited.insert(Use)) |
| 1257 | return false; |
| 1258 | |
| 1259 | for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) { |
| 1260 | SDNode *N = Use->getOperand(i).getNode(); |
| 1261 | if (N == Def) { |
| 1262 | if (Use == ImmedUse || Use == Root) |
| 1263 | continue; // We are not looking for immediate use. |
| 1264 | assert(N != Root); |
| 1265 | return true; |
| 1266 | } |
| 1267 | |
| 1268 | // Traverse up the operand chain. |
| 1269 | if (findNonImmUse(N, Def, ImmedUse, Root, Visited)) |
| 1270 | return true; |
| 1271 | } |
| 1272 | return false; |
| 1273 | } |
| 1274 | |
| 1275 | /// isNonImmUse - Start searching from Root up the DAG to check is Def can |
| 1276 | /// be reached. Return true if that's the case. However, ignore direct uses |
| 1277 | /// by ImmedUse (which would be U in the example illustrated in |
| 1278 | /// IsLegalAndProfitableToFold) and by Root (which can happen in the store |
| 1279 | /// case). |
| 1280 | /// FIXME: to be really generic, we should allow direct use by any node |
| 1281 | /// that is being folded. But realisticly since we only fold loads which |
| 1282 | /// have one non-chain use, we only need to watch out for load/op/store |
| 1283 | /// and load/op/cmp case where the root (store / cmp) may reach the load via |
| 1284 | /// its chain operand. |
| 1285 | static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse) { |
| 1286 | SmallPtrSet<SDNode*, 16> Visited; |
| 1287 | return findNonImmUse(Root, Def, ImmedUse, Root, Visited); |
| 1288 | } |
| 1289 | |
| 1290 | /// IsLegalAndProfitableToFold - Returns true if the specific operand node N of |
| 1291 | /// U can be folded during instruction selection that starts at Root and |
| 1292 | /// folding N is profitable. |
| 1293 | bool SelectionDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U, |
| 1294 | SDNode *Root) const { |
| 1295 | if (OptLevel == CodeGenOpt::None) return false; |
| 1296 | |
| 1297 | // If Root use can somehow reach N through a path that that doesn't contain |
| 1298 | // U then folding N would create a cycle. e.g. In the following |
| 1299 | // diagram, Root can reach N through X. If N is folded into into Root, then |
| 1300 | // X is both a predecessor and a successor of U. |
| 1301 | // |
| 1302 | // [N*] // |
| 1303 | // ^ ^ // |
| 1304 | // / \ // |
| 1305 | // [U*] [X]? // |
| 1306 | // ^ ^ // |
| 1307 | // \ / // |
| 1308 | // \ / // |
| 1309 | // [Root*] // |
| 1310 | // |
| 1311 | // * indicates nodes to be folded together. |
| 1312 | // |
| 1313 | // If Root produces a flag, then it gets (even more) interesting. Since it |
| 1314 | // will be "glued" together with its flag use in the scheduler, we need to |
| 1315 | // check if it might reach N. |
| 1316 | // |
| 1317 | // [N*] // |
| 1318 | // ^ ^ // |
| 1319 | // / \ // |
| 1320 | // [U*] [X]? // |
| 1321 | // ^ ^ // |
| 1322 | // \ \ // |
| 1323 | // \ | // |
| 1324 | // [Root*] | // |
| 1325 | // ^ | // |
| 1326 | // f | // |
| 1327 | // | / // |
| 1328 | // [Y] / // |
| 1329 | // ^ / // |
| 1330 | // f / // |
| 1331 | // | / // |
| 1332 | // [FU] // |
| 1333 | // |
| 1334 | // If FU (flag use) indirectly reaches N (the load), and Root folds N |
| 1335 | // (call it Fold), then X is a predecessor of FU and a successor of |
| 1336 | // Fold. But since Fold and FU are flagged together, this will create |
| 1337 | // a cycle in the scheduling graph. |
| 1338 | |
| 1339 | MVT VT = Root->getValueType(Root->getNumValues()-1); |
| 1340 | while (VT == MVT::Flag) { |
| 1341 | SDNode *FU = findFlagUse(Root); |
| 1342 | if (FU == NULL) |
| 1343 | break; |
| 1344 | Root = FU; |
| 1345 | VT = Root->getValueType(Root->getNumValues()-1); |
| 1346 | } |
| 1347 | |
| 1348 | return !isNonImmUse(Root, N, U); |
| 1349 | } |
| 1350 | |
| 1351 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 1352 | char SelectionDAGISel::ID = 0; |