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 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source 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" |
| 15 | #include "llvm/CodeGen/SelectionDAGISel.h" |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/ScheduleDAG.h" |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 17 | #include "llvm/CallingConv.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 18 | #include "llvm/Constants.h" |
| 19 | #include "llvm/DerivedTypes.h" |
| 20 | #include "llvm/Function.h" |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 21 | #include "llvm/GlobalVariable.h" |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 22 | #include "llvm/InlineAsm.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 23 | #include "llvm/Instructions.h" |
| 24 | #include "llvm/Intrinsics.h" |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/IntrinsicLowering.h" |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineDebugInfo.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineFunction.h" |
| 28 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 29 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 30 | #include "llvm/CodeGen/SelectionDAG.h" |
| 31 | #include "llvm/CodeGen/SSARegMap.h" |
Chris Lattner | fa57702 | 2005-09-13 19:30:54 +0000 | [diff] [blame] | 32 | #include "llvm/Target/MRegisterInfo.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetData.h" |
| 34 | #include "llvm/Target/TargetFrameInfo.h" |
| 35 | #include "llvm/Target/TargetInstrInfo.h" |
| 36 | #include "llvm/Target/TargetLowering.h" |
| 37 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 38 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 39 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 40 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 41 | #include "llvm/Support/Debug.h" |
| 42 | #include <map> |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 43 | #include <set> |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 44 | #include <iostream> |
| 45 | using namespace llvm; |
| 46 | |
Chris Lattner | da8abb0 | 2005-09-01 18:44:10 +0000 | [diff] [blame] | 47 | #ifndef NDEBUG |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 48 | static cl::opt<bool> |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 49 | ViewISelDAGs("view-isel-dags", cl::Hidden, |
| 50 | cl::desc("Pop up a window to show isel dags as they are selected")); |
| 51 | static cl::opt<bool> |
| 52 | ViewSchedDAGs("view-sched-dags", cl::Hidden, |
| 53 | cl::desc("Pop up a window to show sched dags as they are processed")); |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 54 | #else |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 55 | static const bool ViewISelDAGs = 0; |
| 56 | static const bool ViewSchedDAGs = 0; |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 57 | #endif |
| 58 | |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 59 | namespace { |
| 60 | cl::opt<SchedHeuristics> |
| 61 | ISHeuristic( |
| 62 | "sched", |
| 63 | cl::desc("Choose scheduling style"), |
Evan Cheng | 3f23952 | 2006-01-25 09:12:57 +0000 | [diff] [blame] | 64 | cl::init(defaultScheduling), |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 65 | cl::values( |
Evan Cheng | 3f23952 | 2006-01-25 09:12:57 +0000 | [diff] [blame] | 66 | clEnumValN(defaultScheduling, "default", |
| 67 | "Target preferred scheduling style"), |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 68 | clEnumValN(noScheduling, "none", |
Jim Laskey | 17d52f7 | 2006-01-23 13:34:04 +0000 | [diff] [blame] | 69 | "No scheduling: breadth first sequencing"), |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 70 | clEnumValN(simpleScheduling, "simple", |
| 71 | "Simple two pass scheduling: minimize critical path " |
| 72 | "and maximize processor utilization"), |
| 73 | clEnumValN(simpleNoItinScheduling, "simple-noitin", |
| 74 | "Simple two pass scheduling: Same as simple " |
| 75 | "except using generic latency"), |
Evan Cheng | 3f23952 | 2006-01-25 09:12:57 +0000 | [diff] [blame] | 76 | clEnumValN(listSchedulingBURR, "list-burr", |
Evan Cheng | f0f9c90 | 2006-01-23 08:26:10 +0000 | [diff] [blame] | 77 | "Bottom up register reduction list scheduling"), |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 78 | clEnumValEnd)); |
| 79 | } // namespace |
| 80 | |
| 81 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 82 | namespace llvm { |
| 83 | //===--------------------------------------------------------------------===// |
| 84 | /// FunctionLoweringInfo - This contains information that is global to a |
| 85 | /// function that is used when lowering a region of the function. |
Chris Lattner | f26bc8e | 2005-01-08 19:52:31 +0000 | [diff] [blame] | 86 | class FunctionLoweringInfo { |
| 87 | public: |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 88 | TargetLowering &TLI; |
| 89 | Function &Fn; |
| 90 | MachineFunction &MF; |
| 91 | SSARegMap *RegMap; |
| 92 | |
| 93 | FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF); |
| 94 | |
| 95 | /// MBBMap - A mapping from LLVM basic blocks to their machine code entry. |
| 96 | std::map<const BasicBlock*, MachineBasicBlock *> MBBMap; |
| 97 | |
| 98 | /// ValueMap - Since we emit code for the function a basic block at a time, |
| 99 | /// we must remember which virtual registers hold the values for |
| 100 | /// cross-basic-block values. |
| 101 | std::map<const Value*, unsigned> ValueMap; |
| 102 | |
| 103 | /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in |
| 104 | /// the entry block. This allows the allocas to be efficiently referenced |
| 105 | /// anywhere in the function. |
| 106 | std::map<const AllocaInst*, int> StaticAllocaMap; |
| 107 | |
| 108 | unsigned MakeReg(MVT::ValueType VT) { |
| 109 | return RegMap->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 110 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 112 | unsigned CreateRegForValue(const Value *V) { |
| 113 | MVT::ValueType VT = TLI.getValueType(V->getType()); |
| 114 | // The common case is that we will only create one register for this |
| 115 | // value. If we have that case, create and return the virtual register. |
| 116 | unsigned NV = TLI.getNumElements(VT); |
Chris Lattner | fb84980 | 2005-01-16 00:37:38 +0000 | [diff] [blame] | 117 | if (NV == 1) { |
| 118 | // If we are promoting this value, pick the next largest supported type. |
Chris Lattner | 98e5c0e | 2005-01-16 01:11:19 +0000 | [diff] [blame] | 119 | return MakeReg(TLI.getTypeToTransformTo(VT)); |
Chris Lattner | fb84980 | 2005-01-16 00:37:38 +0000 | [diff] [blame] | 120 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 121 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 122 | // If this value is represented with multiple target registers, make sure |
| 123 | // to create enough consequtive registers of the right (smaller) type. |
| 124 | unsigned NT = VT-1; // Find the type to use. |
| 125 | while (TLI.getNumElements((MVT::ValueType)NT) != 1) |
| 126 | --NT; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 127 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 128 | unsigned R = MakeReg((MVT::ValueType)NT); |
| 129 | for (unsigned i = 1; i != NV; ++i) |
| 130 | MakeReg((MVT::ValueType)NT); |
| 131 | return R; |
| 132 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 133 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 134 | unsigned InitializeRegForValue(const Value *V) { |
| 135 | unsigned &R = ValueMap[V]; |
| 136 | assert(R == 0 && "Already initialized this value register!"); |
| 137 | return R = CreateRegForValue(V); |
| 138 | } |
| 139 | }; |
| 140 | } |
| 141 | |
| 142 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
| 143 | /// PHI nodes or outside of the basic block that defines it. |
| 144 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 145 | if (isa<PHINode>(I)) return true; |
| 146 | BasicBlock *BB = I->getParent(); |
| 147 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI) |
| 148 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI)) |
| 149 | return true; |
| 150 | return false; |
| 151 | } |
| 152 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 153 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
| 154 | /// entry block, return true. |
| 155 | static bool isOnlyUsedInEntryBlock(Argument *A) { |
| 156 | BasicBlock *Entry = A->getParent()->begin(); |
| 157 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
| 158 | if (cast<Instruction>(*UI)->getParent() != Entry) |
| 159 | return false; // Use not in entry block. |
| 160 | return true; |
| 161 | } |
| 162 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 163 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli, |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 164 | Function &fn, MachineFunction &mf) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 165 | : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) { |
| 166 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 167 | // Create a vreg for each argument register that is not dead and is used |
| 168 | // outside of the entry block for the function. |
| 169 | for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end(); |
| 170 | AI != E; ++AI) |
| 171 | if (!isOnlyUsedInEntryBlock(AI)) |
| 172 | InitializeRegForValue(AI); |
| 173 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 174 | // Initialize the mapping of values to registers. This is only set up for |
| 175 | // instruction values that are used outside of the block that defines |
| 176 | // them. |
Jeff Cohen | 2aeaf4e | 2005-10-01 03:57:14 +0000 | [diff] [blame] | 177 | Function::iterator BB = Fn.begin(), EB = Fn.end(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 178 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 179 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 180 | if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) { |
| 181 | const Type *Ty = AI->getAllocatedType(); |
| 182 | uint64_t TySize = TLI.getTargetData().getTypeSize(Ty); |
Nate Begeman | ae232e7 | 2005-11-06 09:00:38 +0000 | [diff] [blame] | 183 | unsigned Align = |
| 184 | std::max((unsigned)TLI.getTargetData().getTypeAlignment(Ty), |
| 185 | AI->getAlignment()); |
Chris Lattner | a8217e3 | 2005-05-13 23:14:17 +0000 | [diff] [blame] | 186 | |
| 187 | // If the alignment of the value is smaller than the size of the value, |
| 188 | // and if the size of the value is particularly small (<= 8 bytes), |
| 189 | // round up to the size of the value for potentially better performance. |
| 190 | // |
| 191 | // FIXME: This could be made better with a preferred alignment hook in |
| 192 | // TargetData. It serves primarily to 8-byte align doubles for X86. |
| 193 | if (Align < TySize && TySize <= 8) Align = TySize; |
Chris Lattner | 2dfa819 | 2005-10-18 22:11:42 +0000 | [diff] [blame] | 194 | TySize *= CUI->getValue(); // Get total allocated size. |
Chris Lattner | d222f6a | 2005-10-18 22:14:06 +0000 | [diff] [blame] | 195 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 196 | StaticAllocaMap[AI] = |
Chris Lattner | f26bc8e | 2005-01-08 19:52:31 +0000 | [diff] [blame] | 197 | MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Jeff Cohen | 2aeaf4e | 2005-10-01 03:57:14 +0000 | [diff] [blame] | 200 | for (; BB != EB; ++BB) |
| 201 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 202 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 203 | if (!isa<AllocaInst>(I) || |
| 204 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 205 | InitializeRegForValue(I); |
| 206 | |
| 207 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 208 | // also creates the initial PHI MachineInstrs, though none of the input |
| 209 | // operands are populated. |
Jeff Cohen | 2aeaf4e | 2005-10-01 03:57:14 +0000 | [diff] [blame] | 210 | for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 211 | MachineBasicBlock *MBB = new MachineBasicBlock(BB); |
| 212 | MBBMap[BB] = MBB; |
| 213 | MF.getBasicBlockList().push_back(MBB); |
| 214 | |
| 215 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 216 | // appropriate. |
| 217 | PHINode *PN; |
| 218 | for (BasicBlock::iterator I = BB->begin(); |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 219 | (PN = dyn_cast<PHINode>(I)); ++I) |
| 220 | if (!PN->use_empty()) { |
| 221 | unsigned NumElements = |
| 222 | TLI.getNumElements(TLI.getValueType(PN->getType())); |
| 223 | unsigned PHIReg = ValueMap[PN]; |
| 224 | assert(PHIReg &&"PHI node does not have an assigned virtual register!"); |
| 225 | for (unsigned i = 0; i != NumElements; ++i) |
| 226 | BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i); |
| 227 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 228 | } |
| 229 | } |
| 230 | |
| 231 | |
| 232 | |
| 233 | //===----------------------------------------------------------------------===// |
| 234 | /// SelectionDAGLowering - This is the common target-independent lowering |
| 235 | /// implementation that is parameterized by a TargetLowering object. |
| 236 | /// Also, targets can overload any lowering method. |
| 237 | /// |
| 238 | namespace llvm { |
| 239 | class SelectionDAGLowering { |
| 240 | MachineBasicBlock *CurMBB; |
| 241 | |
| 242 | std::map<const Value*, SDOperand> NodeMap; |
| 243 | |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 244 | /// PendingLoads - Loads are not emitted to the program immediately. We bunch |
| 245 | /// them up and then emit token factor nodes when possible. This allows us to |
| 246 | /// get simple disambiguation between loads without worrying about alias |
| 247 | /// analysis. |
| 248 | std::vector<SDOperand> PendingLoads; |
| 249 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 250 | public: |
| 251 | // TLI - This is information that describes the available target features we |
| 252 | // need for lowering. This indicates when operations are unavailable, |
| 253 | // implemented with a libcall, etc. |
| 254 | TargetLowering &TLI; |
| 255 | SelectionDAG &DAG; |
| 256 | const TargetData &TD; |
| 257 | |
| 258 | /// FuncInfo - Information about the function as a whole. |
| 259 | /// |
| 260 | FunctionLoweringInfo &FuncInfo; |
| 261 | |
| 262 | SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli, |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 263 | FunctionLoweringInfo &funcinfo) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 264 | : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), |
| 265 | FuncInfo(funcinfo) { |
| 266 | } |
| 267 | |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 268 | /// getRoot - Return the current virtual root of the Selection DAG. |
| 269 | /// |
| 270 | SDOperand getRoot() { |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 271 | if (PendingLoads.empty()) |
| 272 | return DAG.getRoot(); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 273 | |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 274 | if (PendingLoads.size() == 1) { |
| 275 | SDOperand Root = PendingLoads[0]; |
| 276 | DAG.setRoot(Root); |
| 277 | PendingLoads.clear(); |
| 278 | return Root; |
| 279 | } |
| 280 | |
| 281 | // Otherwise, we have to make a token factor node. |
| 282 | SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads); |
| 283 | PendingLoads.clear(); |
| 284 | DAG.setRoot(Root); |
| 285 | return Root; |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 288 | void visit(Instruction &I) { visit(I.getOpcode(), I); } |
| 289 | |
| 290 | void visit(unsigned Opcode, User &I) { |
| 291 | switch (Opcode) { |
| 292 | default: assert(0 && "Unknown instruction type encountered!"); |
| 293 | abort(); |
| 294 | // Build the switch statement using the Instruction.def file. |
| 295 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 296 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 297 | #include "llvm/Instruction.def" |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; } |
| 302 | |
| 303 | |
| 304 | SDOperand getIntPtrConstant(uint64_t Val) { |
| 305 | return DAG.getConstant(Val, TLI.getPointerTy()); |
| 306 | } |
| 307 | |
| 308 | SDOperand getValue(const Value *V) { |
| 309 | SDOperand &N = NodeMap[V]; |
| 310 | if (N.Val) return N; |
| 311 | |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 312 | const Type *VTy = V->getType(); |
| 313 | MVT::ValueType VT = TLI.getValueType(VTy); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 314 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) |
| 315 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 316 | visit(CE->getOpcode(), *CE); |
| 317 | assert(N.Val && "visit didn't populate the ValueMap!"); |
| 318 | return N; |
| 319 | } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) { |
| 320 | return N = DAG.getGlobalAddress(GV, VT); |
| 321 | } else if (isa<ConstantPointerNull>(C)) { |
| 322 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
| 323 | } else if (isa<UndefValue>(C)) { |
Nate Begeman | b882752 | 2005-04-12 23:12:17 +0000 | [diff] [blame] | 324 | return N = DAG.getNode(ISD::UNDEF, VT); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 325 | } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 326 | return N = DAG.getConstantFP(CFP->getValue(), VT); |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 327 | } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) { |
| 328 | unsigned NumElements = PTy->getNumElements(); |
| 329 | MVT::ValueType PVT = TLI.getValueType(PTy->getElementType()); |
| 330 | MVT::ValueType TVT = MVT::getVectorType(PVT, NumElements); |
| 331 | |
| 332 | // Now that we know the number and type of the elements, push a |
| 333 | // Constant or ConstantFP node onto the ops list for each element of |
| 334 | // the packed constant. |
| 335 | std::vector<SDOperand> Ops; |
Chris Lattner | 3b841e9 | 2005-12-21 02:43:26 +0000 | [diff] [blame] | 336 | if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) { |
| 337 | if (MVT::isFloatingPoint(PVT)) { |
| 338 | for (unsigned i = 0; i != NumElements; ++i) { |
| 339 | const ConstantFP *El = cast<ConstantFP>(CP->getOperand(i)); |
| 340 | Ops.push_back(DAG.getConstantFP(El->getValue(), PVT)); |
| 341 | } |
| 342 | } else { |
| 343 | for (unsigned i = 0; i != NumElements; ++i) { |
| 344 | const ConstantIntegral *El = |
| 345 | cast<ConstantIntegral>(CP->getOperand(i)); |
| 346 | Ops.push_back(DAG.getConstant(El->getRawValue(), PVT)); |
| 347 | } |
| 348 | } |
| 349 | } else { |
| 350 | assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!"); |
| 351 | SDOperand Op; |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 352 | if (MVT::isFloatingPoint(PVT)) |
Chris Lattner | 3b841e9 | 2005-12-21 02:43:26 +0000 | [diff] [blame] | 353 | Op = DAG.getConstantFP(0, PVT); |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 354 | else |
Chris Lattner | 3b841e9 | 2005-12-21 02:43:26 +0000 | [diff] [blame] | 355 | Op = DAG.getConstant(0, PVT); |
| 356 | Ops.assign(NumElements, Op); |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 357 | } |
Chris Lattner | 3b841e9 | 2005-12-21 02:43:26 +0000 | [diff] [blame] | 358 | |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 359 | // Handle the case where we have a 1-element vector, in which |
| 360 | // case we want to immediately turn it into a scalar constant. |
Nate Begeman | cc827e6 | 2005-12-07 19:48:11 +0000 | [diff] [blame] | 361 | if (Ops.size() == 1) { |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 362 | return N = Ops[0]; |
Nate Begeman | cc827e6 | 2005-12-07 19:48:11 +0000 | [diff] [blame] | 363 | } else if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) { |
| 364 | return N = DAG.getNode(ISD::ConstantVec, TVT, Ops); |
| 365 | } else { |
| 366 | // If the packed type isn't legal, then create a ConstantVec node with |
| 367 | // generic Vector type instead. |
| 368 | return N = DAG.getNode(ISD::ConstantVec, MVT::Vector, Ops); |
| 369 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 370 | } else { |
| 371 | // Canonicalize all constant ints to be unsigned. |
| 372 | return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT); |
| 373 | } |
| 374 | |
| 375 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 376 | std::map<const AllocaInst*, int>::iterator SI = |
| 377 | FuncInfo.StaticAllocaMap.find(AI); |
| 378 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 379 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 380 | } |
| 381 | |
| 382 | std::map<const Value*, unsigned>::const_iterator VMI = |
| 383 | FuncInfo.ValueMap.find(V); |
| 384 | assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!"); |
Chris Lattner | c8ea3c4 | 2005-01-16 02:23:07 +0000 | [diff] [blame] | 385 | |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 386 | unsigned InReg = VMI->second; |
| 387 | |
| 388 | // If this type is not legal, make it so now. |
| 389 | MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT); |
| 390 | |
| 391 | N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT); |
| 392 | if (DestVT < VT) { |
| 393 | // Source must be expanded. This input value is actually coming from the |
| 394 | // register pair VMI->second and VMI->second+1. |
| 395 | N = DAG.getNode(ISD::BUILD_PAIR, VT, N, |
| 396 | DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT)); |
| 397 | } else { |
| 398 | if (DestVT > VT) { // Promotion case |
| 399 | if (MVT::isFloatingPoint(VT)) |
| 400 | N = DAG.getNode(ISD::FP_ROUND, VT, N); |
| 401 | else |
| 402 | N = DAG.getNode(ISD::TRUNCATE, VT, N); |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | return N; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | const SDOperand &setValue(const Value *V, SDOperand NewN) { |
| 410 | SDOperand &N = NodeMap[V]; |
| 411 | assert(N.Val == 0 && "Already set a value for this node!"); |
| 412 | return N = NewN; |
| 413 | } |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 414 | |
| 415 | unsigned GetAvailableRegister(bool OutReg, bool InReg, |
| 416 | const std::vector<unsigned> &RegChoices, |
| 417 | std::set<unsigned> &OutputRegs, |
| 418 | std::set<unsigned> &InputRegs); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 419 | |
| 420 | // Terminator instructions. |
| 421 | void visitRet(ReturnInst &I); |
| 422 | void visitBr(BranchInst &I); |
| 423 | void visitUnreachable(UnreachableInst &I) { /* noop */ } |
| 424 | |
| 425 | // These all get lowered before this pass. |
Robert Bocchino | c0f4cd9 | 2006-01-10 19:04:57 +0000 | [diff] [blame] | 426 | void visitExtractElement(ExtractElementInst &I) { assert(0 && "TODO"); } |
Robert Bocchino | 4eb2e3a | 2006-01-17 20:06:42 +0000 | [diff] [blame] | 427 | void visitInsertElement(InsertElementInst &I) { assert(0 && "TODO"); } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 428 | void visitSwitch(SwitchInst &I) { assert(0 && "TODO"); } |
| 429 | void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); } |
| 430 | void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); } |
| 431 | |
| 432 | // |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 433 | void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp); |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 434 | void visitShift(User &I, unsigned Opcode); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 435 | void visitAdd(User &I) { |
| 436 | visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 437 | } |
Chris Lattner | b9fccc4 | 2005-04-02 05:04:50 +0000 | [diff] [blame] | 438 | void visitSub(User &I); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 439 | void visitMul(User &I) { |
| 440 | visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 441 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 442 | void visitDiv(User &I) { |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 443 | const Type *Ty = I.getType(); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 444 | visitBinary(I, Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV, 0); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 445 | } |
| 446 | void visitRem(User &I) { |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 447 | const Type *Ty = I.getType(); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 448 | visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 449 | } |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 450 | void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, 0); } |
| 451 | void visitOr (User &I) { visitBinary(I, ISD::OR, 0, 0); } |
| 452 | void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, 0); } |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 453 | void visitShl(User &I) { visitShift(I, ISD::SHL); } |
| 454 | void visitShr(User &I) { |
| 455 | visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc); |
| 459 | void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ); } |
| 460 | void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE); } |
| 461 | void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE); } |
| 462 | void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE); } |
| 463 | void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT); } |
| 464 | void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT); } |
| 465 | |
| 466 | void visitGetElementPtr(User &I); |
| 467 | void visitCast(User &I); |
| 468 | void visitSelect(User &I); |
| 469 | // |
| 470 | |
| 471 | void visitMalloc(MallocInst &I); |
| 472 | void visitFree(FreeInst &I); |
| 473 | void visitAlloca(AllocaInst &I); |
| 474 | void visitLoad(LoadInst &I); |
| 475 | void visitStore(StoreInst &I); |
| 476 | void visitPHI(PHINode &I) { } // PHI nodes are handled specially. |
| 477 | void visitCall(CallInst &I); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 478 | void visitInlineAsm(CallInst &I); |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 479 | const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 480 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 481 | void visitVAStart(CallInst &I); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 482 | void visitVAArg(VAArgInst &I); |
| 483 | void visitVAEnd(CallInst &I); |
| 484 | void visitVACopy(CallInst &I); |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 485 | void visitFrameReturnAddress(CallInst &I, bool isFrameAddress); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 486 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 487 | void visitMemIntrinsic(CallInst &I, unsigned Op); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 488 | |
| 489 | void visitUserOp1(Instruction &I) { |
| 490 | assert(0 && "UserOp1 should not exist at instruction selection time!"); |
| 491 | abort(); |
| 492 | } |
| 493 | void visitUserOp2(Instruction &I) { |
| 494 | assert(0 && "UserOp2 should not exist at instruction selection time!"); |
| 495 | abort(); |
| 496 | } |
| 497 | }; |
| 498 | } // end namespace llvm |
| 499 | |
| 500 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
| 501 | if (I.getNumOperands() == 0) { |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 502 | DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot())); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 503 | return; |
| 504 | } |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 505 | std::vector<SDOperand> NewValues; |
| 506 | NewValues.push_back(getRoot()); |
| 507 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
| 508 | SDOperand RetOp = getValue(I.getOperand(i)); |
| 509 | |
| 510 | // If this is an integer return value, we need to promote it ourselves to |
| 511 | // the full width of a register, since LegalizeOp will use ANY_EXTEND rather |
| 512 | // than sign/zero. |
| 513 | if (MVT::isInteger(RetOp.getValueType()) && |
| 514 | RetOp.getValueType() < MVT::i64) { |
| 515 | MVT::ValueType TmpVT; |
| 516 | if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote) |
| 517 | TmpVT = TLI.getTypeToTransformTo(MVT::i32); |
| 518 | else |
| 519 | TmpVT = MVT::i32; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 520 | |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 521 | if (I.getOperand(i)->getType()->isSigned()) |
| 522 | RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp); |
| 523 | else |
| 524 | RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp); |
| 525 | } |
| 526 | NewValues.push_back(RetOp); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 527 | } |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 528 | DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 532 | // Update machine-CFG edges. |
| 533 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 534 | |
| 535 | // Figure out which block is immediately after the current one. |
| 536 | MachineBasicBlock *NextBlock = 0; |
| 537 | MachineFunction::iterator BBI = CurMBB; |
| 538 | if (++BBI != CurMBB->getParent()->end()) |
| 539 | NextBlock = BBI; |
| 540 | |
| 541 | if (I.isUnconditional()) { |
| 542 | // If this is not a fall-through branch, emit the branch. |
| 543 | if (Succ0MBB != NextBlock) |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 544 | DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 545 | DAG.getBasicBlock(Succ0MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 546 | } else { |
| 547 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 548 | |
| 549 | SDOperand Cond = getValue(I.getCondition()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 550 | if (Succ1MBB == NextBlock) { |
| 551 | // If the condition is false, fall through. This means we should branch |
| 552 | // if the condition is true to Succ #0. |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 553 | DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 554 | Cond, DAG.getBasicBlock(Succ0MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 555 | } else if (Succ0MBB == NextBlock) { |
| 556 | // If the condition is true, fall through. This means we should branch if |
| 557 | // the condition is false to Succ #1. Invert the condition first. |
| 558 | SDOperand True = DAG.getConstant(1, Cond.getValueType()); |
| 559 | Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True); |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 560 | DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 561 | Cond, DAG.getBasicBlock(Succ1MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 562 | } else { |
Chris Lattner | e7ccd4a | 2005-04-09 03:30:29 +0000 | [diff] [blame] | 563 | std::vector<SDOperand> Ops; |
| 564 | Ops.push_back(getRoot()); |
| 565 | Ops.push_back(Cond); |
| 566 | Ops.push_back(DAG.getBasicBlock(Succ0MBB)); |
| 567 | Ops.push_back(DAG.getBasicBlock(Succ1MBB)); |
| 568 | DAG.setRoot(DAG.getNode(ISD::BRCONDTWOWAY, MVT::Other, Ops)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 569 | } |
| 570 | } |
| 571 | } |
| 572 | |
Chris Lattner | b9fccc4 | 2005-04-02 05:04:50 +0000 | [diff] [blame] | 573 | void SelectionDAGLowering::visitSub(User &I) { |
| 574 | // -0.0 - X --> fneg |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 575 | if (I.getType()->isFloatingPoint()) { |
| 576 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
| 577 | if (CFP->isExactlyValue(-0.0)) { |
| 578 | SDOperand Op2 = getValue(I.getOperand(1)); |
| 579 | setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2)); |
| 580 | return; |
| 581 | } |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 582 | } |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 583 | visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB); |
Chris Lattner | b9fccc4 | 2005-04-02 05:04:50 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 586 | void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp, |
| 587 | unsigned VecOp) { |
| 588 | const Type *Ty = I.getType(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 589 | SDOperand Op1 = getValue(I.getOperand(0)); |
| 590 | SDOperand Op2 = getValue(I.getOperand(1)); |
Chris Lattner | 2c49f27 | 2005-01-19 22:31:21 +0000 | [diff] [blame] | 591 | |
Chris Lattner | b67eb91 | 2005-11-19 18:40:42 +0000 | [diff] [blame] | 592 | if (Ty->isIntegral()) { |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 593 | setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2)); |
| 594 | } else if (Ty->isFloatingPoint()) { |
| 595 | setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2)); |
| 596 | } else { |
| 597 | const PackedType *PTy = cast<PackedType>(Ty); |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 598 | unsigned NumElements = PTy->getNumElements(); |
| 599 | MVT::ValueType PVT = TLI.getValueType(PTy->getElementType()); |
Nate Begeman | f43a3ca | 2005-11-30 08:22:07 +0000 | [diff] [blame] | 600 | MVT::ValueType TVT = MVT::getVectorType(PVT, NumElements); |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 601 | |
| 602 | // Immediately scalarize packed types containing only one element, so that |
Nate Begeman | f43a3ca | 2005-11-30 08:22:07 +0000 | [diff] [blame] | 603 | // the Legalize pass does not have to deal with them. Similarly, if the |
| 604 | // abstract vector is going to turn into one that the target natively |
| 605 | // supports, generate that type now so that Legalize doesn't have to deal |
| 606 | // with that either. These steps ensure that Legalize only has to handle |
| 607 | // vector types in its Expand case. |
| 608 | unsigned Opc = MVT::isFloatingPoint(PVT) ? FPOp : IntOp; |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 609 | if (NumElements == 1) { |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 610 | setValue(&I, DAG.getNode(Opc, PVT, Op1, Op2)); |
Nate Begeman | f43a3ca | 2005-11-30 08:22:07 +0000 | [diff] [blame] | 611 | } else if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) { |
| 612 | setValue(&I, DAG.getNode(Opc, TVT, Op1, Op2)); |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 613 | } else { |
| 614 | SDOperand Num = DAG.getConstant(NumElements, MVT::i32); |
| 615 | SDOperand Typ = DAG.getValueType(PVT); |
Nate Begeman | ab48be3 | 2005-11-22 18:16:00 +0000 | [diff] [blame] | 616 | setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ)); |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 617 | } |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 618 | } |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 619 | } |
Chris Lattner | 2c49f27 | 2005-01-19 22:31:21 +0000 | [diff] [blame] | 620 | |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 621 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 622 | SDOperand Op1 = getValue(I.getOperand(0)); |
| 623 | SDOperand Op2 = getValue(I.getOperand(1)); |
| 624 | |
| 625 | Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2); |
| 626 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 627 | setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2)); |
| 628 | } |
| 629 | |
| 630 | void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode, |
| 631 | ISD::CondCode UnsignedOpcode) { |
| 632 | SDOperand Op1 = getValue(I.getOperand(0)); |
| 633 | SDOperand Op2 = getValue(I.getOperand(1)); |
| 634 | ISD::CondCode Opcode = SignedOpcode; |
| 635 | if (I.getOperand(0)->getType()->isUnsigned()) |
| 636 | Opcode = UnsignedOpcode; |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 637 | setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | void SelectionDAGLowering::visitSelect(User &I) { |
| 641 | SDOperand Cond = getValue(I.getOperand(0)); |
| 642 | SDOperand TrueVal = getValue(I.getOperand(1)); |
| 643 | SDOperand FalseVal = getValue(I.getOperand(2)); |
| 644 | setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond, |
| 645 | TrueVal, FalseVal)); |
| 646 | } |
| 647 | |
| 648 | void SelectionDAGLowering::visitCast(User &I) { |
| 649 | SDOperand N = getValue(I.getOperand(0)); |
| 650 | MVT::ValueType SrcTy = TLI.getValueType(I.getOperand(0)->getType()); |
| 651 | MVT::ValueType DestTy = TLI.getValueType(I.getType()); |
| 652 | |
| 653 | if (N.getValueType() == DestTy) { |
| 654 | setValue(&I, N); // noop cast. |
Chris Lattner | ef311aa | 2005-05-09 22:17:13 +0000 | [diff] [blame] | 655 | } else if (DestTy == MVT::i1) { |
| 656 | // Cast to bool is a comparison against zero, not truncation to zero. |
| 657 | SDOperand Zero = isInteger(SrcTy) ? DAG.getConstant(0, N.getValueType()) : |
| 658 | DAG.getConstantFP(0.0, N.getValueType()); |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 659 | setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE)); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 660 | } else if (isInteger(SrcTy)) { |
| 661 | if (isInteger(DestTy)) { // Int -> Int cast |
| 662 | if (DestTy < SrcTy) // Truncating cast? |
| 663 | setValue(&I, DAG.getNode(ISD::TRUNCATE, DestTy, N)); |
| 664 | else if (I.getOperand(0)->getType()->isSigned()) |
| 665 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestTy, N)); |
| 666 | else |
| 667 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestTy, N)); |
| 668 | } else { // Int -> FP cast |
| 669 | if (I.getOperand(0)->getType()->isSigned()) |
| 670 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestTy, N)); |
| 671 | else |
| 672 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestTy, N)); |
| 673 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 674 | } else { |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 675 | assert(isFloatingPoint(SrcTy) && "Unknown value type!"); |
| 676 | if (isFloatingPoint(DestTy)) { // FP -> FP cast |
| 677 | if (DestTy < SrcTy) // Rounding cast? |
| 678 | setValue(&I, DAG.getNode(ISD::FP_ROUND, DestTy, N)); |
| 679 | else |
| 680 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestTy, N)); |
| 681 | } else { // FP -> Int cast. |
| 682 | if (I.getType()->isSigned()) |
| 683 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestTy, N)); |
| 684 | else |
| 685 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestTy, N)); |
| 686 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 687 | } |
| 688 | } |
| 689 | |
| 690 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 691 | SDOperand N = getValue(I.getOperand(0)); |
| 692 | const Type *Ty = I.getOperand(0)->getType(); |
| 693 | const Type *UIntPtrTy = TD.getIntPtrType(); |
| 694 | |
| 695 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 696 | OI != E; ++OI) { |
| 697 | Value *Idx = *OI; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 698 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 699 | unsigned Field = cast<ConstantUInt>(Idx)->getValue(); |
| 700 | if (Field) { |
| 701 | // N = N + Offset |
| 702 | uint64_t Offset = TD.getStructLayout(StTy)->MemberOffsets[Field]; |
| 703 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 704 | getIntPtrConstant(Offset)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 705 | } |
| 706 | Ty = StTy->getElementType(Field); |
| 707 | } else { |
| 708 | Ty = cast<SequentialType>(Ty)->getElementType(); |
Chris Lattner | 7cc4777 | 2005-01-07 21:56:57 +0000 | [diff] [blame] | 709 | |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 710 | // If this is a constant subscript, handle it quickly. |
| 711 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 712 | if (CI->getRawValue() == 0) continue; |
Chris Lattner | 7cc4777 | 2005-01-07 21:56:57 +0000 | [diff] [blame] | 713 | |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 714 | uint64_t Offs; |
| 715 | if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI)) |
| 716 | Offs = (int64_t)TD.getTypeSize(Ty)*CSI->getValue(); |
| 717 | else |
| 718 | Offs = TD.getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue(); |
| 719 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs)); |
| 720 | continue; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 721 | } |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 722 | |
| 723 | // N = N + Idx * ElementSize; |
| 724 | uint64_t ElementSize = TD.getTypeSize(Ty); |
| 725 | SDOperand IdxN = getValue(Idx); |
| 726 | |
| 727 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 728 | // it. |
| 729 | if (IdxN.getValueType() < N.getValueType()) { |
| 730 | if (Idx->getType()->isSigned()) |
| 731 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN); |
| 732 | else |
| 733 | IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN); |
| 734 | } else if (IdxN.getValueType() > N.getValueType()) |
| 735 | IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN); |
| 736 | |
| 737 | // If this is a multiply by a power of two, turn it into a shl |
| 738 | // immediately. This is a very common case. |
| 739 | if (isPowerOf2_64(ElementSize)) { |
| 740 | unsigned Amt = Log2_64(ElementSize); |
| 741 | IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN, |
Chris Lattner | 6b2d696 | 2005-11-09 16:50:40 +0000 | [diff] [blame] | 742 | DAG.getConstant(Amt, TLI.getShiftAmountTy())); |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 743 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN); |
| 744 | continue; |
| 745 | } |
| 746 | |
| 747 | SDOperand Scale = getIntPtrConstant(ElementSize); |
| 748 | IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale); |
| 749 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 750 | } |
| 751 | } |
| 752 | setValue(&I, N); |
| 753 | } |
| 754 | |
| 755 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 756 | // If this is a fixed sized alloca in the entry block of the function, |
| 757 | // allocate it statically on the stack. |
| 758 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 759 | return; // getValue will auto-populate this. |
| 760 | |
| 761 | const Type *Ty = I.getAllocatedType(); |
| 762 | uint64_t TySize = TLI.getTargetData().getTypeSize(Ty); |
Nate Begeman | ae232e7 | 2005-11-06 09:00:38 +0000 | [diff] [blame] | 763 | unsigned Align = std::max((unsigned)TLI.getTargetData().getTypeAlignment(Ty), |
| 764 | I.getAlignment()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 765 | |
| 766 | SDOperand AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 68cd65e | 2005-01-22 23:04:37 +0000 | [diff] [blame] | 767 | MVT::ValueType IntPtr = TLI.getPointerTy(); |
| 768 | if (IntPtr < AllocSize.getValueType()) |
| 769 | AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize); |
| 770 | else if (IntPtr > AllocSize.getValueType()) |
| 771 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 772 | |
Chris Lattner | 68cd65e | 2005-01-22 23:04:37 +0000 | [diff] [blame] | 773 | AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize, |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 774 | getIntPtrConstant(TySize)); |
| 775 | |
| 776 | // Handle alignment. If the requested alignment is less than or equal to the |
| 777 | // stack alignment, ignore it and round the size of the allocation up to the |
| 778 | // stack alignment size. If the size is greater than the stack alignment, we |
| 779 | // note this in the DYNAMIC_STACKALLOC node. |
| 780 | unsigned StackAlign = |
| 781 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 782 | if (Align <= StackAlign) { |
| 783 | Align = 0; |
| 784 | // Add SA-1 to the size. |
| 785 | AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize, |
| 786 | getIntPtrConstant(StackAlign-1)); |
| 787 | // Mask out the low bits for alignment purposes. |
| 788 | AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize, |
| 789 | getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 790 | } |
| 791 | |
Chris Lattner | adf6c2a | 2005-05-14 07:29:57 +0000 | [diff] [blame] | 792 | std::vector<MVT::ValueType> VTs; |
| 793 | VTs.push_back(AllocSize.getValueType()); |
| 794 | VTs.push_back(MVT::Other); |
| 795 | std::vector<SDOperand> Ops; |
| 796 | Ops.push_back(getRoot()); |
| 797 | Ops.push_back(AllocSize); |
| 798 | Ops.push_back(getIntPtrConstant(Align)); |
| 799 | SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 800 | DAG.setRoot(setValue(&I, DSA).getValue(1)); |
| 801 | |
| 802 | // Inform the Frame Information that we have just allocated a variable-sized |
| 803 | // object. |
| 804 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 805 | } |
| 806 | |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 807 | /// getStringValue - Turn an LLVM constant pointer that eventually points to a |
| 808 | /// global into a string value. Return an empty string if we can't do it. |
| 809 | /// |
| 810 | static std::string getStringValue(Value *V, unsigned Offset = 0) { |
| 811 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) { |
| 812 | if (GV->hasInitializer() && isa<ConstantArray>(GV->getInitializer())) { |
| 813 | ConstantArray *Init = cast<ConstantArray>(GV->getInitializer()); |
| 814 | if (Init->isString()) { |
| 815 | std::string Result = Init->getAsString(); |
| 816 | if (Offset < Result.size()) { |
| 817 | // If we are pointing INTO The string, erase the beginning... |
| 818 | Result.erase(Result.begin(), Result.begin()+Offset); |
| 819 | |
| 820 | // Take off the null terminator, and any string fragments after it. |
| 821 | std::string::size_type NullPos = Result.find_first_of((char)0); |
| 822 | if (NullPos != std::string::npos) |
| 823 | Result.erase(Result.begin()+NullPos, Result.end()); |
| 824 | return Result; |
| 825 | } |
| 826 | } |
| 827 | } |
| 828 | } else if (Constant *C = dyn_cast<Constant>(V)) { |
| 829 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 830 | return getStringValue(GV, Offset); |
| 831 | else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 832 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 833 | // Turn a gep into the specified offset. |
| 834 | if (CE->getNumOperands() == 3 && |
| 835 | cast<Constant>(CE->getOperand(1))->isNullValue() && |
| 836 | isa<ConstantInt>(CE->getOperand(2))) { |
| 837 | return getStringValue(CE->getOperand(0), |
| 838 | Offset+cast<ConstantInt>(CE->getOperand(2))->getRawValue()); |
| 839 | } |
| 840 | } |
| 841 | } |
| 842 | } |
| 843 | return ""; |
| 844 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 845 | |
| 846 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 847 | SDOperand Ptr = getValue(I.getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 848 | |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 849 | SDOperand Root; |
| 850 | if (I.isVolatile()) |
| 851 | Root = getRoot(); |
| 852 | else { |
| 853 | // Do not serialize non-volatile loads against each other. |
| 854 | Root = DAG.getRoot(); |
| 855 | } |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 856 | |
| 857 | const Type *Ty = I.getType(); |
| 858 | SDOperand L; |
| 859 | |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 860 | if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) { |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 861 | unsigned NumElements = PTy->getNumElements(); |
| 862 | MVT::ValueType PVT = TLI.getValueType(PTy->getElementType()); |
Nate Begeman | f43a3ca | 2005-11-30 08:22:07 +0000 | [diff] [blame] | 863 | MVT::ValueType TVT = MVT::getVectorType(PVT, NumElements); |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 864 | |
| 865 | // Immediately scalarize packed types containing only one element, so that |
| 866 | // the Legalize pass does not have to deal with them. |
| 867 | if (NumElements == 1) { |
| 868 | L = DAG.getLoad(PVT, Root, Ptr, DAG.getSrcValue(I.getOperand(0))); |
Nate Begeman | f43a3ca | 2005-11-30 08:22:07 +0000 | [diff] [blame] | 869 | } else if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) { |
| 870 | L = DAG.getLoad(TVT, Root, Ptr, DAG.getSrcValue(I.getOperand(0))); |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 871 | } else { |
| 872 | L = DAG.getVecLoad(NumElements, PVT, Root, Ptr, |
| 873 | DAG.getSrcValue(I.getOperand(0))); |
| 874 | } |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 875 | } else { |
| 876 | L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, |
| 877 | DAG.getSrcValue(I.getOperand(0))); |
| 878 | } |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 879 | setValue(&I, L); |
| 880 | |
| 881 | if (I.isVolatile()) |
| 882 | DAG.setRoot(L.getValue(1)); |
| 883 | else |
| 884 | PendingLoads.push_back(L.getValue(1)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | |
| 888 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 889 | Value *SrcV = I.getOperand(0); |
| 890 | SDOperand Src = getValue(SrcV); |
| 891 | SDOperand Ptr = getValue(I.getOperand(1)); |
Chris Lattner | 369e6db | 2005-05-09 04:08:33 +0000 | [diff] [blame] | 892 | DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr, |
Andrew Lenharth | 06ef884 | 2005-06-29 18:54:02 +0000 | [diff] [blame] | 893 | DAG.getSrcValue(I.getOperand(1)))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 894 | } |
| 895 | |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 896 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 897 | /// we want to emit this as a call to a named external function, return the name |
| 898 | /// otherwise lower it and return null. |
| 899 | const char * |
| 900 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
| 901 | switch (Intrinsic) { |
| 902 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 903 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 904 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 905 | case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0; |
| 906 | case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0; |
| 907 | case Intrinsic::setjmp: |
| 908 | return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp(); |
| 909 | break; |
| 910 | case Intrinsic::longjmp: |
| 911 | return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp(); |
| 912 | break; |
| 913 | case Intrinsic::memcpy: visitMemIntrinsic(I, ISD::MEMCPY); return 0; |
| 914 | case Intrinsic::memset: visitMemIntrinsic(I, ISD::MEMSET); return 0; |
| 915 | case Intrinsic::memmove: visitMemIntrinsic(I, ISD::MEMMOVE); return 0; |
| 916 | |
| 917 | case Intrinsic::readport: |
| 918 | case Intrinsic::readio: { |
| 919 | std::vector<MVT::ValueType> VTs; |
| 920 | VTs.push_back(TLI.getValueType(I.getType())); |
| 921 | VTs.push_back(MVT::Other); |
| 922 | std::vector<SDOperand> Ops; |
| 923 | Ops.push_back(getRoot()); |
| 924 | Ops.push_back(getValue(I.getOperand(1))); |
| 925 | SDOperand Tmp = DAG.getNode(Intrinsic == Intrinsic::readport ? |
| 926 | ISD::READPORT : ISD::READIO, VTs, Ops); |
| 927 | |
| 928 | setValue(&I, Tmp); |
| 929 | DAG.setRoot(Tmp.getValue(1)); |
| 930 | return 0; |
| 931 | } |
| 932 | case Intrinsic::writeport: |
| 933 | case Intrinsic::writeio: |
| 934 | DAG.setRoot(DAG.getNode(Intrinsic == Intrinsic::writeport ? |
| 935 | ISD::WRITEPORT : ISD::WRITEIO, MVT::Other, |
| 936 | getRoot(), getValue(I.getOperand(1)), |
| 937 | getValue(I.getOperand(2)))); |
| 938 | return 0; |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 939 | |
Chris Lattner | 86cb643 | 2005-12-13 17:40:33 +0000 | [diff] [blame] | 940 | case Intrinsic::dbg_stoppoint: { |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 941 | if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) |
| 942 | return "llvm_debugger_stop"; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 943 | |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 944 | MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); |
| 945 | if (DebugInfo && DebugInfo->Verify(I.getOperand(4))) { |
| 946 | std::vector<SDOperand> Ops; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 947 | |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 948 | // Input Chain |
| 949 | Ops.push_back(getRoot()); |
| 950 | |
| 951 | // line number |
| 952 | Ops.push_back(getValue(I.getOperand(2))); |
| 953 | |
| 954 | // column |
| 955 | Ops.push_back(getValue(I.getOperand(3))); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 956 | |
Jim Laskey | d96185a | 2006-02-13 12:50:39 +0000 | [diff] [blame] | 957 | DebugInfoDesc *DD = DebugInfo->getDescFor(I.getOperand(4)); |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 958 | assert(DD && "Not a debug information descriptor"); |
| 959 | CompileUnitDesc *CompileUnit = dyn_cast<CompileUnitDesc>(DD); |
| 960 | assert(CompileUnit && "Not a compile unit"); |
| 961 | Ops.push_back(DAG.getString(CompileUnit->getFileName())); |
| 962 | Ops.push_back(DAG.getString(CompileUnit->getDirectory())); |
| 963 | |
| 964 | if (Ops.size() == 5) // Found filename/workingdir. |
| 965 | DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops)); |
Chris Lattner | 86cb643 | 2005-12-13 17:40:33 +0000 | [diff] [blame] | 966 | } |
| 967 | |
Chris Lattner | d67b3a8 | 2005-12-03 18:50:48 +0000 | [diff] [blame] | 968 | setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 969 | return 0; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 970 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 971 | case Intrinsic::dbg_region_start: |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 972 | if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) |
| 973 | return "llvm_dbg_region_start"; |
| 974 | if (I.getType() != Type::VoidTy) |
| 975 | setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); |
| 976 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 977 | case Intrinsic::dbg_region_end: |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 978 | if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) |
| 979 | return "llvm_dbg_region_end"; |
| 980 | if (I.getType() != Type::VoidTy) |
| 981 | setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); |
| 982 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 983 | case Intrinsic::dbg_func_start: |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 984 | if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) |
| 985 | return "llvm_dbg_subprogram"; |
| 986 | if (I.getType() != Type::VoidTy) |
| 987 | setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); |
| 988 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 989 | case Intrinsic::dbg_declare: |
| 990 | if (I.getType() != Type::VoidTy) |
| 991 | setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); |
| 992 | return 0; |
| 993 | |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 994 | case Intrinsic::isunordered_f32: |
| 995 | case Intrinsic::isunordered_f64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 996 | setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)), |
| 997 | getValue(I.getOperand(2)), ISD::SETUO)); |
| 998 | return 0; |
| 999 | |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1000 | case Intrinsic::sqrt_f32: |
| 1001 | case Intrinsic::sqrt_f64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1002 | setValue(&I, DAG.getNode(ISD::FSQRT, |
| 1003 | getValue(I.getOperand(1)).getValueType(), |
| 1004 | getValue(I.getOperand(1)))); |
| 1005 | return 0; |
| 1006 | case Intrinsic::pcmarker: { |
| 1007 | SDOperand Tmp = getValue(I.getOperand(1)); |
| 1008 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp)); |
| 1009 | return 0; |
| 1010 | } |
Andrew Lenharth | 8b91c77 | 2005-11-11 22:48:54 +0000 | [diff] [blame] | 1011 | case Intrinsic::readcyclecounter: { |
| 1012 | std::vector<MVT::ValueType> VTs; |
| 1013 | VTs.push_back(MVT::i64); |
| 1014 | VTs.push_back(MVT::Other); |
| 1015 | std::vector<SDOperand> Ops; |
| 1016 | Ops.push_back(getRoot()); |
| 1017 | SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops); |
| 1018 | setValue(&I, Tmp); |
| 1019 | DAG.setRoot(Tmp.getValue(1)); |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 1020 | return 0; |
Andrew Lenharth | 8b91c77 | 2005-11-11 22:48:54 +0000 | [diff] [blame] | 1021 | } |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 1022 | case Intrinsic::bswap_i16: |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 1023 | case Intrinsic::bswap_i32: |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 1024 | case Intrinsic::bswap_i64: |
| 1025 | setValue(&I, DAG.getNode(ISD::BSWAP, |
| 1026 | getValue(I.getOperand(1)).getValueType(), |
| 1027 | getValue(I.getOperand(1)))); |
| 1028 | return 0; |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1029 | case Intrinsic::cttz_i8: |
| 1030 | case Intrinsic::cttz_i16: |
| 1031 | case Intrinsic::cttz_i32: |
| 1032 | case Intrinsic::cttz_i64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1033 | setValue(&I, DAG.getNode(ISD::CTTZ, |
| 1034 | getValue(I.getOperand(1)).getValueType(), |
| 1035 | getValue(I.getOperand(1)))); |
| 1036 | return 0; |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1037 | case Intrinsic::ctlz_i8: |
| 1038 | case Intrinsic::ctlz_i16: |
| 1039 | case Intrinsic::ctlz_i32: |
| 1040 | case Intrinsic::ctlz_i64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1041 | setValue(&I, DAG.getNode(ISD::CTLZ, |
| 1042 | getValue(I.getOperand(1)).getValueType(), |
| 1043 | getValue(I.getOperand(1)))); |
| 1044 | return 0; |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1045 | case Intrinsic::ctpop_i8: |
| 1046 | case Intrinsic::ctpop_i16: |
| 1047 | case Intrinsic::ctpop_i32: |
| 1048 | case Intrinsic::ctpop_i64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1049 | setValue(&I, DAG.getNode(ISD::CTPOP, |
| 1050 | getValue(I.getOperand(1)).getValueType(), |
| 1051 | getValue(I.getOperand(1)))); |
| 1052 | return 0; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 1053 | case Intrinsic::stacksave: { |
| 1054 | std::vector<MVT::ValueType> VTs; |
| 1055 | VTs.push_back(TLI.getPointerTy()); |
| 1056 | VTs.push_back(MVT::Other); |
| 1057 | std::vector<SDOperand> Ops; |
| 1058 | Ops.push_back(getRoot()); |
| 1059 | SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops); |
| 1060 | setValue(&I, Tmp); |
| 1061 | DAG.setRoot(Tmp.getValue(1)); |
| 1062 | return 0; |
| 1063 | } |
Chris Lattner | 39a17dd | 2006-01-23 05:22:07 +0000 | [diff] [blame] | 1064 | case Intrinsic::stackrestore: { |
| 1065 | SDOperand Tmp = getValue(I.getOperand(1)); |
| 1066 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp)); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 1067 | return 0; |
Chris Lattner | 39a17dd | 2006-01-23 05:22:07 +0000 | [diff] [blame] | 1068 | } |
Chris Lattner | ac22c83 | 2005-12-12 22:51:16 +0000 | [diff] [blame] | 1069 | case Intrinsic::prefetch: |
| 1070 | // FIXME: Currently discarding prefetches. |
| 1071 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1072 | default: |
| 1073 | std::cerr << I; |
| 1074 | assert(0 && "This intrinsic is not implemented yet!"); |
| 1075 | return 0; |
| 1076 | } |
| 1077 | } |
| 1078 | |
| 1079 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1080 | void SelectionDAGLowering::visitCall(CallInst &I) { |
Chris Lattner | 64e14b1 | 2005-01-08 22:48:57 +0000 | [diff] [blame] | 1081 | const char *RenameFn = 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1082 | if (Function *F = I.getCalledFunction()) { |
Chris Lattner | c0f1815 | 2005-04-02 05:26:53 +0000 | [diff] [blame] | 1083 | if (F->isExternal()) |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1084 | if (unsigned IID = F->getIntrinsicID()) { |
| 1085 | RenameFn = visitIntrinsicCall(I, IID); |
| 1086 | if (!RenameFn) |
| 1087 | return; |
| 1088 | } else { // Not an LLVM intrinsic. |
| 1089 | const std::string &Name = F->getName(); |
| 1090 | if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) { |
Chris Lattner | c0f1815 | 2005-04-02 05:26:53 +0000 | [diff] [blame] | 1091 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 1092 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 1093 | I.getType() == I.getOperand(1)->getType()) { |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1094 | SDOperand Tmp = getValue(I.getOperand(1)); |
Chris Lattner | c0f1815 | 2005-04-02 05:26:53 +0000 | [diff] [blame] | 1095 | setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp)); |
| 1096 | return; |
| 1097 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1098 | } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) { |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1099 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 1100 | I.getOperand(1)->getType()->isFloatingPoint() && |
Chris Lattner | 06a248c9 | 2006-02-14 05:39:35 +0000 | [diff] [blame] | 1101 | I.getType() == I.getOperand(1)->getType()) { |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1102 | SDOperand Tmp = getValue(I.getOperand(1)); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1103 | setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp)); |
| 1104 | return; |
| 1105 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1106 | } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) { |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1107 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 1108 | I.getOperand(1)->getType()->isFloatingPoint() && |
Chris Lattner | 06a248c9 | 2006-02-14 05:39:35 +0000 | [diff] [blame] | 1109 | I.getType() == I.getOperand(1)->getType()) { |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1110 | SDOperand Tmp = getValue(I.getOperand(1)); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1111 | setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp)); |
| 1112 | return; |
| 1113 | } |
| 1114 | } |
Chris Lattner | 1ca85d5 | 2005-05-14 13:56:55 +0000 | [diff] [blame] | 1115 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1116 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 1117 | visitInlineAsm(I); |
| 1118 | return; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1119 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1120 | |
Chris Lattner | 64e14b1 | 2005-01-08 22:48:57 +0000 | [diff] [blame] | 1121 | SDOperand Callee; |
| 1122 | if (!RenameFn) |
| 1123 | Callee = getValue(I.getOperand(0)); |
| 1124 | else |
| 1125 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1126 | std::vector<std::pair<SDOperand, const Type*> > Args; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1127 | Args.reserve(I.getNumOperands()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1128 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 1129 | Value *Arg = I.getOperand(i); |
| 1130 | SDOperand ArgNode = getValue(Arg); |
| 1131 | Args.push_back(std::make_pair(ArgNode, Arg->getType())); |
| 1132 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1133 | |
Nate Begeman | 8e21e71 | 2005-03-26 01:29:23 +0000 | [diff] [blame] | 1134 | const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType()); |
| 1135 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1136 | |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1137 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | 9092fa3 | 2005-05-12 19:56:57 +0000 | [diff] [blame] | 1138 | TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(), |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 1139 | I.isTailCall(), Callee, Args, DAG); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1140 | if (I.getType() != Type::VoidTy) |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1141 | setValue(&I, Result.first); |
| 1142 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1143 | } |
| 1144 | |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1145 | /// GetAvailableRegister - Pick a register from RegChoices that is available |
| 1146 | /// for input and/or output as specified by isOutReg/isInReg. If an allocatable |
| 1147 | /// register is found, it is returned and added to the specified set of used |
| 1148 | /// registers. If not, zero is returned. |
| 1149 | unsigned SelectionDAGLowering:: |
| 1150 | GetAvailableRegister(bool isOutReg, bool isInReg, |
| 1151 | const std::vector<unsigned> &RegChoices, |
| 1152 | std::set<unsigned> &OutputRegs, |
| 1153 | std::set<unsigned> &InputRegs) { |
| 1154 | const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo(); |
| 1155 | MachineFunction &MF = *CurMBB->getParent(); |
| 1156 | for (unsigned i = 0, e = RegChoices.size(); i != e; ++i) { |
| 1157 | unsigned Reg = RegChoices[i]; |
| 1158 | // See if this register is available. |
| 1159 | if (isOutReg && OutputRegs.count(Reg)) continue; // Already used. |
| 1160 | if (isInReg && InputRegs.count(Reg)) continue; // Already used. |
| 1161 | |
| 1162 | // Check to see if this register is allocatable (i.e. don't give out the |
| 1163 | // stack pointer). |
| 1164 | bool Found = false; |
| 1165 | for (MRegisterInfo::regclass_iterator RC = MRI->regclass_begin(), |
| 1166 | E = MRI->regclass_end(); !Found && RC != E; ++RC) { |
| 1167 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 1168 | // frame pointer in functions that need it (due to them not being taken |
| 1169 | // out of allocation, because a variable sized allocation hasn't been seen |
| 1170 | // yet). This is a slight code pessimization, but should still work. |
| 1171 | for (TargetRegisterClass::iterator I = (*RC)->allocation_order_begin(MF), |
| 1172 | E = (*RC)->allocation_order_end(MF); I != E; ++I) |
| 1173 | if (*I == Reg) { |
| 1174 | Found = true; |
| 1175 | break; |
| 1176 | } |
| 1177 | } |
| 1178 | if (!Found) continue; |
| 1179 | |
| 1180 | // Okay, this register is good, return it. |
| 1181 | if (isOutReg) OutputRegs.insert(Reg); // Mark used. |
| 1182 | if (isInReg) InputRegs.insert(Reg); // Mark used. |
| 1183 | return Reg; |
| 1184 | } |
| 1185 | return 0; |
| 1186 | } |
| 1187 | |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1188 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 1189 | /// |
| 1190 | void SelectionDAGLowering::visitInlineAsm(CallInst &I) { |
| 1191 | InlineAsm *IA = cast<InlineAsm>(I.getOperand(0)); |
| 1192 | |
| 1193 | SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), |
| 1194 | MVT::Other); |
| 1195 | |
| 1196 | // Note, we treat inline asms both with and without side-effects as the same. |
| 1197 | // If an inline asm doesn't have side effects and doesn't access memory, we |
| 1198 | // could not choose to not chain it. |
| 1199 | bool hasSideEffects = IA->hasSideEffects(); |
| 1200 | |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1201 | std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints(); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1202 | |
| 1203 | /// AsmNodeOperands - A list of pairs. The first element is a register, the |
| 1204 | /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set |
| 1205 | /// if it is a def of that register. |
| 1206 | std::vector<SDOperand> AsmNodeOperands; |
| 1207 | AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain |
| 1208 | AsmNodeOperands.push_back(AsmStr); |
| 1209 | |
| 1210 | SDOperand Chain = getRoot(); |
| 1211 | SDOperand Flag; |
| 1212 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1213 | // Loop over all of the inputs, copying the operand values into the |
| 1214 | // appropriate registers and processing the output regs. |
| 1215 | unsigned RetValReg = 0; |
| 1216 | std::vector<std::pair<unsigned, Value*> > IndirectStoresToEmit; |
| 1217 | unsigned OpNum = 1; |
| 1218 | bool FoundOutputConstraint = false; |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1219 | |
| 1220 | // We fully assign registers here at isel time. This is not optimal, but |
| 1221 | // should work. For register classes that correspond to LLVM classes, we |
| 1222 | // could let the LLVM RA do its thing, but we currently don't. Do a prepass |
| 1223 | // over the constraints, collecting fixed registers that we know we can't use. |
| 1224 | std::set<unsigned> OutputRegs, InputRegs; |
| 1225 | for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { |
| 1226 | assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!"); |
| 1227 | std::string &ConstraintCode = Constraints[i].Codes[0]; |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1228 | |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1229 | std::vector<unsigned> Regs = |
| 1230 | TLI.getRegForInlineAsmConstraint(ConstraintCode); |
| 1231 | if (Regs.size() != 1) continue; // Not assigned a fixed reg. |
| 1232 | unsigned TheReg = Regs[0]; |
| 1233 | |
| 1234 | switch (Constraints[i].Type) { |
| 1235 | case InlineAsm::isOutput: |
| 1236 | // We can't assign any other output to this register. |
| 1237 | OutputRegs.insert(TheReg); |
| 1238 | // If this is an early-clobber output, it cannot be assigned to the same |
| 1239 | // value as the input reg. |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1240 | if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput) |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1241 | InputRegs.insert(TheReg); |
| 1242 | break; |
| 1243 | case InlineAsm::isClobber: |
| 1244 | // Clobbered regs cannot be used as inputs or outputs. |
| 1245 | InputRegs.insert(TheReg); |
| 1246 | OutputRegs.insert(TheReg); |
| 1247 | break; |
| 1248 | case InlineAsm::isInput: |
| 1249 | // We can't assign any other input to this register. |
| 1250 | InputRegs.insert(TheReg); |
| 1251 | break; |
| 1252 | } |
| 1253 | } |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1254 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1255 | for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1256 | assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!"); |
| 1257 | std::string &ConstraintCode = Constraints[i].Codes[0]; |
| 1258 | switch (Constraints[i].Type) { |
| 1259 | case InlineAsm::isOutput: { |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1260 | // Copy the output from the appropriate register. |
| 1261 | std::vector<unsigned> Regs = |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1262 | TLI.getRegForInlineAsmConstraint(ConstraintCode); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1263 | |
| 1264 | // Find a regsister that we can use. |
| 1265 | unsigned DestReg; |
| 1266 | if (Regs.size() == 1) |
| 1267 | DestReg = Regs[0]; |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1268 | else { |
| 1269 | bool UsesInputRegister = false; |
| 1270 | // If this is an early-clobber output, or if there is an input |
| 1271 | // constraint that matches this, we need to reserve the input register |
| 1272 | // so no other inputs allocate to it. |
| 1273 | if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput) |
| 1274 | UsesInputRegister = true; |
| 1275 | DestReg = GetAvailableRegister(true, UsesInputRegister, |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1276 | Regs, OutputRegs, InputRegs); |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1279 | assert(DestReg && "Couldn't allocate output reg!"); |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1280 | |
| 1281 | const Type *OpTy; |
| 1282 | if (!Constraints[i].isIndirectOutput) { |
| 1283 | assert(!FoundOutputConstraint && |
| 1284 | "Cannot have multiple output constraints yet!"); |
| 1285 | FoundOutputConstraint = true; |
| 1286 | assert(I.getType() != Type::VoidTy && "Bad inline asm!"); |
| 1287 | |
| 1288 | RetValReg = DestReg; |
| 1289 | OpTy = I.getType(); |
| 1290 | } else { |
| 1291 | IndirectStoresToEmit.push_back(std::make_pair(DestReg, |
| 1292 | I.getOperand(OpNum))); |
| 1293 | OpTy = I.getOperand(OpNum)->getType(); |
| 1294 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
| 1295 | OpNum++; // Consumes a call operand. |
| 1296 | } |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1297 | |
| 1298 | // Add information to the INLINEASM node to know that this register is |
| 1299 | // set. |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1300 | AsmNodeOperands.push_back(DAG.getRegister(DestReg, |
| 1301 | TLI.getValueType(OpTy))); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1302 | AsmNodeOperands.push_back(DAG.getConstant(2, MVT::i32)); // ISDEF |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1303 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1304 | break; |
| 1305 | } |
| 1306 | case InlineAsm::isInput: { |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1307 | Value *Operand = I.getOperand(OpNum); |
| 1308 | const Type *OpTy = Operand->getType(); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1309 | OpNum++; // Consumes a call operand. |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1310 | |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1311 | unsigned SrcReg; |
Chris Lattner | 3d81fee | 2006-02-04 02:16:44 +0000 | [diff] [blame] | 1312 | SDOperand ResOp; |
| 1313 | unsigned ResOpType; |
| 1314 | SDOperand InOperandVal = getValue(Operand); |
| 1315 | |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1316 | if (isdigit(ConstraintCode[0])) { // Matching constraint? |
| 1317 | // If this is required to match an output register we have already set, |
| 1318 | // just use its register. |
| 1319 | unsigned OperandNo = atoi(ConstraintCode.c_str()); |
| 1320 | SrcReg = cast<RegisterSDNode>(AsmNodeOperands[OperandNo*2+2])->getReg(); |
Chris Lattner | 3d81fee | 2006-02-04 02:16:44 +0000 | [diff] [blame] | 1321 | ResOp = DAG.getRegister(SrcReg, TLI.getValueType(OpTy)); |
| 1322 | ResOpType = 1; |
| 1323 | |
| 1324 | Chain = DAG.getCopyToReg(Chain, SrcReg, InOperandVal, Flag); |
| 1325 | Flag = Chain.getValue(1); |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1326 | } else { |
Chris Lattner | 3d81fee | 2006-02-04 02:16:44 +0000 | [diff] [blame] | 1327 | TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass; |
| 1328 | if (ConstraintCode.size() == 1) // not a physreg name. |
| 1329 | CTy = TLI.getConstraintType(ConstraintCode[0]); |
| 1330 | |
| 1331 | switch (CTy) { |
| 1332 | default: assert(0 && "Unknown constraint type! FAIL!"); |
| 1333 | case TargetLowering::C_RegisterClass: { |
| 1334 | // Copy the input into the appropriate register. |
| 1335 | std::vector<unsigned> Regs = |
| 1336 | TLI.getRegForInlineAsmConstraint(ConstraintCode); |
| 1337 | if (Regs.size() == 1) |
| 1338 | SrcReg = Regs[0]; |
| 1339 | else |
| 1340 | SrcReg = GetAvailableRegister(false, true, Regs, |
| 1341 | OutputRegs, InputRegs); |
| 1342 | // FIXME: should be match fail. |
| 1343 | assert(SrcReg && "Wasn't able to allocate register!"); |
| 1344 | Chain = DAG.getCopyToReg(Chain, SrcReg, InOperandVal, Flag); |
| 1345 | Flag = Chain.getValue(1); |
| 1346 | |
| 1347 | ResOp = DAG.getRegister(SrcReg, TLI.getValueType(OpTy)); |
| 1348 | ResOpType = 1; |
| 1349 | break; |
| 1350 | } |
| 1351 | case TargetLowering::C_Other: |
| 1352 | if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0])) |
| 1353 | assert(0 && "MATCH FAIL!"); |
| 1354 | ResOp = InOperandVal; |
| 1355 | ResOpType = 3; |
| 1356 | break; |
| 1357 | } |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 1358 | } |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1359 | |
Chris Lattner | 3d81fee | 2006-02-04 02:16:44 +0000 | [diff] [blame] | 1360 | // Add information to the INLINEASM node to know about this input. |
| 1361 | AsmNodeOperands.push_back(ResOp); |
Chris Lattner | dc19b70 | 2006-02-04 02:26:14 +0000 | [diff] [blame] | 1362 | AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32)); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1363 | break; |
| 1364 | } |
| 1365 | case InlineAsm::isClobber: |
| 1366 | // Nothing to do. |
| 1367 | break; |
| 1368 | } |
| 1369 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1370 | |
| 1371 | // Finish up input operands. |
| 1372 | AsmNodeOperands[0] = Chain; |
| 1373 | if (Flag.Val) AsmNodeOperands.push_back(Flag); |
| 1374 | |
| 1375 | std::vector<MVT::ValueType> VTs; |
| 1376 | VTs.push_back(MVT::Other); |
| 1377 | VTs.push_back(MVT::Flag); |
| 1378 | Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands); |
| 1379 | Flag = Chain.getValue(1); |
| 1380 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1381 | // If this asm returns a register value, copy the result from that register |
| 1382 | // and set it as the value of the call. |
| 1383 | if (RetValReg) { |
| 1384 | SDOperand Val = DAG.getCopyFromReg(Chain, RetValReg, |
| 1385 | TLI.getValueType(I.getType()), Flag); |
| 1386 | Chain = Val.getValue(1); |
| 1387 | Flag = Val.getValue(2); |
| 1388 | setValue(&I, Val); |
| 1389 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1390 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1391 | std::vector<std::pair<SDOperand, Value*> > StoresToEmit; |
| 1392 | |
| 1393 | // Process indirect outputs, first output all of the flagged copies out of |
| 1394 | // physregs. |
| 1395 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 1396 | Value *Ptr = IndirectStoresToEmit[i].second; |
| 1397 | const Type *Ty = cast<PointerType>(Ptr->getType())->getElementType(); |
| 1398 | SDOperand Val = DAG.getCopyFromReg(Chain, IndirectStoresToEmit[i].first, |
| 1399 | TLI.getValueType(Ty), Flag); |
| 1400 | Chain = Val.getValue(1); |
| 1401 | Flag = Val.getValue(2); |
| 1402 | StoresToEmit.push_back(std::make_pair(Val, Ptr)); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | // Emit the non-flagged stores from the physregs. |
| 1406 | std::vector<SDOperand> OutChains; |
| 1407 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
| 1408 | OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain, |
| 1409 | StoresToEmit[i].first, |
| 1410 | getValue(StoresToEmit[i].second), |
| 1411 | DAG.getSrcValue(StoresToEmit[i].second))); |
| 1412 | if (!OutChains.empty()) |
| 1413 | Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1414 | DAG.setRoot(Chain); |
| 1415 | } |
| 1416 | |
| 1417 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1418 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 1419 | SDOperand Src = getValue(I.getOperand(0)); |
| 1420 | |
| 1421 | MVT::ValueType IntPtr = TLI.getPointerTy(); |
Chris Lattner | 68cd65e | 2005-01-22 23:04:37 +0000 | [diff] [blame] | 1422 | |
| 1423 | if (IntPtr < Src.getValueType()) |
| 1424 | Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src); |
| 1425 | else if (IntPtr > Src.getValueType()) |
| 1426 | Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1427 | |
| 1428 | // Scale the source by the type size. |
| 1429 | uint64_t ElementSize = TD.getTypeSize(I.getType()->getElementType()); |
| 1430 | Src = DAG.getNode(ISD::MUL, Src.getValueType(), |
| 1431 | Src, getIntPtrConstant(ElementSize)); |
| 1432 | |
| 1433 | std::vector<std::pair<SDOperand, const Type*> > Args; |
| 1434 | Args.push_back(std::make_pair(Src, TLI.getTargetData().getIntPtrType())); |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1435 | |
| 1436 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 1437 | TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true, |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1438 | DAG.getExternalSymbol("malloc", IntPtr), |
| 1439 | Args, DAG); |
| 1440 | setValue(&I, Result.first); // Pointers always fit in registers |
| 1441 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 1445 | std::vector<std::pair<SDOperand, const Type*> > Args; |
| 1446 | Args.push_back(std::make_pair(getValue(I.getOperand(0)), |
| 1447 | TLI.getTargetData().getIntPtrType())); |
| 1448 | MVT::ValueType IntPtr = TLI.getPointerTy(); |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1449 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 1450 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true, |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1451 | DAG.getExternalSymbol("free", IntPtr), Args, DAG); |
| 1452 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1453 | } |
| 1454 | |
Chris Lattner | 025c39b | 2005-08-26 20:54:47 +0000 | [diff] [blame] | 1455 | // InsertAtEndOfBasicBlock - This method should be implemented by targets that |
| 1456 | // mark instructions with the 'usesCustomDAGSchedInserter' flag. These |
| 1457 | // instructions are special in various ways, which require special support to |
| 1458 | // insert. The specified MachineInstr is created but not inserted into any |
| 1459 | // basic blocks, and the scheduler passes ownership of it to this method. |
| 1460 | MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI, |
| 1461 | MachineBasicBlock *MBB) { |
| 1462 | std::cerr << "If a target marks an instruction with " |
| 1463 | "'usesCustomDAGSchedInserter', it must implement " |
| 1464 | "TargetLowering::InsertAtEndOfBasicBlock!\n"; |
| 1465 | abort(); |
| 1466 | return 0; |
| 1467 | } |
| 1468 | |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 1469 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 1470 | DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(), |
| 1471 | getValue(I.getOperand(1)), |
| 1472 | DAG.getSrcValue(I.getOperand(1)))); |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 1476 | SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(), |
| 1477 | getValue(I.getOperand(0)), |
| 1478 | DAG.getSrcValue(I.getOperand(0))); |
| 1479 | setValue(&I, V); |
| 1480 | DAG.setRoot(V.getValue(1)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1481 | } |
| 1482 | |
| 1483 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 1484 | DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(), |
| 1485 | getValue(I.getOperand(1)), |
| 1486 | DAG.getSrcValue(I.getOperand(1)))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 1490 | DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(), |
| 1491 | getValue(I.getOperand(1)), |
| 1492 | getValue(I.getOperand(2)), |
| 1493 | DAG.getSrcValue(I.getOperand(1)), |
| 1494 | DAG.getSrcValue(I.getOperand(2)))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1495 | } |
| 1496 | |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 1497 | // It is always conservatively correct for llvm.returnaddress and |
| 1498 | // llvm.frameaddress to return 0. |
| 1499 | std::pair<SDOperand, SDOperand> |
| 1500 | TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, |
| 1501 | unsigned Depth, SelectionDAG &DAG) { |
| 1502 | return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1503 | } |
| 1504 | |
Chris Lattner | 50381b6 | 2005-05-14 05:50:48 +0000 | [diff] [blame] | 1505 | SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) { |
Chris Lattner | 171453a | 2005-01-16 07:28:41 +0000 | [diff] [blame] | 1506 | assert(0 && "LowerOperation not implemented for this target!"); |
| 1507 | abort(); |
Misha Brukman | d3f03e4 | 2005-02-17 21:39:27 +0000 | [diff] [blame] | 1508 | return SDOperand(); |
Chris Lattner | 171453a | 2005-01-16 07:28:41 +0000 | [diff] [blame] | 1509 | } |
| 1510 | |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 1511 | SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op, |
| 1512 | SelectionDAG &DAG) { |
| 1513 | assert(0 && "CustomPromoteOperation not implemented for this target!"); |
| 1514 | abort(); |
| 1515 | return SDOperand(); |
| 1516 | } |
| 1517 | |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 1518 | void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) { |
| 1519 | unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue(); |
| 1520 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 1521 | TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG); |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 1522 | setValue(&I, Result.first); |
| 1523 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1524 | } |
| 1525 | |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1526 | /// getMemSetValue - Vectorized representation of the memset value |
| 1527 | /// operand. |
| 1528 | static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT, |
| 1529 | SelectionDAG &DAG) { |
| 1530 | if (VT == MVT::i8) |
| 1531 | return Value; |
| 1532 | |
| 1533 | MVT::ValueType CurVT = VT; |
| 1534 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) { |
| 1535 | uint64_t Val = C->getValue() & 255; |
| 1536 | unsigned Shift = 8; |
| 1537 | while (CurVT != MVT::i8) { |
| 1538 | Val = (Val << Shift) | Val; |
| 1539 | Shift <<= 1; |
| 1540 | CurVT = (MVT::ValueType)((unsigned)CurVT - 1); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1541 | } |
| 1542 | return DAG.getConstant(Val, VT); |
| 1543 | } else { |
| 1544 | Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value); |
| 1545 | unsigned Shift = 8; |
| 1546 | while (CurVT != MVT::i8) { |
| 1547 | Value = |
| 1548 | DAG.getNode(ISD::OR, VT, |
| 1549 | DAG.getNode(ISD::SHL, VT, Value, |
| 1550 | DAG.getConstant(Shift, MVT::i8)), Value); |
| 1551 | Shift <<= 1; |
| 1552 | CurVT = (MVT::ValueType)((unsigned)CurVT - 1); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1553 | } |
| 1554 | |
| 1555 | return Value; |
| 1556 | } |
| 1557 | } |
| 1558 | |
| 1559 | /// getMemBasePlusOffset - Returns base and offset node for the |
| 1560 | static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset, |
| 1561 | SelectionDAG &DAG, TargetLowering &TLI) { |
| 1562 | MVT::ValueType VT = Base.getValueType(); |
| 1563 | return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT)); |
| 1564 | } |
| 1565 | |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame^] | 1566 | /// MeetMaxMemopRequirement - Determines if the number of memory ops required |
| 1567 | /// to replace the memset / memcpy is below the threshold. It also returns the |
| 1568 | /// types of the sequence of memory ops to perform memset / memcpy. |
| 1569 | static bool MeetMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps, |
| 1570 | unsigned Limit, |
| 1571 | uint64_t Size, unsigned Align, TargetLowering &TLI) { |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1572 | MVT::ValueType VT; |
| 1573 | |
| 1574 | if (TLI.allowsUnalignedMemoryAccesses()) { |
| 1575 | VT = MVT::i64; |
| 1576 | } else { |
| 1577 | switch (Align & 7) { |
| 1578 | case 0: |
| 1579 | VT = MVT::i64; |
| 1580 | break; |
| 1581 | case 4: |
| 1582 | VT = MVT::i32; |
| 1583 | break; |
| 1584 | case 2: |
| 1585 | VT = MVT::i16; |
| 1586 | break; |
| 1587 | default: |
| 1588 | VT = MVT::i8; |
| 1589 | break; |
| 1590 | } |
| 1591 | } |
| 1592 | |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame^] | 1593 | MVT::ValueType LVT = MVT::i64; |
| 1594 | while (!TLI.isTypeLegal(LVT)) |
| 1595 | LVT = (MVT::ValueType)((unsigned)LVT - 1); |
| 1596 | assert(MVT::isInteger(LVT)); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1597 | |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame^] | 1598 | if (VT > LVT) |
| 1599 | VT = LVT; |
| 1600 | |
| 1601 | unsigned NumMemOps; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1602 | while (Size != 0) { |
| 1603 | unsigned VTSize = getSizeInBits(VT) / 8; |
| 1604 | while (VTSize > Size) { |
| 1605 | VT = (MVT::ValueType)((unsigned)VT - 1); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1606 | VTSize >>= 1; |
| 1607 | } |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame^] | 1608 | assert(MVT::isInteger(VT)); |
| 1609 | |
| 1610 | if (++NumMemOps > Limit) |
| 1611 | return false; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1612 | MemOps.push_back(VT); |
| 1613 | Size -= VTSize; |
| 1614 | } |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame^] | 1615 | |
| 1616 | return true; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1617 | } |
| 1618 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 1619 | void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) { |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1620 | SDOperand Op1 = getValue(I.getOperand(1)); |
| 1621 | SDOperand Op2 = getValue(I.getOperand(2)); |
| 1622 | SDOperand Op3 = getValue(I.getOperand(3)); |
| 1623 | SDOperand Op4 = getValue(I.getOperand(4)); |
| 1624 | unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue(); |
| 1625 | if (Align == 0) Align = 1; |
| 1626 | |
| 1627 | if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) { |
| 1628 | std::vector<MVT::ValueType> MemOps; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1629 | |
| 1630 | // Expand memset / memcpy to a series of load / store ops |
| 1631 | // if the size operand falls below a certain threshold. |
| 1632 | std::vector<SDOperand> OutChains; |
| 1633 | switch (Op) { |
| 1634 | default: ; // Do nothing for now. |
| 1635 | case ISD::MEMSET: { |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame^] | 1636 | if (MeetMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(), |
| 1637 | Size->getValue(), Align, TLI)) { |
| 1638 | unsigned NumMemOps = MemOps.size(); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1639 | unsigned Offset = 0; |
| 1640 | for (unsigned i = 0; i < NumMemOps; i++) { |
| 1641 | MVT::ValueType VT = MemOps[i]; |
| 1642 | unsigned VTSize = getSizeInBits(VT) / 8; |
| 1643 | SDOperand Value = getMemsetValue(Op2, VT, DAG); |
| 1644 | OutChains. |
| 1645 | push_back(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), |
| 1646 | Value, |
| 1647 | getMemBasePlusOffset(Op1, Offset, DAG, TLI), |
| 1648 | DAG.getSrcValue(NULL))); |
| 1649 | Offset += VTSize; |
| 1650 | } |
| 1651 | |
| 1652 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains)); |
| 1653 | return; |
| 1654 | } |
| 1655 | } |
| 1656 | } |
| 1657 | } |
| 1658 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 1659 | std::vector<SDOperand> Ops; |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 1660 | Ops.push_back(getRoot()); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 1661 | Ops.push_back(Op1); |
| 1662 | Ops.push_back(Op2); |
| 1663 | Ops.push_back(Op3); |
| 1664 | Ops.push_back(Op4); |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 1665 | DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1666 | } |
| 1667 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 1668 | //===----------------------------------------------------------------------===// |
| 1669 | // SelectionDAGISel code |
| 1670 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1671 | |
| 1672 | unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) { |
| 1673 | return RegMap->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 1674 | } |
| 1675 | |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 1676 | void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 1677 | // FIXME: we only modify the CFG to split critical edges. This |
| 1678 | // updates dom and loop info. |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 1679 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1680 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1681 | |
| 1682 | /// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset, |
| 1683 | /// casting to the type of GEPI. |
| 1684 | static Value *InsertGEPComputeCode(Value *&V, BasicBlock *BB, Instruction *GEPI, |
| 1685 | Value *Ptr, Value *PtrOffset) { |
| 1686 | if (V) return V; // Already computed. |
| 1687 | |
| 1688 | BasicBlock::iterator InsertPt; |
| 1689 | if (BB == GEPI->getParent()) { |
| 1690 | // If insert into the GEP's block, insert right after the GEP. |
| 1691 | InsertPt = GEPI; |
| 1692 | ++InsertPt; |
| 1693 | } else { |
| 1694 | // Otherwise, insert at the top of BB, after any PHI nodes |
| 1695 | InsertPt = BB->begin(); |
| 1696 | while (isa<PHINode>(InsertPt)) ++InsertPt; |
| 1697 | } |
| 1698 | |
Chris Lattner | c78b0b7 | 2005-12-08 08:00:12 +0000 | [diff] [blame] | 1699 | // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into |
| 1700 | // BB so that there is only one value live across basic blocks (the cast |
| 1701 | // operand). |
| 1702 | if (CastInst *CI = dyn_cast<CastInst>(Ptr)) |
| 1703 | if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType())) |
| 1704 | Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt); |
| 1705 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1706 | // Add the offset, cast it to the right type. |
| 1707 | Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt); |
| 1708 | Ptr = new CastInst(Ptr, GEPI->getType(), "", InsertPt); |
| 1709 | return V = Ptr; |
| 1710 | } |
| 1711 | |
| 1712 | |
| 1713 | /// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction |
| 1714 | /// selection, we want to be a bit careful about some things. In particular, if |
| 1715 | /// we have a GEP instruction that is used in a different block than it is |
| 1716 | /// defined, the addressing expression of the GEP cannot be folded into loads or |
| 1717 | /// stores that use it. In this case, decompose the GEP and move constant |
| 1718 | /// indices into blocks that use it. |
| 1719 | static void OptimizeGEPExpression(GetElementPtrInst *GEPI, |
| 1720 | const TargetData &TD) { |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1721 | // If this GEP is only used inside the block it is defined in, there is no |
| 1722 | // need to rewrite it. |
| 1723 | bool isUsedOutsideDefBB = false; |
| 1724 | BasicBlock *DefBB = GEPI->getParent(); |
| 1725 | for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end(); |
| 1726 | UI != E; ++UI) { |
| 1727 | if (cast<Instruction>(*UI)->getParent() != DefBB) { |
| 1728 | isUsedOutsideDefBB = true; |
| 1729 | break; |
| 1730 | } |
| 1731 | } |
| 1732 | if (!isUsedOutsideDefBB) return; |
| 1733 | |
| 1734 | // If this GEP has no non-zero constant indices, there is nothing we can do, |
| 1735 | // ignore it. |
| 1736 | bool hasConstantIndex = false; |
| 1737 | for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1, |
| 1738 | E = GEPI->op_end(); OI != E; ++OI) { |
| 1739 | if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) |
| 1740 | if (CI->getRawValue()) { |
| 1741 | hasConstantIndex = true; |
| 1742 | break; |
| 1743 | } |
| 1744 | } |
Chris Lattner | 3802c25 | 2005-12-11 09:05:13 +0000 | [diff] [blame] | 1745 | // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses. |
| 1746 | if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0))) return; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1747 | |
| 1748 | // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the |
| 1749 | // constant offset (which we now know is non-zero) and deal with it later. |
| 1750 | uint64_t ConstantOffset = 0; |
| 1751 | const Type *UIntPtrTy = TD.getIntPtrType(); |
| 1752 | Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI); |
| 1753 | const Type *Ty = GEPI->getOperand(0)->getType(); |
| 1754 | |
| 1755 | for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1, |
| 1756 | E = GEPI->op_end(); OI != E; ++OI) { |
| 1757 | Value *Idx = *OI; |
| 1758 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 1759 | unsigned Field = cast<ConstantUInt>(Idx)->getValue(); |
| 1760 | if (Field) |
| 1761 | ConstantOffset += TD.getStructLayout(StTy)->MemberOffsets[Field]; |
| 1762 | Ty = StTy->getElementType(Field); |
| 1763 | } else { |
| 1764 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 1765 | |
| 1766 | // Handle constant subscripts. |
| 1767 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 1768 | if (CI->getRawValue() == 0) continue; |
| 1769 | |
| 1770 | if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI)) |
| 1771 | ConstantOffset += (int64_t)TD.getTypeSize(Ty)*CSI->getValue(); |
| 1772 | else |
| 1773 | ConstantOffset+=TD.getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue(); |
| 1774 | continue; |
| 1775 | } |
| 1776 | |
| 1777 | // Ptr = Ptr + Idx * ElementSize; |
| 1778 | |
| 1779 | // Cast Idx to UIntPtrTy if needed. |
| 1780 | Idx = new CastInst(Idx, UIntPtrTy, "", GEPI); |
| 1781 | |
| 1782 | uint64_t ElementSize = TD.getTypeSize(Ty); |
| 1783 | // Mask off bits that should not be set. |
| 1784 | ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits()); |
| 1785 | Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize); |
| 1786 | |
| 1787 | // Multiply by the element size and add to the base. |
| 1788 | Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI); |
| 1789 | Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI); |
| 1790 | } |
| 1791 | } |
| 1792 | |
| 1793 | // Make sure that the offset fits in uintptr_t. |
| 1794 | ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits()); |
| 1795 | Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset); |
| 1796 | |
| 1797 | // Okay, we have now emitted all of the variable index parts to the BB that |
| 1798 | // the GEP is defined in. Loop over all of the using instructions, inserting |
| 1799 | // an "add Ptr, ConstantOffset" into each block that uses it and update the |
Chris Lattner | c78b0b7 | 2005-12-08 08:00:12 +0000 | [diff] [blame] | 1800 | // instruction to use the newly computed value, making GEPI dead. When the |
| 1801 | // user is a load or store instruction address, we emit the add into the user |
| 1802 | // block, otherwise we use a canonical version right next to the gep (these |
| 1803 | // won't be foldable as addresses, so we might as well share the computation). |
| 1804 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1805 | std::map<BasicBlock*,Value*> InsertedExprs; |
| 1806 | while (!GEPI->use_empty()) { |
| 1807 | Instruction *User = cast<Instruction>(GEPI->use_back()); |
Chris Lattner | c78b0b7 | 2005-12-08 08:00:12 +0000 | [diff] [blame] | 1808 | |
| 1809 | // If this use is not foldable into the addressing mode, use a version |
| 1810 | // emitted in the GEP block. |
| 1811 | Value *NewVal; |
| 1812 | if (!isa<LoadInst>(User) && |
| 1813 | (!isa<StoreInst>(User) || User->getOperand(0) == GEPI)) { |
| 1814 | NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI, |
| 1815 | Ptr, PtrOffset); |
| 1816 | } else { |
| 1817 | // Otherwise, insert the code in the User's block so it can be folded into |
| 1818 | // any users in that block. |
| 1819 | NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()], |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1820 | User->getParent(), GEPI, |
| 1821 | Ptr, PtrOffset); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1822 | } |
Chris Lattner | c78b0b7 | 2005-12-08 08:00:12 +0000 | [diff] [blame] | 1823 | User->replaceUsesOfWith(GEPI, NewVal); |
| 1824 | } |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1825 | |
| 1826 | // Finally, the GEP is dead, remove it. |
| 1827 | GEPI->eraseFromParent(); |
| 1828 | } |
| 1829 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1830 | bool SelectionDAGISel::runOnFunction(Function &Fn) { |
| 1831 | MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine()); |
| 1832 | RegMap = MF.getSSARegMap(); |
| 1833 | DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n"); |
| 1834 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1835 | // First, split all critical edges for PHI nodes with incoming values that are |
| 1836 | // constants, this way the load of the constant into a vreg will not be placed |
| 1837 | // into MBBs that are used some other way. |
| 1838 | // |
| 1839 | // In this pass we also look for GEP instructions that are used across basic |
| 1840 | // blocks and rewrites them to improve basic-block-at-a-time selection. |
| 1841 | // |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 1842 | for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) { |
| 1843 | PHINode *PN; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1844 | BasicBlock::iterator BBI; |
| 1845 | for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI) |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 1846 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 1847 | if (isa<Constant>(PN->getIncomingValue(i))) |
| 1848 | SplitCriticalEdge(PN->getIncomingBlock(i), BB); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1849 | |
| 1850 | for (BasicBlock::iterator E = BB->end(); BBI != E; ) |
| 1851 | if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(BBI++)) |
| 1852 | OptimizeGEPExpression(GEPI, TLI.getTargetData()); |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 1853 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1854 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1855 | FunctionLoweringInfo FuncInfo(TLI, Fn, MF); |
| 1856 | |
| 1857 | for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) |
| 1858 | SelectBasicBlock(I, MF, FuncInfo); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1859 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1860 | return true; |
| 1861 | } |
| 1862 | |
| 1863 | |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 1864 | SDOperand SelectionDAGISel:: |
| 1865 | CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) { |
Chris Lattner | f1fdaca | 2005-01-11 22:03:46 +0000 | [diff] [blame] | 1866 | SDOperand Op = SDL.getValue(V); |
Chris Lattner | 18c2f13 | 2005-01-13 20:50:02 +0000 | [diff] [blame] | 1867 | assert((Op.getOpcode() != ISD::CopyFromReg || |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 1868 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
Chris Lattner | 18c2f13 | 2005-01-13 20:50:02 +0000 | [diff] [blame] | 1869 | "Copy from a reg to the same reg!"); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 1870 | |
| 1871 | // If this type is not legal, we must make sure to not create an invalid |
| 1872 | // register use. |
| 1873 | MVT::ValueType SrcVT = Op.getValueType(); |
| 1874 | MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT); |
| 1875 | SelectionDAG &DAG = SDL.DAG; |
| 1876 | if (SrcVT == DestVT) { |
| 1877 | return DAG.getCopyToReg(SDL.getRoot(), Reg, Op); |
| 1878 | } else if (SrcVT < DestVT) { |
| 1879 | // The src value is promoted to the register. |
Chris Lattner | fae59b9 | 2005-08-17 06:06:25 +0000 | [diff] [blame] | 1880 | if (MVT::isFloatingPoint(SrcVT)) |
| 1881 | Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op); |
| 1882 | else |
Chris Lattner | fab0887 | 2005-09-02 00:19:37 +0000 | [diff] [blame] | 1883 | Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 1884 | return DAG.getCopyToReg(SDL.getRoot(), Reg, Op); |
| 1885 | } else { |
| 1886 | // The src value is expanded into multiple registers. |
| 1887 | SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT, |
| 1888 | Op, DAG.getConstant(0, MVT::i32)); |
| 1889 | SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT, |
| 1890 | Op, DAG.getConstant(1, MVT::i32)); |
| 1891 | Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo); |
| 1892 | return DAG.getCopyToReg(Op, Reg+1, Hi); |
| 1893 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1894 | } |
| 1895 | |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 1896 | void SelectionDAGISel:: |
| 1897 | LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL, |
| 1898 | std::vector<SDOperand> &UnorderedChains) { |
| 1899 | // If this is the entry block, emit arguments. |
| 1900 | Function &F = *BB->getParent(); |
Chris Lattner | 0afa8e3 | 2005-01-17 17:55:19 +0000 | [diff] [blame] | 1901 | FunctionLoweringInfo &FuncInfo = SDL.FuncInfo; |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 1902 | SDOperand OldRoot = SDL.DAG.getRoot(); |
| 1903 | std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG); |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 1904 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 1905 | unsigned a = 0; |
| 1906 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 1907 | AI != E; ++AI, ++a) |
| 1908 | if (!AI->use_empty()) { |
| 1909 | SDL.setValue(AI, Args[a]); |
Chris Lattner | fa57702 | 2005-09-13 19:30:54 +0000 | [diff] [blame] | 1910 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 1911 | // If this argument is live outside of the entry block, insert a copy from |
| 1912 | // whereever we got it to the vreg that other BB's will reference it as. |
| 1913 | if (FuncInfo.ValueMap.count(AI)) { |
| 1914 | SDOperand Copy = |
| 1915 | CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]); |
| 1916 | UnorderedChains.push_back(Copy); |
| 1917 | } |
Chris Lattner | 0afa8e3 | 2005-01-17 17:55:19 +0000 | [diff] [blame] | 1918 | } |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 1919 | |
| 1920 | // Next, if the function has live ins that need to be copied into vregs, |
| 1921 | // emit the copies now, into the top of the block. |
| 1922 | MachineFunction &MF = SDL.DAG.getMachineFunction(); |
| 1923 | if (MF.livein_begin() != MF.livein_end()) { |
| 1924 | SSARegMap *RegMap = MF.getSSARegMap(); |
| 1925 | const MRegisterInfo &MRI = *MF.getTarget().getRegisterInfo(); |
| 1926 | for (MachineFunction::livein_iterator LI = MF.livein_begin(), |
| 1927 | E = MF.livein_end(); LI != E; ++LI) |
| 1928 | if (LI->second) |
| 1929 | MRI.copyRegToReg(*MF.begin(), MF.begin()->end(), LI->second, |
| 1930 | LI->first, RegMap->getRegClass(LI->second)); |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 1931 | } |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 1932 | |
| 1933 | // Finally, if the target has anything special to do, allow it to do so. |
| 1934 | EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction()); |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 1935 | } |
| 1936 | |
| 1937 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1938 | void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB, |
| 1939 | std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate, |
| 1940 | FunctionLoweringInfo &FuncInfo) { |
| 1941 | SelectionDAGLowering SDL(DAG, TLI, FuncInfo); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 1942 | |
| 1943 | std::vector<SDOperand> UnorderedChains; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1944 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 1945 | // Lower any arguments needed in this block if this is the entry block. |
| 1946 | if (LLVMBB == &LLVMBB->getParent()->front()) |
| 1947 | LowerArguments(LLVMBB, SDL, UnorderedChains); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1948 | |
| 1949 | BB = FuncInfo.MBBMap[LLVMBB]; |
| 1950 | SDL.setCurrentBasicBlock(BB); |
| 1951 | |
| 1952 | // Lower all of the non-terminator instructions. |
| 1953 | for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end(); |
| 1954 | I != E; ++I) |
| 1955 | SDL.visit(*I); |
| 1956 | |
| 1957 | // Ensure that all instructions which are used outside of their defining |
| 1958 | // blocks are available as virtual registers. |
| 1959 | for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I) |
Chris Lattner | f1fdaca | 2005-01-11 22:03:46 +0000 | [diff] [blame] | 1960 | if (!I->use_empty() && !isa<PHINode>(I)) { |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 1961 | std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1962 | if (VMI != FuncInfo.ValueMap.end()) |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 1963 | UnorderedChains.push_back( |
| 1964 | CopyValueToVirtualRegister(SDL, I, VMI->second)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1965 | } |
| 1966 | |
| 1967 | // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 1968 | // ensure constants are generated when needed. Remember the virtual registers |
| 1969 | // that need to be added to the Machine PHI nodes as input. We cannot just |
| 1970 | // directly add them, because expansion might result in multiple MBB's for one |
| 1971 | // BB. As such, the start of the BB might correspond to a different MBB than |
| 1972 | // the end. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1973 | // |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1974 | |
| 1975 | // Emit constants only once even if used by multiple PHI nodes. |
| 1976 | std::map<Constant*, unsigned> ConstantsOut; |
| 1977 | |
| 1978 | // Check successor nodes PHI nodes that expect a constant to be available from |
| 1979 | // this block. |
| 1980 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 1981 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 1982 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 1983 | MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin(); |
| 1984 | PHINode *PN; |
| 1985 | |
| 1986 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 1987 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 1988 | // emitted yet. |
| 1989 | for (BasicBlock::iterator I = SuccBB->begin(); |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 1990 | (PN = dyn_cast<PHINode>(I)); ++I) |
| 1991 | if (!PN->use_empty()) { |
| 1992 | unsigned Reg; |
| 1993 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 1994 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 1995 | unsigned &RegOut = ConstantsOut[C]; |
| 1996 | if (RegOut == 0) { |
| 1997 | RegOut = FuncInfo.CreateRegForValue(C); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 1998 | UnorderedChains.push_back( |
| 1999 | CopyValueToVirtualRegister(SDL, C, RegOut)); |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 2000 | } |
| 2001 | Reg = RegOut; |
| 2002 | } else { |
| 2003 | Reg = FuncInfo.ValueMap[PHIOp]; |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 2004 | if (Reg == 0) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2005 | assert(isa<AllocaInst>(PHIOp) && |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 2006 | FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 2007 | "Didn't codegen value into a register!??"); |
| 2008 | Reg = FuncInfo.CreateRegForValue(PHIOp); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 2009 | UnorderedChains.push_back( |
| 2010 | CopyValueToVirtualRegister(SDL, PHIOp, Reg)); |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 2011 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2012 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2013 | |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 2014 | // Remember that this register needs to added to the machine PHI node as |
| 2015 | // the input for this MBB. |
| 2016 | unsigned NumElements = |
| 2017 | TLI.getNumElements(TLI.getValueType(PN->getType())); |
| 2018 | for (unsigned i = 0, e = NumElements; i != e; ++i) |
| 2019 | PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2020 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2021 | } |
| 2022 | ConstantsOut.clear(); |
| 2023 | |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 2024 | // Turn all of the unordered chains into one factored node. |
Chris Lattner | 5a6c6d9 | 2005-01-13 19:53:14 +0000 | [diff] [blame] | 2025 | if (!UnorderedChains.empty()) { |
Chris Lattner | 7436b57 | 2005-11-09 05:03:03 +0000 | [diff] [blame] | 2026 | SDOperand Root = SDL.getRoot(); |
| 2027 | if (Root.getOpcode() != ISD::EntryToken) { |
| 2028 | unsigned i = 0, e = UnorderedChains.size(); |
| 2029 | for (; i != e; ++i) { |
| 2030 | assert(UnorderedChains[i].Val->getNumOperands() > 1); |
| 2031 | if (UnorderedChains[i].Val->getOperand(0) == Root) |
| 2032 | break; // Don't add the root if we already indirectly depend on it. |
| 2033 | } |
| 2034 | |
| 2035 | if (i == e) |
| 2036 | UnorderedChains.push_back(Root); |
| 2037 | } |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 2038 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains)); |
| 2039 | } |
| 2040 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2041 | // Lower the terminator after the copies are emitted. |
| 2042 | SDL.visit(*LLVMBB->getTerminator()); |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 2043 | |
| 2044 | // Make sure the root of the DAG is up-to-date. |
| 2045 | DAG.setRoot(SDL.getRoot()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2046 | } |
| 2047 | |
| 2048 | void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF, |
| 2049 | FunctionLoweringInfo &FuncInfo) { |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 2050 | SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2051 | CurDAG = &DAG; |
| 2052 | std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate; |
| 2053 | |
| 2054 | // First step, lower LLVM code to some DAG. This DAG may use operations and |
| 2055 | // types that are not supported by the target. |
| 2056 | BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo); |
| 2057 | |
Chris Lattner | af21d55 | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 2058 | // Run the DAG combiner in pre-legalize mode. |
| 2059 | DAG.Combine(false); |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 2060 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2061 | DEBUG(std::cerr << "Lowered selection DAG:\n"); |
| 2062 | DEBUG(DAG.dump()); |
| 2063 | |
| 2064 | // Second step, hack on the DAG until it only uses operations and types that |
| 2065 | // the target supports. |
Chris Lattner | ac9dc08 | 2005-01-23 04:36:26 +0000 | [diff] [blame] | 2066 | DAG.Legalize(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2067 | |
| 2068 | DEBUG(std::cerr << "Legalized selection DAG:\n"); |
| 2069 | DEBUG(DAG.dump()); |
| 2070 | |
Chris Lattner | af21d55 | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 2071 | // Run the DAG combiner in post-legalize mode. |
| 2072 | DAG.Combine(true); |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 2073 | |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 2074 | if (ViewISelDAGs) DAG.viewGraph(); |
Chris Lattner | d48050a | 2005-10-05 06:09:10 +0000 | [diff] [blame] | 2075 | |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 2076 | // Third, instruction select all of the operations to machine code, adding the |
| 2077 | // code to the MachineBasicBlock. |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2078 | InstructionSelectBasicBlock(DAG); |
| 2079 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2080 | DEBUG(std::cerr << "Selected machine code:\n"); |
| 2081 | DEBUG(BB->dump()); |
| 2082 | |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 2083 | // 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] | 2084 | // PHI nodes in successors. |
| 2085 | for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) { |
| 2086 | MachineInstr *PHI = PHINodesToUpdate[i].first; |
| 2087 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 2088 | "This is not a machine PHI node that we are updating!"); |
| 2089 | PHI->addRegOperand(PHINodesToUpdate[i].second); |
| 2090 | PHI->addMachineBasicBlockOperand(BB); |
| 2091 | } |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 2092 | |
| 2093 | // Finally, add the CFG edges from the last selected MBB to the successor |
| 2094 | // MBBs. |
| 2095 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 2096 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) { |
| 2097 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[TI->getSuccessor(i)]; |
| 2098 | BB->addSuccessor(Succ0MBB); |
| 2099 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2100 | } |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 2101 | |
| 2102 | //===----------------------------------------------------------------------===// |
| 2103 | /// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each |
| 2104 | /// target node in the graph. |
| 2105 | void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) { |
| 2106 | if (ViewSchedDAGs) DAG.viewGraph(); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 2107 | ScheduleDAG *SL = NULL; |
| 2108 | |
| 2109 | switch (ISHeuristic) { |
| 2110 | default: assert(0 && "Unrecognized scheduling heuristic"); |
Evan Cheng | 3f23952 | 2006-01-25 09:12:57 +0000 | [diff] [blame] | 2111 | case defaultScheduling: |
| 2112 | if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) |
| 2113 | SL = createSimpleDAGScheduler(noScheduling, DAG, BB); |
| 2114 | else /* TargetLowering::SchedulingForRegPressure */ |
| 2115 | SL = createBURRListDAGScheduler(DAG, BB); |
| 2116 | break; |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 2117 | case noScheduling: |
| 2118 | case simpleScheduling: |
| 2119 | case simpleNoItinScheduling: |
| 2120 | SL = createSimpleDAGScheduler(ISHeuristic, DAG, BB); |
| 2121 | break; |
Evan Cheng | f0f9c90 | 2006-01-23 08:26:10 +0000 | [diff] [blame] | 2122 | case listSchedulingBURR: |
| 2123 | SL = createBURRListDAGScheduler(DAG, BB); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 2124 | } |
Chris Lattner | a3818e6 | 2006-01-21 19:12:11 +0000 | [diff] [blame] | 2125 | BB = SL->Run(); |
Evan Cheng | cccf123 | 2006-02-04 06:49:00 +0000 | [diff] [blame] | 2126 | delete SL; |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 2127 | } |