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" |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 25 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/IntrinsicLowering.h" |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineDebugInfo.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineFunction.h" |
| 29 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/SchedulerRegistry.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/SelectionDAG.h" |
| 34 | #include "llvm/CodeGen/SSARegMap.h" |
Chris Lattner | fa57702 | 2005-09-13 19:30:54 +0000 | [diff] [blame] | 35 | #include "llvm/Target/MRegisterInfo.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 36 | #include "llvm/Target/TargetData.h" |
| 37 | #include "llvm/Target/TargetFrameInfo.h" |
| 38 | #include "llvm/Target/TargetInstrInfo.h" |
| 39 | #include "llvm/Target/TargetLowering.h" |
| 40 | #include "llvm/Target/TargetMachine.h" |
Vladimir Prus | 1247291 | 2006-05-23 13:43:15 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 42 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 43 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 44 | #include "llvm/Support/Debug.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 45 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 46 | #include <map> |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 47 | #include <set> |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 48 | #include <iostream> |
Jeff Cohen | 7e88103 | 2006-02-24 02:52:40 +0000 | [diff] [blame] | 49 | #include <algorithm> |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 50 | using namespace llvm; |
| 51 | |
Chris Lattner | da8abb0 | 2005-09-01 18:44:10 +0000 | [diff] [blame] | 52 | #ifndef NDEBUG |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 53 | static cl::opt<bool> |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 54 | ViewISelDAGs("view-isel-dags", cl::Hidden, |
| 55 | cl::desc("Pop up a window to show isel dags as they are selected")); |
| 56 | static cl::opt<bool> |
| 57 | ViewSchedDAGs("view-sched-dags", cl::Hidden, |
| 58 | 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] | 59 | #else |
Chris Lattner | 5e46a19 | 2006-04-02 03:07:27 +0000 | [diff] [blame] | 60 | static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0; |
Chris Lattner | 7944d9d | 2005-01-12 03:41:21 +0000 | [diff] [blame] | 61 | #endif |
| 62 | |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 63 | |
| 64 | //===---------------------------------------------------------------------===// |
| 65 | /// |
| 66 | /// RegisterScheduler class - Track the registration of instruction schedulers. |
| 67 | /// |
| 68 | //===---------------------------------------------------------------------===// |
| 69 | MachinePassRegistry RegisterScheduler::Registry; |
| 70 | |
| 71 | //===---------------------------------------------------------------------===// |
| 72 | /// |
| 73 | /// ISHeuristic command line option for instruction schedulers. |
| 74 | /// |
| 75 | //===---------------------------------------------------------------------===// |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 76 | namespace { |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 77 | cl::opt<RegisterScheduler::FunctionPassCtor, false, |
| 78 | RegisterPassParser<RegisterScheduler> > |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 79 | ISHeuristic("sched", |
Chris Lattner | 3700f90 | 2006-08-03 00:18:59 +0000 | [diff] [blame] | 80 | cl::init(&createDefaultScheduler), |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 81 | cl::desc("Instruction schedulers available:")); |
| 82 | |
Jim Laskey | 9ff542f | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 83 | static RegisterScheduler |
Jim Laskey | 9373beb | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 84 | defaultListDAGScheduler("default", " Best scheduler for the target", |
| 85 | createDefaultScheduler); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 86 | } // namespace |
| 87 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 88 | namespace { |
| 89 | /// RegsForValue - This struct represents the physical registers that a |
| 90 | /// particular value is assigned and the type information about the value. |
| 91 | /// This is needed because values can be promoted into larger registers and |
| 92 | /// expanded into multiple smaller registers than the value. |
Chris Lattner | 9525528 | 2006-06-28 23:17:24 +0000 | [diff] [blame] | 93 | struct VISIBILITY_HIDDEN RegsForValue { |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 94 | /// Regs - This list hold the register (for legal and promoted values) |
| 95 | /// or register set (for expanded values) that the value should be assigned |
| 96 | /// to. |
| 97 | std::vector<unsigned> Regs; |
| 98 | |
| 99 | /// RegVT - The value type of each register. |
| 100 | /// |
| 101 | MVT::ValueType RegVT; |
| 102 | |
| 103 | /// ValueVT - The value type of the LLVM value, which may be promoted from |
| 104 | /// RegVT or made from merging the two expanded parts. |
| 105 | MVT::ValueType ValueVT; |
| 106 | |
| 107 | RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {} |
| 108 | |
| 109 | RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt) |
| 110 | : RegVT(regvt), ValueVT(valuevt) { |
| 111 | Regs.push_back(Reg); |
| 112 | } |
| 113 | RegsForValue(const std::vector<unsigned> ®s, |
| 114 | MVT::ValueType regvt, MVT::ValueType valuevt) |
| 115 | : Regs(regs), RegVT(regvt), ValueVT(valuevt) { |
| 116 | } |
| 117 | |
| 118 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
| 119 | /// this value and returns the result as a ValueVT value. This uses |
| 120 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 121 | SDOperand getCopyFromRegs(SelectionDAG &DAG, |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 122 | SDOperand &Chain, SDOperand &Flag) const; |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 123 | |
| 124 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
| 125 | /// specified value into the registers specified by this object. This uses |
| 126 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 127 | void getCopyToRegs(SDOperand Val, SelectionDAG &DAG, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 128 | SDOperand &Chain, SDOperand &Flag, |
| 129 | MVT::ValueType PtrVT) const; |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 130 | |
| 131 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
| 132 | /// operand list. This adds the code marker and includes the number of |
| 133 | /// values added into it. |
| 134 | void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG, |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 135 | std::vector<SDOperand> &Ops) const; |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 136 | }; |
| 137 | } |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 138 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 139 | namespace llvm { |
| 140 | //===--------------------------------------------------------------------===// |
Jim Laskey | 9373beb | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 141 | /// createDefaultScheduler - This creates an instruction scheduler appropriate |
| 142 | /// for the target. |
| 143 | ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS, |
| 144 | SelectionDAG *DAG, |
| 145 | MachineBasicBlock *BB) { |
| 146 | TargetLowering &TLI = IS->getTargetLowering(); |
| 147 | |
| 148 | if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) { |
| 149 | return createTDListDAGScheduler(IS, DAG, BB); |
| 150 | } else { |
| 151 | assert(TLI.getSchedulingPreference() == |
| 152 | TargetLowering::SchedulingForRegPressure && "Unknown sched type!"); |
| 153 | return createBURRListDAGScheduler(IS, DAG, BB); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | |
| 158 | //===--------------------------------------------------------------------===// |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 159 | /// FunctionLoweringInfo - This contains information that is global to a |
| 160 | /// function that is used when lowering a region of the function. |
Chris Lattner | f26bc8e | 2005-01-08 19:52:31 +0000 | [diff] [blame] | 161 | class FunctionLoweringInfo { |
| 162 | public: |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 163 | TargetLowering &TLI; |
| 164 | Function &Fn; |
| 165 | MachineFunction &MF; |
| 166 | SSARegMap *RegMap; |
| 167 | |
| 168 | FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF); |
| 169 | |
| 170 | /// MBBMap - A mapping from LLVM basic blocks to their machine code entry. |
| 171 | std::map<const BasicBlock*, MachineBasicBlock *> MBBMap; |
| 172 | |
| 173 | /// ValueMap - Since we emit code for the function a basic block at a time, |
| 174 | /// we must remember which virtual registers hold the values for |
| 175 | /// cross-basic-block values. |
| 176 | std::map<const Value*, unsigned> ValueMap; |
| 177 | |
| 178 | /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in |
| 179 | /// the entry block. This allows the allocas to be efficiently referenced |
| 180 | /// anywhere in the function. |
| 181 | std::map<const AllocaInst*, int> StaticAllocaMap; |
| 182 | |
| 183 | unsigned MakeReg(MVT::ValueType VT) { |
| 184 | return RegMap->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 185 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 186 | |
Chris Lattner | 3c38449 | 2006-03-16 19:51:18 +0000 | [diff] [blame] | 187 | unsigned CreateRegForValue(const Value *V); |
| 188 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 189 | unsigned InitializeRegForValue(const Value *V) { |
| 190 | unsigned &R = ValueMap[V]; |
| 191 | assert(R == 0 && "Already initialized this value register!"); |
| 192 | return R = CreateRegForValue(V); |
| 193 | } |
| 194 | }; |
| 195 | } |
| 196 | |
| 197 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 198 | /// PHI nodes or outside of the basic block that defines it, or used by a |
| 199 | /// switch instruction, which may expand to multiple basic blocks. |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 200 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 201 | if (isa<PHINode>(I)) return true; |
| 202 | BasicBlock *BB = I->getParent(); |
| 203 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI) |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 204 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) || |
| 205 | isa<SwitchInst>(*UI)) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 206 | return true; |
| 207 | return false; |
| 208 | } |
| 209 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 210 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 211 | /// entry block, return true. This includes arguments used by switches, since |
| 212 | /// the switch may expand into multiple basic blocks. |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 213 | static bool isOnlyUsedInEntryBlock(Argument *A) { |
| 214 | BasicBlock *Entry = A->getParent()->begin(); |
| 215 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 216 | if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 217 | return false; // Use not in entry block. |
| 218 | return true; |
| 219 | } |
| 220 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 221 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli, |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 222 | Function &fn, MachineFunction &mf) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 223 | : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) { |
| 224 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 225 | // Create a vreg for each argument register that is not dead and is used |
| 226 | // outside of the entry block for the function. |
| 227 | for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end(); |
| 228 | AI != E; ++AI) |
| 229 | if (!isOnlyUsedInEntryBlock(AI)) |
| 230 | InitializeRegForValue(AI); |
| 231 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 232 | // Initialize the mapping of values to registers. This is only set up for |
| 233 | // instruction values that are used outside of the block that defines |
| 234 | // them. |
Jeff Cohen | 2aeaf4e | 2005-10-01 03:57:14 +0000 | [diff] [blame] | 235 | Function::iterator BB = Fn.begin(), EB = Fn.end(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 236 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 237 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 238 | if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) { |
| 239 | const Type *Ty = AI->getAllocatedType(); |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 240 | uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty); |
Nate Begeman | ae232e7 | 2005-11-06 09:00:38 +0000 | [diff] [blame] | 241 | unsigned Align = |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 242 | std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty), |
Nate Begeman | ae232e7 | 2005-11-06 09:00:38 +0000 | [diff] [blame] | 243 | AI->getAlignment()); |
Chris Lattner | a8217e3 | 2005-05-13 23:14:17 +0000 | [diff] [blame] | 244 | |
| 245 | // If the alignment of the value is smaller than the size of the value, |
| 246 | // and if the size of the value is particularly small (<= 8 bytes), |
| 247 | // round up to the size of the value for potentially better performance. |
| 248 | // |
| 249 | // FIXME: This could be made better with a preferred alignment hook in |
| 250 | // TargetData. It serves primarily to 8-byte align doubles for X86. |
| 251 | if (Align < TySize && TySize <= 8) Align = TySize; |
Chris Lattner | 2dfa819 | 2005-10-18 22:11:42 +0000 | [diff] [blame] | 252 | TySize *= CUI->getValue(); // Get total allocated size. |
Chris Lattner | d222f6a | 2005-10-18 22:14:06 +0000 | [diff] [blame] | 253 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 254 | StaticAllocaMap[AI] = |
Chris Lattner | f26bc8e | 2005-01-08 19:52:31 +0000 | [diff] [blame] | 255 | MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Jeff Cohen | 2aeaf4e | 2005-10-01 03:57:14 +0000 | [diff] [blame] | 258 | for (; BB != EB; ++BB) |
| 259 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 260 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 261 | if (!isa<AllocaInst>(I) || |
| 262 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 263 | InitializeRegForValue(I); |
| 264 | |
| 265 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 266 | // also creates the initial PHI MachineInstrs, though none of the input |
| 267 | // operands are populated. |
Jeff Cohen | 2aeaf4e | 2005-10-01 03:57:14 +0000 | [diff] [blame] | 268 | for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 269 | MachineBasicBlock *MBB = new MachineBasicBlock(BB); |
| 270 | MBBMap[BB] = MBB; |
| 271 | MF.getBasicBlockList().push_back(MBB); |
| 272 | |
| 273 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 274 | // appropriate. |
| 275 | PHINode *PN; |
| 276 | for (BasicBlock::iterator I = BB->begin(); |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 277 | (PN = dyn_cast<PHINode>(I)); ++I) |
| 278 | if (!PN->use_empty()) { |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 279 | MVT::ValueType VT = TLI.getValueType(PN->getType()); |
| 280 | unsigned NumElements; |
| 281 | if (VT != MVT::Vector) |
| 282 | NumElements = TLI.getNumElements(VT); |
| 283 | else { |
| 284 | MVT::ValueType VT1,VT2; |
| 285 | NumElements = |
| 286 | TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()), |
| 287 | VT1, VT2); |
| 288 | } |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 289 | unsigned PHIReg = ValueMap[PN]; |
| 290 | assert(PHIReg &&"PHI node does not have an assigned virtual register!"); |
| 291 | for (unsigned i = 0; i != NumElements; ++i) |
| 292 | BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i); |
| 293 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | |
Chris Lattner | 3c38449 | 2006-03-16 19:51:18 +0000 | [diff] [blame] | 297 | /// CreateRegForValue - Allocate the appropriate number of virtual registers of |
| 298 | /// the correctly promoted or expanded types. Assign these registers |
| 299 | /// consecutive vreg numbers and return the first assigned number. |
| 300 | unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) { |
| 301 | MVT::ValueType VT = TLI.getValueType(V->getType()); |
| 302 | |
| 303 | // The number of multiples of registers that we need, to, e.g., split up |
| 304 | // a <2 x int64> -> 4 x i32 registers. |
| 305 | unsigned NumVectorRegs = 1; |
| 306 | |
| 307 | // If this is a packed type, figure out what type it will decompose into |
| 308 | // and how many of the elements it will use. |
| 309 | if (VT == MVT::Vector) { |
| 310 | const PackedType *PTy = cast<PackedType>(V->getType()); |
| 311 | unsigned NumElts = PTy->getNumElements(); |
| 312 | MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType()); |
| 313 | |
| 314 | // Divide the input until we get to a supported size. This will always |
| 315 | // end with a scalar if the target doesn't support vectors. |
| 316 | while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) { |
| 317 | NumElts >>= 1; |
| 318 | NumVectorRegs <<= 1; |
| 319 | } |
Chris Lattner | 6cb7004 | 2006-03-16 23:05:19 +0000 | [diff] [blame] | 320 | if (NumElts == 1) |
| 321 | VT = EltTy; |
| 322 | else |
| 323 | VT = getVectorType(EltTy, NumElts); |
Chris Lattner | 3c38449 | 2006-03-16 19:51:18 +0000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | // The common case is that we will only create one register for this |
| 327 | // value. If we have that case, create and return the virtual register. |
| 328 | unsigned NV = TLI.getNumElements(VT); |
| 329 | if (NV == 1) { |
| 330 | // If we are promoting this value, pick the next largest supported type. |
| 331 | MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT); |
| 332 | unsigned Reg = MakeReg(PromotedType); |
| 333 | // If this is a vector of supported or promoted types (e.g. 4 x i16), |
| 334 | // create all of the registers. |
| 335 | for (unsigned i = 1; i != NumVectorRegs; ++i) |
| 336 | MakeReg(PromotedType); |
| 337 | return Reg; |
| 338 | } |
| 339 | |
| 340 | // If this value is represented with multiple target registers, make sure |
| 341 | // to create enough consecutive registers of the right (smaller) type. |
| 342 | unsigned NT = VT-1; // Find the type to use. |
| 343 | while (TLI.getNumElements((MVT::ValueType)NT) != 1) |
| 344 | --NT; |
| 345 | |
| 346 | unsigned R = MakeReg((MVT::ValueType)NT); |
| 347 | for (unsigned i = 1; i != NV*NumVectorRegs; ++i) |
| 348 | MakeReg((MVT::ValueType)NT); |
| 349 | return R; |
| 350 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 351 | |
| 352 | //===----------------------------------------------------------------------===// |
| 353 | /// SelectionDAGLowering - This is the common target-independent lowering |
| 354 | /// implementation that is parameterized by a TargetLowering object. |
| 355 | /// Also, targets can overload any lowering method. |
| 356 | /// |
| 357 | namespace llvm { |
| 358 | class SelectionDAGLowering { |
| 359 | MachineBasicBlock *CurMBB; |
| 360 | |
| 361 | std::map<const Value*, SDOperand> NodeMap; |
| 362 | |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 363 | /// PendingLoads - Loads are not emitted to the program immediately. We bunch |
| 364 | /// them up and then emit token factor nodes when possible. This allows us to |
| 365 | /// get simple disambiguation between loads without worrying about alias |
| 366 | /// analysis. |
| 367 | std::vector<SDOperand> PendingLoads; |
| 368 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 369 | /// Case - A pair of values to record the Value for a switch case, and the |
| 370 | /// case's target basic block. |
| 371 | typedef std::pair<Constant*, MachineBasicBlock*> Case; |
| 372 | typedef std::vector<Case>::iterator CaseItr; |
| 373 | typedef std::pair<CaseItr, CaseItr> CaseRange; |
| 374 | |
| 375 | /// CaseRec - A struct with ctor used in lowering switches to a binary tree |
| 376 | /// of conditional branches. |
| 377 | struct CaseRec { |
| 378 | CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) : |
| 379 | CaseBB(bb), LT(lt), GE(ge), Range(r) {} |
| 380 | |
| 381 | /// CaseBB - The MBB in which to emit the compare and branch |
| 382 | MachineBasicBlock *CaseBB; |
| 383 | /// LT, GE - If nonzero, we know the current case value must be less-than or |
| 384 | /// greater-than-or-equal-to these Constants. |
| 385 | Constant *LT; |
| 386 | Constant *GE; |
| 387 | /// Range - A pair of iterators representing the range of case values to be |
| 388 | /// processed at this point in the binary search tree. |
| 389 | CaseRange Range; |
| 390 | }; |
| 391 | |
| 392 | /// The comparison function for sorting Case values. |
| 393 | struct CaseCmp { |
| 394 | bool operator () (const Case& C1, const Case& C2) { |
| 395 | if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first)) |
| 396 | return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue(); |
| 397 | |
| 398 | const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first); |
| 399 | return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue(); |
| 400 | } |
| 401 | }; |
| 402 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 403 | public: |
| 404 | // TLI - This is information that describes the available target features we |
| 405 | // need for lowering. This indicates when operations are unavailable, |
| 406 | // implemented with a libcall, etc. |
| 407 | TargetLowering &TLI; |
| 408 | SelectionDAG &DAG; |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 409 | const TargetData *TD; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 410 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 411 | /// SwitchCases - Vector of CaseBlock structures used to communicate |
| 412 | /// SwitchInst code generation information. |
| 413 | std::vector<SelectionDAGISel::CaseBlock> SwitchCases; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 414 | SelectionDAGISel::JumpTable JT; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 415 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 416 | /// FuncInfo - Information about the function as a whole. |
| 417 | /// |
| 418 | FunctionLoweringInfo &FuncInfo; |
| 419 | |
| 420 | SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli, |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 421 | FunctionLoweringInfo &funcinfo) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 422 | : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), |
Nate Begeman | 9453eea | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 423 | JT(0,0,0,0), FuncInfo(funcinfo) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 424 | } |
| 425 | |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 426 | /// getRoot - Return the current virtual root of the Selection DAG. |
| 427 | /// |
| 428 | SDOperand getRoot() { |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 429 | if (PendingLoads.empty()) |
| 430 | return DAG.getRoot(); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 431 | |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 432 | if (PendingLoads.size() == 1) { |
| 433 | SDOperand Root = PendingLoads[0]; |
| 434 | DAG.setRoot(Root); |
| 435 | PendingLoads.clear(); |
| 436 | return Root; |
| 437 | } |
| 438 | |
| 439 | // Otherwise, we have to make a token factor node. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 440 | SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 441 | &PendingLoads[0], PendingLoads.size()); |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 442 | PendingLoads.clear(); |
| 443 | DAG.setRoot(Root); |
| 444 | return Root; |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 447 | void visit(Instruction &I) { visit(I.getOpcode(), I); } |
| 448 | |
| 449 | void visit(unsigned Opcode, User &I) { |
| 450 | switch (Opcode) { |
| 451 | default: assert(0 && "Unknown instruction type encountered!"); |
| 452 | abort(); |
| 453 | // Build the switch statement using the Instruction.def file. |
| 454 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 455 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 456 | #include "llvm/Instruction.def" |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; } |
| 461 | |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 462 | SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr, |
| 463 | SDOperand SrcValue, SDOperand Root, |
| 464 | bool isVolatile); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 465 | |
| 466 | SDOperand getIntPtrConstant(uint64_t Val) { |
| 467 | return DAG.getConstant(Val, TLI.getPointerTy()); |
| 468 | } |
| 469 | |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 470 | SDOperand getValue(const Value *V); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 471 | |
| 472 | const SDOperand &setValue(const Value *V, SDOperand NewN) { |
| 473 | SDOperand &N = NodeMap[V]; |
| 474 | assert(N.Val == 0 && "Already set a value for this node!"); |
| 475 | return N = NewN; |
| 476 | } |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 477 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 478 | RegsForValue GetRegistersForValue(const std::string &ConstrCode, |
| 479 | MVT::ValueType VT, |
| 480 | bool OutReg, bool InReg, |
| 481 | std::set<unsigned> &OutputRegs, |
| 482 | std::set<unsigned> &InputRegs); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 483 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 484 | // Terminator instructions. |
| 485 | void visitRet(ReturnInst &I); |
| 486 | void visitBr(BranchInst &I); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 487 | void visitSwitch(SwitchInst &I); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 488 | void visitUnreachable(UnreachableInst &I) { /* noop */ } |
| 489 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 490 | // Helper for visitSwitch |
| 491 | void visitSwitchCase(SelectionDAGISel::CaseBlock &CB); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 492 | void visitJumpTable(SelectionDAGISel::JumpTable &JT); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 493 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 494 | // These all get lowered before this pass. |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 495 | void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); } |
| 496 | void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); } |
| 497 | |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 498 | void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp); |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 499 | void visitShift(User &I, unsigned Opcode); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 500 | void visitAdd(User &I) { |
| 501 | visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 502 | } |
Chris Lattner | b9fccc4 | 2005-04-02 05:04:50 +0000 | [diff] [blame] | 503 | void visitSub(User &I); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 504 | void visitMul(User &I) { |
| 505 | visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 506 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 507 | void visitDiv(User &I) { |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 508 | const Type *Ty = I.getType(); |
Evan Cheng | 3e1ce5a | 2006-03-03 07:01:07 +0000 | [diff] [blame] | 509 | visitBinary(I, |
| 510 | Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV, |
| 511 | Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 512 | } |
| 513 | void visitRem(User &I) { |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 514 | const Type *Ty = I.getType(); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 515 | visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 516 | } |
Evan Cheng | 3e1ce5a | 2006-03-03 07:01:07 +0000 | [diff] [blame] | 517 | void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); } |
| 518 | void visitOr (User &I) { visitBinary(I, ISD::OR, 0, ISD::VOR); } |
| 519 | void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); } |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 520 | void visitShl(User &I) { visitShift(I, ISD::SHL); } |
| 521 | void visitShr(User &I) { |
| 522 | visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 523 | } |
| 524 | |
Evan Cheng | f6f9581 | 2006-05-23 06:40:47 +0000 | [diff] [blame] | 525 | void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc, |
| 526 | ISD::CondCode FPOpc); |
| 527 | void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ, |
| 528 | ISD::SETOEQ); } |
| 529 | void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE, |
| 530 | ISD::SETUNE); } |
| 531 | void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE, |
| 532 | ISD::SETOLE); } |
| 533 | void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE, |
| 534 | ISD::SETOGE); } |
| 535 | void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT, |
| 536 | ISD::SETOLT); } |
| 537 | void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT, |
| 538 | ISD::SETOGT); } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 539 | |
Chris Lattner | 2bbd810 | 2006-03-29 00:11:43 +0000 | [diff] [blame] | 540 | void visitExtractElement(User &I); |
| 541 | void visitInsertElement(User &I); |
Chris Lattner | 3e104b1 | 2006-04-08 04:15:24 +0000 | [diff] [blame] | 542 | void visitShuffleVector(User &I); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 543 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 544 | void visitGetElementPtr(User &I); |
| 545 | void visitCast(User &I); |
| 546 | void visitSelect(User &I); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 547 | |
| 548 | void visitMalloc(MallocInst &I); |
| 549 | void visitFree(FreeInst &I); |
| 550 | void visitAlloca(AllocaInst &I); |
| 551 | void visitLoad(LoadInst &I); |
| 552 | void visitStore(StoreInst &I); |
| 553 | void visitPHI(PHINode &I) { } // PHI nodes are handled specially. |
| 554 | void visitCall(CallInst &I); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 555 | void visitInlineAsm(CallInst &I); |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 556 | const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic); |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 557 | void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 558 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 559 | void visitVAStart(CallInst &I); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 560 | void visitVAArg(VAArgInst &I); |
| 561 | void visitVAEnd(CallInst &I); |
| 562 | void visitVACopy(CallInst &I); |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 563 | void visitFrameReturnAddress(CallInst &I, bool isFrameAddress); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 564 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 565 | void visitMemIntrinsic(CallInst &I, unsigned Op); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 566 | |
| 567 | void visitUserOp1(Instruction &I) { |
| 568 | assert(0 && "UserOp1 should not exist at instruction selection time!"); |
| 569 | abort(); |
| 570 | } |
| 571 | void visitUserOp2(Instruction &I) { |
| 572 | assert(0 && "UserOp2 should not exist at instruction selection time!"); |
| 573 | abort(); |
| 574 | } |
| 575 | }; |
| 576 | } // end namespace llvm |
| 577 | |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 578 | SDOperand SelectionDAGLowering::getValue(const Value *V) { |
| 579 | SDOperand &N = NodeMap[V]; |
| 580 | if (N.Val) return N; |
| 581 | |
| 582 | const Type *VTy = V->getType(); |
| 583 | MVT::ValueType VT = TLI.getValueType(VTy); |
| 584 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
| 585 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 586 | visit(CE->getOpcode(), *CE); |
| 587 | assert(N.Val && "visit didn't populate the ValueMap!"); |
| 588 | return N; |
| 589 | } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) { |
| 590 | return N = DAG.getGlobalAddress(GV, VT); |
| 591 | } else if (isa<ConstantPointerNull>(C)) { |
| 592 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
| 593 | } else if (isa<UndefValue>(C)) { |
Chris Lattner | 23d564c | 2006-03-19 00:20:20 +0000 | [diff] [blame] | 594 | if (!isa<PackedType>(VTy)) |
| 595 | return N = DAG.getNode(ISD::UNDEF, VT); |
| 596 | |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 597 | // Create a VBUILD_VECTOR of undef nodes. |
Chris Lattner | 23d564c | 2006-03-19 00:20:20 +0000 | [diff] [blame] | 598 | const PackedType *PTy = cast<PackedType>(VTy); |
| 599 | unsigned NumElements = PTy->getNumElements(); |
| 600 | MVT::ValueType PVT = TLI.getValueType(PTy->getElementType()); |
| 601 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 602 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 23d564c | 2006-03-19 00:20:20 +0000 | [diff] [blame] | 603 | Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT)); |
| 604 | |
| 605 | // Create a VConstant node with generic Vector type. |
| 606 | Ops.push_back(DAG.getConstant(NumElements, MVT::i32)); |
| 607 | Ops.push_back(DAG.getValueType(PVT)); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 608 | return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, |
| 609 | &Ops[0], Ops.size()); |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 610 | } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 611 | return N = DAG.getConstantFP(CFP->getValue(), VT); |
| 612 | } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) { |
| 613 | unsigned NumElements = PTy->getNumElements(); |
| 614 | MVT::ValueType PVT = TLI.getValueType(PTy->getElementType()); |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 615 | |
| 616 | // Now that we know the number and type of the elements, push a |
| 617 | // Constant or ConstantFP node onto the ops list for each element of |
| 618 | // the packed constant. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 619 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 620 | if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) { |
Chris Lattner | 2bbd810 | 2006-03-29 00:11:43 +0000 | [diff] [blame] | 621 | for (unsigned i = 0; i != NumElements; ++i) |
| 622 | Ops.push_back(getValue(CP->getOperand(i))); |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 623 | } else { |
| 624 | assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!"); |
| 625 | SDOperand Op; |
| 626 | if (MVT::isFloatingPoint(PVT)) |
| 627 | Op = DAG.getConstantFP(0, PVT); |
| 628 | else |
| 629 | Op = DAG.getConstant(0, PVT); |
| 630 | Ops.assign(NumElements, Op); |
| 631 | } |
| 632 | |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 633 | // Create a VBUILD_VECTOR node with generic Vector type. |
Chris Lattner | 23d564c | 2006-03-19 00:20:20 +0000 | [diff] [blame] | 634 | Ops.push_back(DAG.getConstant(NumElements, MVT::i32)); |
| 635 | Ops.push_back(DAG.getValueType(PVT)); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 636 | return N = DAG.getNode(ISD::VBUILD_VECTOR,MVT::Vector,&Ops[0],Ops.size()); |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 637 | } else { |
| 638 | // Canonicalize all constant ints to be unsigned. |
| 639 | return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT); |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 644 | std::map<const AllocaInst*, int>::iterator SI = |
| 645 | FuncInfo.StaticAllocaMap.find(AI); |
| 646 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 647 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 648 | } |
| 649 | |
| 650 | std::map<const Value*, unsigned>::const_iterator VMI = |
| 651 | FuncInfo.ValueMap.find(V); |
| 652 | assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!"); |
| 653 | |
| 654 | unsigned InReg = VMI->second; |
| 655 | |
| 656 | // If this type is not legal, make it so now. |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 657 | if (VT != MVT::Vector) { |
| 658 | MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT); |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 659 | |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 660 | N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT); |
| 661 | if (DestVT < VT) { |
| 662 | // Source must be expanded. This input value is actually coming from the |
| 663 | // register pair VMI->second and VMI->second+1. |
| 664 | N = DAG.getNode(ISD::BUILD_PAIR, VT, N, |
| 665 | DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT)); |
| 666 | } else if (DestVT > VT) { // Promotion case |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 667 | if (MVT::isFloatingPoint(VT)) |
| 668 | N = DAG.getNode(ISD::FP_ROUND, VT, N); |
| 669 | else |
| 670 | N = DAG.getNode(ISD::TRUNCATE, VT, N); |
| 671 | } |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 672 | } else { |
| 673 | // Otherwise, if this is a vector, make it available as a generic vector |
| 674 | // here. |
| 675 | MVT::ValueType PTyElementVT, PTyLegalElementVT; |
Chris Lattner | 2e2ef95 | 2006-04-05 06:54:42 +0000 | [diff] [blame] | 676 | const PackedType *PTy = cast<PackedType>(VTy); |
| 677 | unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT, |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 678 | PTyLegalElementVT); |
| 679 | |
| 680 | // Build a VBUILD_VECTOR with the input registers. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 681 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 682 | if (PTyElementVT == PTyLegalElementVT) { |
| 683 | // If the value types are legal, just VBUILD the CopyFromReg nodes. |
| 684 | for (unsigned i = 0; i != NE; ++i) |
| 685 | Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, |
| 686 | PTyElementVT)); |
| 687 | } else if (PTyElementVT < PTyLegalElementVT) { |
| 688 | // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate. |
| 689 | for (unsigned i = 0; i != NE; ++i) { |
| 690 | SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, |
| 691 | PTyElementVT); |
| 692 | if (MVT::isFloatingPoint(PTyElementVT)) |
| 693 | Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op); |
| 694 | else |
| 695 | Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op); |
| 696 | Ops.push_back(Op); |
| 697 | } |
| 698 | } else { |
| 699 | // If the register was expanded, use BUILD_PAIR. |
| 700 | assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!"); |
| 701 | for (unsigned i = 0; i != NE/2; ++i) { |
| 702 | SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, |
| 703 | PTyElementVT); |
| 704 | SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, |
| 705 | PTyElementVT); |
| 706 | Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1)); |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | Ops.push_back(DAG.getConstant(NE, MVT::i32)); |
| 711 | Ops.push_back(DAG.getValueType(PTyLegalElementVT)); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 712 | N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &Ops[0], Ops.size()); |
Chris Lattner | 2e2ef95 | 2006-04-05 06:54:42 +0000 | [diff] [blame] | 713 | |
| 714 | // Finally, use a VBIT_CONVERT to make this available as the appropriate |
| 715 | // vector type. |
| 716 | N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N, |
| 717 | DAG.getConstant(PTy->getNumElements(), |
| 718 | MVT::i32), |
| 719 | DAG.getValueType(TLI.getValueType(PTy->getElementType()))); |
Chris Lattner | 199862b | 2006-03-16 19:57:50 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | return N; |
| 723 | } |
| 724 | |
| 725 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 726 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
| 727 | if (I.getNumOperands() == 0) { |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 728 | DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot())); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 729 | return; |
| 730 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 731 | SmallVector<SDOperand, 8> NewValues; |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 732 | NewValues.push_back(getRoot()); |
| 733 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
| 734 | SDOperand RetOp = getValue(I.getOperand(i)); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 735 | bool isSigned = I.getOperand(i)->getType()->isSigned(); |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 736 | |
| 737 | // If this is an integer return value, we need to promote it ourselves to |
| 738 | // the full width of a register, since LegalizeOp will use ANY_EXTEND rather |
| 739 | // than sign/zero. |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 740 | // FIXME: C calling convention requires the return type to be promoted to |
| 741 | // at least 32-bit. But this is not necessary for non-C calling conventions. |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 742 | if (MVT::isInteger(RetOp.getValueType()) && |
| 743 | RetOp.getValueType() < MVT::i64) { |
| 744 | MVT::ValueType TmpVT; |
| 745 | if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote) |
| 746 | TmpVT = TLI.getTypeToTransformTo(MVT::i32); |
| 747 | else |
| 748 | TmpVT = MVT::i32; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 749 | |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 750 | if (isSigned) |
Nate Begeman | ee62557 | 2006-01-27 21:09:22 +0000 | [diff] [blame] | 751 | RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp); |
| 752 | else |
| 753 | RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp); |
| 754 | } |
| 755 | NewValues.push_back(RetOp); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 756 | NewValues.push_back(DAG.getConstant(isSigned, MVT::i32)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 757 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 758 | DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, |
| 759 | &NewValues[0], NewValues.size())); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 763 | // Update machine-CFG edges. |
| 764 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 765 | CurMBB->addSuccessor(Succ0MBB); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 766 | |
| 767 | // Figure out which block is immediately after the current one. |
| 768 | MachineBasicBlock *NextBlock = 0; |
| 769 | MachineFunction::iterator BBI = CurMBB; |
| 770 | if (++BBI != CurMBB->getParent()->end()) |
| 771 | NextBlock = BBI; |
| 772 | |
| 773 | if (I.isUnconditional()) { |
| 774 | // If this is not a fall-through branch, emit the branch. |
| 775 | if (Succ0MBB != NextBlock) |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 776 | DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 777 | DAG.getBasicBlock(Succ0MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 778 | } else { |
| 779 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 780 | CurMBB->addSuccessor(Succ1MBB); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 781 | |
| 782 | SDOperand Cond = getValue(I.getCondition()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 783 | if (Succ1MBB == NextBlock) { |
| 784 | // If the condition is false, fall through. This means we should branch |
| 785 | // if the condition is true to Succ #0. |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 786 | DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 787 | Cond, DAG.getBasicBlock(Succ0MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 788 | } else if (Succ0MBB == NextBlock) { |
| 789 | // If the condition is true, fall through. This means we should branch if |
| 790 | // the condition is false to Succ #1. Invert the condition first. |
| 791 | SDOperand True = DAG.getConstant(1, Cond.getValueType()); |
| 792 | Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True); |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 793 | DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 794 | Cond, DAG.getBasicBlock(Succ1MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 795 | } else { |
Chris Lattner | e7ccd4a | 2005-04-09 03:30:29 +0000 | [diff] [blame] | 796 | std::vector<SDOperand> Ops; |
| 797 | Ops.push_back(getRoot()); |
Evan Cheng | 298ebf2 | 2006-02-16 08:27:56 +0000 | [diff] [blame] | 798 | // If the false case is the current basic block, then this is a self |
| 799 | // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it |
| 800 | // adds an extra instruction in the loop. Instead, invert the |
| 801 | // condition and emit "Loop: ... br!cond Loop; br Out. |
| 802 | if (CurMBB == Succ1MBB) { |
| 803 | std::swap(Succ0MBB, Succ1MBB); |
| 804 | SDOperand True = DAG.getConstant(1, Cond.getValueType()); |
| 805 | Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True); |
| 806 | } |
Nate Begeman | 81e8097 | 2006-03-17 01:40:33 +0000 | [diff] [blame] | 807 | SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond, |
| 808 | DAG.getBasicBlock(Succ0MBB)); |
| 809 | DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True, |
| 810 | DAG.getBasicBlock(Succ1MBB))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 811 | } |
| 812 | } |
| 813 | } |
| 814 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 815 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 816 | /// the binary search tree resulting from lowering a switch instruction. |
| 817 | void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) { |
| 818 | SDOperand SwitchOp = getValue(CB.SwitchV); |
| 819 | SDOperand CaseOp = getValue(CB.CaseC); |
| 820 | SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC); |
| 821 | |
| 822 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 823 | // This is used to avoid emitting unnecessary branches to the next block. |
| 824 | MachineBasicBlock *NextBlock = 0; |
| 825 | MachineFunction::iterator BBI = CurMBB; |
| 826 | if (++BBI != CurMBB->getParent()->end()) |
| 827 | NextBlock = BBI; |
| 828 | |
| 829 | // If the lhs block is the next block, invert the condition so that we can |
| 830 | // fall through to the lhs instead of the rhs block. |
| 831 | if (CB.LHSBB == NextBlock) { |
| 832 | std::swap(CB.LHSBB, CB.RHSBB); |
| 833 | SDOperand True = DAG.getConstant(1, Cond.getValueType()); |
| 834 | Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True); |
| 835 | } |
| 836 | SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond, |
| 837 | DAG.getBasicBlock(CB.LHSBB)); |
| 838 | if (CB.RHSBB == NextBlock) |
| 839 | DAG.setRoot(BrCond); |
| 840 | else |
| 841 | DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, |
| 842 | DAG.getBasicBlock(CB.RHSBB))); |
| 843 | // Update successor info |
| 844 | CurMBB->addSuccessor(CB.LHSBB); |
| 845 | CurMBB->addSuccessor(CB.RHSBB); |
| 846 | } |
| 847 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 848 | void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) { |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 849 | // Emit the code for the jump table |
| 850 | MVT::ValueType PTy = TLI.getPointerTy(); |
Evan Cheng | 8825a48 | 2006-08-01 01:03:13 +0000 | [diff] [blame] | 851 | assert((PTy == MVT::i32 || PTy == MVT::i64) && |
| 852 | "Jump table entries are 32-bit values"); |
Evan Cheng | 2ae5b87 | 2006-09-24 05:22:38 +0000 | [diff] [blame] | 853 | bool isPIC = TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_; |
Evan Cheng | 8825a48 | 2006-08-01 01:03:13 +0000 | [diff] [blame] | 854 | // PIC jump table entries are 32-bit values. |
Evan Cheng | 2ae5b87 | 2006-09-24 05:22:38 +0000 | [diff] [blame] | 855 | unsigned EntrySize = isPIC ? 4 : MVT::getSizeInBits(PTy)/8; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 856 | SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy); |
| 857 | SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy, |
Evan Cheng | 8825a48 | 2006-08-01 01:03:13 +0000 | [diff] [blame] | 858 | DAG.getConstant(EntrySize, PTy)); |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 859 | SDOperand TAB = DAG.getJumpTable(JT.JTI,PTy); |
| 860 | SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, TAB); |
Evan Cheng | 2ae5b87 | 2006-09-24 05:22:38 +0000 | [diff] [blame] | 861 | SDOperand LD = DAG.getLoad(isPIC ? MVT::i32 : PTy, Copy.getValue(1), ADD, |
Evan Cheng | 8825a48 | 2006-08-01 01:03:13 +0000 | [diff] [blame] | 862 | DAG.getSrcValue(0)); |
Evan Cheng | 2ae5b87 | 2006-09-24 05:22:38 +0000 | [diff] [blame] | 863 | if (isPIC) { |
Andrew Lenharth | 1611343 | 2006-09-26 20:02:30 +0000 | [diff] [blame] | 864 | // For Pic, the sequence is: |
| 865 | // BRIND(load(Jumptable + index) + RelocBase) |
| 866 | // RelocBase is the JumpTable on PPC and X86, GOT on Alpha |
Andrew Lenharth | beec30e | 2006-09-24 19:45:58 +0000 | [diff] [blame] | 867 | SDOperand Reloc = DAG.getNode(ISD::JumpTableRelocBase, PTy, TAB); |
Evan Cheng | 8825a48 | 2006-08-01 01:03:13 +0000 | [diff] [blame] | 868 | ADD = DAG.getNode(ISD::ADD, PTy, |
Andrew Lenharth | beec30e | 2006-09-24 19:45:58 +0000 | [diff] [blame] | 869 | ((PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD), Reloc); |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 870 | DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), ADD)); |
| 871 | } else { |
| 872 | DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD)); |
| 873 | } |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 874 | } |
| 875 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 876 | void SelectionDAGLowering::visitSwitch(SwitchInst &I) { |
| 877 | // Figure out which block is immediately after the current one. |
| 878 | MachineBasicBlock *NextBlock = 0; |
| 879 | MachineFunction::iterator BBI = CurMBB; |
| 880 | if (++BBI != CurMBB->getParent()->end()) |
| 881 | NextBlock = BBI; |
| 882 | |
| 883 | // If there is only the default destination, branch to it if it is not the |
| 884 | // next basic block. Otherwise, just fall through. |
| 885 | if (I.getNumOperands() == 2) { |
| 886 | // Update machine-CFG edges. |
| 887 | MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()]; |
| 888 | // If this is not a fall-through branch, emit the branch. |
| 889 | if (DefaultMBB != NextBlock) |
| 890 | DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(), |
| 891 | DAG.getBasicBlock(DefaultMBB))); |
Chris Lattner | a3bb86d | 2006-06-12 18:25:29 +0000 | [diff] [blame] | 892 | CurMBB->addSuccessor(DefaultMBB); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 893 | return; |
| 894 | } |
| 895 | |
| 896 | // If there are any non-default case statements, create a vector of Cases |
| 897 | // representing each one, and sort the vector so that we can efficiently |
| 898 | // create a binary search tree from them. |
| 899 | std::vector<Case> Cases; |
| 900 | for (unsigned i = 1; i < I.getNumSuccessors(); ++i) { |
| 901 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)]; |
| 902 | Cases.push_back(Case(I.getSuccessorValue(i), SMBB)); |
| 903 | } |
| 904 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 905 | |
| 906 | // Get the Value to be switched on and default basic blocks, which will be |
| 907 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 908 | // search tree. |
| 909 | Value *SV = I.getOperand(0); |
| 910 | MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()]; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 911 | |
| 912 | // Get the MachineFunction which holds the current MBB. This is used during |
| 913 | // emission of jump tables, and when inserting any additional MBBs necessary |
| 914 | // to represent the switch. |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 915 | MachineFunction *CurMF = CurMBB->getParent(); |
| 916 | const BasicBlock *LLVMBB = CurMBB->getBasicBlock(); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 917 | |
Nate Begeman | 17c275f | 2006-05-08 16:51:36 +0000 | [diff] [blame] | 918 | // If the switch has more than 5 blocks, and at least 31.25% dense, and the |
| 919 | // target supports indirect branches, then emit a jump table rather than |
| 920 | // lowering the switch to a binary tree of conditional branches. |
Nate Begeman | 9453eea | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 921 | if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) && |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 922 | Cases.size() > 5) { |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 923 | uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue(); |
| 924 | uint64_t Last = cast<ConstantIntegral>(Cases.back().first)->getRawValue(); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 925 | double Density = (double)Cases.size() / (double)((Last - First) + 1ULL); |
| 926 | |
Nate Begeman | 17c275f | 2006-05-08 16:51:36 +0000 | [diff] [blame] | 927 | if (Density >= 0.3125) { |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 928 | // Create a new basic block to hold the code for loading the address |
| 929 | // of the jump table, and jumping to it. Update successor information; |
| 930 | // we will either branch to the default case for the switch, or the jump |
| 931 | // table. |
| 932 | MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB); |
| 933 | CurMF->getBasicBlockList().insert(BBI, JumpTableBB); |
| 934 | CurMBB->addSuccessor(Default); |
| 935 | CurMBB->addSuccessor(JumpTableBB); |
| 936 | |
| 937 | // Subtract the lowest switch case value from the value being switched on |
| 938 | // and conditional branch to default mbb if the result is greater than the |
| 939 | // difference between smallest and largest cases. |
| 940 | SDOperand SwitchOp = getValue(SV); |
| 941 | MVT::ValueType VT = SwitchOp.getValueType(); |
| 942 | SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp, |
| 943 | DAG.getConstant(First, VT)); |
| 944 | |
| 945 | // The SDNode we just created, which holds the value being switched on |
| 946 | // minus the the smallest case value, needs to be copied to a virtual |
| 947 | // register so it can be used as an index into the jump table in a |
| 948 | // subsequent basic block. This value may be smaller or larger than the |
| 949 | // target's pointer type, and therefore require extension or truncating. |
| 950 | if (VT > TLI.getPointerTy()) |
| 951 | SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB); |
| 952 | else |
| 953 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB); |
| 954 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
| 955 | SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp); |
| 956 | |
| 957 | // Emit the range check for the jump table, and branch to the default |
| 958 | // block for the switch statement if the value being switched on exceeds |
| 959 | // the largest case in the switch. |
| 960 | SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB, |
| 961 | DAG.getConstant(Last-First,VT), ISD::SETUGT); |
| 962 | DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP, |
| 963 | DAG.getBasicBlock(Default))); |
| 964 | |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 965 | // Build a vector of destination BBs, corresponding to each target |
| 966 | // of the jump table. If the value of the jump table slot corresponds to |
| 967 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 968 | // the default BB. |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 969 | std::vector<MachineBasicBlock*> DestBBs; |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 970 | uint64_t TEI = First; |
| 971 | for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) { |
| 972 | if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) { |
| 973 | DestBBs.push_back(ii->second); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 974 | ++ii; |
| 975 | } else { |
| 976 | DestBBs.push_back(Default); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 977 | } |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 978 | } |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 979 | |
| 980 | // Update successor info |
Chris Lattner | c66764c | 2006-09-10 06:36:57 +0000 | [diff] [blame] | 981 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
| 982 | E = DestBBs.end(); I != E; ++I) |
| 983 | JumpTableBB->addSuccessor(*I); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 984 | |
| 985 | // Create a jump table index for this jump table, or return an existing |
| 986 | // one. |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 987 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
| 988 | |
| 989 | // Set the jump table information so that we can codegen it as a second |
| 990 | // MachineBasicBlock |
| 991 | JT.Reg = JumpTableReg; |
| 992 | JT.JTI = JTI; |
| 993 | JT.MBB = JumpTableBB; |
Nate Begeman | 9453eea | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 994 | JT.Default = Default; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 995 | return; |
| 996 | } |
| 997 | } |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 998 | |
| 999 | // Push the initial CaseRec onto the worklist |
| 1000 | std::vector<CaseRec> CaseVec; |
| 1001 | CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 1002 | |
| 1003 | while (!CaseVec.empty()) { |
| 1004 | // Grab a record representing a case range to process off the worklist |
| 1005 | CaseRec CR = CaseVec.back(); |
| 1006 | CaseVec.pop_back(); |
| 1007 | |
| 1008 | // Size is the number of Cases represented by this range. If Size is 1, |
| 1009 | // then we are processing a leaf of the binary search tree. Otherwise, |
| 1010 | // we need to pick a pivot, and push left and right ranges onto the |
| 1011 | // worklist. |
| 1012 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1013 | |
| 1014 | if (Size == 1) { |
| 1015 | // Create a CaseBlock record representing a conditional branch to |
| 1016 | // the Case's target mbb if the value being switched on SV is equal |
| 1017 | // to C. Otherwise, branch to default. |
| 1018 | Constant *C = CR.Range.first->first; |
| 1019 | MachineBasicBlock *Target = CR.Range.first->second; |
| 1020 | SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default, |
| 1021 | CR.CaseBB); |
| 1022 | // If the MBB representing the leaf node is the current MBB, then just |
| 1023 | // call visitSwitchCase to emit the code into the current block. |
| 1024 | // Otherwise, push the CaseBlock onto the vector to be later processed |
| 1025 | // by SDISel, and insert the node's MBB before the next MBB. |
| 1026 | if (CR.CaseBB == CurMBB) |
| 1027 | visitSwitchCase(CB); |
| 1028 | else { |
| 1029 | SwitchCases.push_back(CB); |
| 1030 | CurMF->getBasicBlockList().insert(BBI, CR.CaseBB); |
| 1031 | } |
| 1032 | } else { |
| 1033 | // split case range at pivot |
| 1034 | CaseItr Pivot = CR.Range.first + (Size / 2); |
| 1035 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1036 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1037 | Constant *C = Pivot->first; |
| 1038 | MachineBasicBlock *RHSBB = 0, *LHSBB = 0; |
| 1039 | // We know that we branch to the LHS if the Value being switched on is |
| 1040 | // less than the Pivot value, C. We use this to optimize our binary |
| 1041 | // tree a bit, by recognizing that if SV is greater than or equal to the |
| 1042 | // LHS's Case Value, and that Case Value is exactly one less than the |
| 1043 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1044 | // rather than creating a leaf node for it. |
| 1045 | if ((LHSR.second - LHSR.first) == 1 && |
| 1046 | LHSR.first->first == CR.GE && |
| 1047 | cast<ConstantIntegral>(C)->getRawValue() == |
| 1048 | (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) { |
| 1049 | LHSBB = LHSR.first->second; |
| 1050 | } else { |
| 1051 | LHSBB = new MachineBasicBlock(LLVMBB); |
| 1052 | CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR)); |
| 1053 | } |
| 1054 | // Similar to the optimization above, if the Value being switched on is |
| 1055 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1056 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1057 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1058 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
| 1059 | cast<ConstantIntegral>(RHSR.first->first)->getRawValue() == |
| 1060 | (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) { |
| 1061 | RHSBB = RHSR.first->second; |
| 1062 | } else { |
| 1063 | RHSBB = new MachineBasicBlock(LLVMBB); |
| 1064 | CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR)); |
| 1065 | } |
| 1066 | // Create a CaseBlock record representing a conditional branch to |
| 1067 | // the LHS node if the value being switched on SV is less than C. |
| 1068 | // Otherwise, branch to LHS. |
| 1069 | ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT; |
| 1070 | SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB); |
| 1071 | if (CR.CaseBB == CurMBB) |
| 1072 | visitSwitchCase(CB); |
| 1073 | else { |
| 1074 | SwitchCases.push_back(CB); |
| 1075 | CurMF->getBasicBlockList().insert(BBI, CR.CaseBB); |
| 1076 | } |
| 1077 | } |
| 1078 | } |
| 1079 | } |
| 1080 | |
Chris Lattner | b9fccc4 | 2005-04-02 05:04:50 +0000 | [diff] [blame] | 1081 | void SelectionDAGLowering::visitSub(User &I) { |
| 1082 | // -0.0 - X --> fneg |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1083 | if (I.getType()->isFloatingPoint()) { |
| 1084 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
| 1085 | if (CFP->isExactlyValue(-0.0)) { |
| 1086 | SDOperand Op2 = getValue(I.getOperand(1)); |
| 1087 | setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2)); |
| 1088 | return; |
| 1089 | } |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1090 | } |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1091 | visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB); |
Chris Lattner | b9fccc4 | 2005-04-02 05:04:50 +0000 | [diff] [blame] | 1092 | } |
| 1093 | |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1094 | void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp, |
| 1095 | unsigned VecOp) { |
| 1096 | const Type *Ty = I.getType(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1097 | SDOperand Op1 = getValue(I.getOperand(0)); |
| 1098 | SDOperand Op2 = getValue(I.getOperand(1)); |
Chris Lattner | 2c49f27 | 2005-01-19 22:31:21 +0000 | [diff] [blame] | 1099 | |
Chris Lattner | b67eb91 | 2005-11-19 18:40:42 +0000 | [diff] [blame] | 1100 | if (Ty->isIntegral()) { |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1101 | setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2)); |
| 1102 | } else if (Ty->isFloatingPoint()) { |
| 1103 | setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2)); |
| 1104 | } else { |
| 1105 | const PackedType *PTy = cast<PackedType>(Ty); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1106 | SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32); |
| 1107 | SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType())); |
| 1108 | setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ)); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1109 | } |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 1110 | } |
Chris Lattner | 2c49f27 | 2005-01-19 22:31:21 +0000 | [diff] [blame] | 1111 | |
Nate Begeman | e21ea61 | 2005-11-18 07:42:56 +0000 | [diff] [blame] | 1112 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 1113 | SDOperand Op1 = getValue(I.getOperand(0)); |
| 1114 | SDOperand Op2 = getValue(I.getOperand(1)); |
| 1115 | |
| 1116 | Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2); |
| 1117 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1118 | setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2)); |
| 1119 | } |
| 1120 | |
| 1121 | void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode, |
Evan Cheng | f6f9581 | 2006-05-23 06:40:47 +0000 | [diff] [blame] | 1122 | ISD::CondCode UnsignedOpcode, |
| 1123 | ISD::CondCode FPOpcode) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1124 | SDOperand Op1 = getValue(I.getOperand(0)); |
| 1125 | SDOperand Op2 = getValue(I.getOperand(1)); |
| 1126 | ISD::CondCode Opcode = SignedOpcode; |
Evan Cheng | 80235d5 | 2006-05-23 18:18:46 +0000 | [diff] [blame] | 1127 | if (!FiniteOnlyFPMath() && I.getOperand(0)->getType()->isFloatingPoint()) |
Evan Cheng | f6f9581 | 2006-05-23 06:40:47 +0000 | [diff] [blame] | 1128 | Opcode = FPOpcode; |
| 1129 | else if (I.getOperand(0)->getType()->isUnsigned()) |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1130 | Opcode = UnsignedOpcode; |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 1131 | setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | void SelectionDAGLowering::visitSelect(User &I) { |
| 1135 | SDOperand Cond = getValue(I.getOperand(0)); |
| 1136 | SDOperand TrueVal = getValue(I.getOperand(1)); |
| 1137 | SDOperand FalseVal = getValue(I.getOperand(2)); |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 1138 | if (!isa<PackedType>(I.getType())) { |
| 1139 | setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond, |
| 1140 | TrueVal, FalseVal)); |
| 1141 | } else { |
| 1142 | setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal, |
| 1143 | *(TrueVal.Val->op_end()-2), |
| 1144 | *(TrueVal.Val->op_end()-1))); |
| 1145 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | void SelectionDAGLowering::visitCast(User &I) { |
| 1149 | SDOperand N = getValue(I.getOperand(0)); |
Chris Lattner | e25ca69 | 2006-03-22 20:09:35 +0000 | [diff] [blame] | 1150 | MVT::ValueType SrcVT = N.getValueType(); |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1151 | MVT::ValueType DestVT = TLI.getValueType(I.getType()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1152 | |
Chris Lattner | e25ca69 | 2006-03-22 20:09:35 +0000 | [diff] [blame] | 1153 | if (DestVT == MVT::Vector) { |
| 1154 | // This is a cast to a vector from something else. This is always a bit |
| 1155 | // convert. Get information about the input vector. |
| 1156 | const PackedType *DestTy = cast<PackedType>(I.getType()); |
| 1157 | MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType()); |
| 1158 | setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N, |
| 1159 | DAG.getConstant(DestTy->getNumElements(),MVT::i32), |
| 1160 | DAG.getValueType(EltVT))); |
| 1161 | } else if (SrcVT == DestVT) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1162 | setValue(&I, N); // noop cast. |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1163 | } else if (DestVT == MVT::i1) { |
Chris Lattner | ef311aa | 2005-05-09 22:17:13 +0000 | [diff] [blame] | 1164 | // Cast to bool is a comparison against zero, not truncation to zero. |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1165 | SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) : |
Chris Lattner | ef311aa | 2005-05-09 22:17:13 +0000 | [diff] [blame] | 1166 | DAG.getConstantFP(0.0, N.getValueType()); |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 1167 | setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE)); |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1168 | } else if (isInteger(SrcVT)) { |
| 1169 | if (isInteger(DestVT)) { // Int -> Int cast |
| 1170 | if (DestVT < SrcVT) // Truncating cast? |
| 1171 | setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N)); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1172 | else if (I.getOperand(0)->getType()->isSigned()) |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1173 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N)); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1174 | else |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1175 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N)); |
Chris Lattner | 7e35890 | 2006-03-22 22:20:49 +0000 | [diff] [blame] | 1176 | } else if (isFloatingPoint(DestVT)) { // Int -> FP cast |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1177 | if (I.getOperand(0)->getType()->isSigned()) |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1178 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N)); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1179 | else |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1180 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N)); |
Chris Lattner | e25ca69 | 2006-03-22 20:09:35 +0000 | [diff] [blame] | 1181 | } else { |
| 1182 | assert(0 && "Unknown cast!"); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1183 | } |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1184 | } else if (isFloatingPoint(SrcVT)) { |
| 1185 | if (isFloatingPoint(DestVT)) { // FP -> FP cast |
| 1186 | if (DestVT < SrcVT) // Rounding cast? |
| 1187 | setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N)); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1188 | else |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1189 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N)); |
Chris Lattner | e25ca69 | 2006-03-22 20:09:35 +0000 | [diff] [blame] | 1190 | } else if (isInteger(DestVT)) { // FP -> Int cast. |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1191 | if (I.getType()->isSigned()) |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1192 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N)); |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 1193 | else |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1194 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N)); |
Chris Lattner | e25ca69 | 2006-03-22 20:09:35 +0000 | [diff] [blame] | 1195 | } else { |
| 1196 | assert(0 && "Unknown cast!"); |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1197 | } |
| 1198 | } else { |
Chris Lattner | e25ca69 | 2006-03-22 20:09:35 +0000 | [diff] [blame] | 1199 | assert(SrcVT == MVT::Vector && "Unknown cast!"); |
| 1200 | assert(DestVT != MVT::Vector && "Casts to vector already handled!"); |
| 1201 | // This is a cast from a vector to something else. This is always a bit |
| 1202 | // convert. Get information about the input vector. |
| 1203 | setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1204 | } |
| 1205 | } |
| 1206 | |
Chris Lattner | 2bbd810 | 2006-03-29 00:11:43 +0000 | [diff] [blame] | 1207 | void SelectionDAGLowering::visitInsertElement(User &I) { |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1208 | SDOperand InVec = getValue(I.getOperand(0)); |
| 1209 | SDOperand InVal = getValue(I.getOperand(1)); |
| 1210 | SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), |
| 1211 | getValue(I.getOperand(2))); |
| 1212 | |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1213 | SDOperand Num = *(InVec.Val->op_end()-2); |
| 1214 | SDOperand Typ = *(InVec.Val->op_end()-1); |
| 1215 | setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector, |
| 1216 | InVec, InVal, InIdx, Num, Typ)); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1217 | } |
| 1218 | |
Chris Lattner | 2bbd810 | 2006-03-29 00:11:43 +0000 | [diff] [blame] | 1219 | void SelectionDAGLowering::visitExtractElement(User &I) { |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1220 | SDOperand InVec = getValue(I.getOperand(0)); |
| 1221 | SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), |
| 1222 | getValue(I.getOperand(1))); |
| 1223 | SDOperand Typ = *(InVec.Val->op_end()-1); |
| 1224 | setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, |
| 1225 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 1226 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1227 | |
Chris Lattner | 3e104b1 | 2006-04-08 04:15:24 +0000 | [diff] [blame] | 1228 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
| 1229 | SDOperand V1 = getValue(I.getOperand(0)); |
| 1230 | SDOperand V2 = getValue(I.getOperand(1)); |
| 1231 | SDOperand Mask = getValue(I.getOperand(2)); |
| 1232 | |
| 1233 | SDOperand Num = *(V1.Val->op_end()-2); |
| 1234 | SDOperand Typ = *(V2.Val->op_end()-1); |
| 1235 | setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector, |
| 1236 | V1, V2, Mask, Num, Typ)); |
| 1237 | } |
| 1238 | |
| 1239 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1240 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 1241 | SDOperand N = getValue(I.getOperand(0)); |
| 1242 | const Type *Ty = I.getOperand(0)->getType(); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1243 | |
| 1244 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 1245 | OI != E; ++OI) { |
| 1246 | Value *Idx = *OI; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 1247 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1248 | unsigned Field = cast<ConstantUInt>(Idx)->getValue(); |
| 1249 | if (Field) { |
| 1250 | // N = N + Offset |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 1251 | uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field]; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1252 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 1253 | getIntPtrConstant(Offset)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1254 | } |
| 1255 | Ty = StTy->getElementType(Field); |
| 1256 | } else { |
| 1257 | Ty = cast<SequentialType>(Ty)->getElementType(); |
Chris Lattner | 7cc4777 | 2005-01-07 21:56:57 +0000 | [diff] [blame] | 1258 | |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1259 | // If this is a constant subscript, handle it quickly. |
| 1260 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 1261 | if (CI->getRawValue() == 0) continue; |
Chris Lattner | 7cc4777 | 2005-01-07 21:56:57 +0000 | [diff] [blame] | 1262 | |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1263 | uint64_t Offs; |
| 1264 | if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI)) |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 1265 | Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue(); |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1266 | else |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 1267 | Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue(); |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1268 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs)); |
| 1269 | continue; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1270 | } |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1271 | |
| 1272 | // N = N + Idx * ElementSize; |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 1273 | uint64_t ElementSize = TD->getTypeSize(Ty); |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1274 | SDOperand IdxN = getValue(Idx); |
| 1275 | |
| 1276 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 1277 | // it. |
| 1278 | if (IdxN.getValueType() < N.getValueType()) { |
| 1279 | if (Idx->getType()->isSigned()) |
| 1280 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN); |
| 1281 | else |
| 1282 | IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN); |
| 1283 | } else if (IdxN.getValueType() > N.getValueType()) |
| 1284 | IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN); |
| 1285 | |
| 1286 | // If this is a multiply by a power of two, turn it into a shl |
| 1287 | // immediately. This is a very common case. |
| 1288 | if (isPowerOf2_64(ElementSize)) { |
| 1289 | unsigned Amt = Log2_64(ElementSize); |
| 1290 | IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN, |
Chris Lattner | 6b2d696 | 2005-11-09 16:50:40 +0000 | [diff] [blame] | 1291 | DAG.getConstant(Amt, TLI.getShiftAmountTy())); |
Chris Lattner | 7c0104b | 2005-11-09 04:45:33 +0000 | [diff] [blame] | 1292 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN); |
| 1293 | continue; |
| 1294 | } |
| 1295 | |
| 1296 | SDOperand Scale = getIntPtrConstant(ElementSize); |
| 1297 | IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale); |
| 1298 | N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1299 | } |
| 1300 | } |
| 1301 | setValue(&I, N); |
| 1302 | } |
| 1303 | |
| 1304 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 1305 | // If this is a fixed sized alloca in the entry block of the function, |
| 1306 | // allocate it statically on the stack. |
| 1307 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 1308 | return; // getValue will auto-populate this. |
| 1309 | |
| 1310 | const Type *Ty = I.getAllocatedType(); |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 1311 | uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty); |
| 1312 | unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty), |
Nate Begeman | ae232e7 | 2005-11-06 09:00:38 +0000 | [diff] [blame] | 1313 | I.getAlignment()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1314 | |
| 1315 | SDOperand AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 68cd65e | 2005-01-22 23:04:37 +0000 | [diff] [blame] | 1316 | MVT::ValueType IntPtr = TLI.getPointerTy(); |
| 1317 | if (IntPtr < AllocSize.getValueType()) |
| 1318 | AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize); |
| 1319 | else if (IntPtr > AllocSize.getValueType()) |
| 1320 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1321 | |
Chris Lattner | 68cd65e | 2005-01-22 23:04:37 +0000 | [diff] [blame] | 1322 | AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize, |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1323 | getIntPtrConstant(TySize)); |
| 1324 | |
| 1325 | // Handle alignment. If the requested alignment is less than or equal to the |
| 1326 | // stack alignment, ignore it and round the size of the allocation up to the |
| 1327 | // stack alignment size. If the size is greater than the stack alignment, we |
| 1328 | // note this in the DYNAMIC_STACKALLOC node. |
| 1329 | unsigned StackAlign = |
| 1330 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 1331 | if (Align <= StackAlign) { |
| 1332 | Align = 0; |
| 1333 | // Add SA-1 to the size. |
| 1334 | AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize, |
| 1335 | getIntPtrConstant(StackAlign-1)); |
| 1336 | // Mask out the low bits for alignment purposes. |
| 1337 | AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize, |
| 1338 | getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 1339 | } |
| 1340 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1341 | SDOperand Ops[] = { getRoot(), AllocSize, getIntPtrConstant(Align) }; |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1342 | const MVT::ValueType *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(), |
| 1343 | MVT::Other); |
| 1344 | SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1345 | DAG.setRoot(setValue(&I, DSA).getValue(1)); |
| 1346 | |
| 1347 | // Inform the Frame Information that we have just allocated a variable-sized |
| 1348 | // object. |
| 1349 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 1350 | } |
| 1351 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1352 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 1353 | SDOperand Ptr = getValue(I.getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1354 | |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 1355 | SDOperand Root; |
| 1356 | if (I.isVolatile()) |
| 1357 | Root = getRoot(); |
| 1358 | else { |
| 1359 | // Do not serialize non-volatile loads against each other. |
| 1360 | Root = DAG.getRoot(); |
| 1361 | } |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1362 | |
| 1363 | setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)), |
| 1364 | Root, I.isVolatile())); |
| 1365 | } |
| 1366 | |
| 1367 | SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr, |
| 1368 | SDOperand SrcValue, SDOperand Root, |
| 1369 | bool isVolatile) { |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1370 | SDOperand L; |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 1371 | if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) { |
Nate Begeman | 4ef3b81 | 2005-11-22 01:29:36 +0000 | [diff] [blame] | 1372 | MVT::ValueType PVT = TLI.getValueType(PTy->getElementType()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1373 | L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1374 | } else { |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1375 | L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue); |
Nate Begeman | 5fbb5d2 | 2005-11-19 00:36:38 +0000 | [diff] [blame] | 1376 | } |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 1377 | |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1378 | if (isVolatile) |
Chris Lattner | d394811 | 2005-01-17 22:19:26 +0000 | [diff] [blame] | 1379 | DAG.setRoot(L.getValue(1)); |
| 1380 | else |
| 1381 | PendingLoads.push_back(L.getValue(1)); |
Chris Lattner | 28b5b1c | 2006-03-15 22:19:46 +0000 | [diff] [blame] | 1382 | |
| 1383 | return L; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1384 | } |
| 1385 | |
| 1386 | |
| 1387 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 1388 | Value *SrcV = I.getOperand(0); |
| 1389 | SDOperand Src = getValue(SrcV); |
| 1390 | SDOperand Ptr = getValue(I.getOperand(1)); |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 1391 | DAG.setRoot(DAG.getStore(getRoot(), Src, Ptr, |
| 1392 | DAG.getSrcValue(I.getOperand(1)))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1393 | } |
| 1394 | |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1395 | /// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot |
| 1396 | /// access memory and has no other side effects at all. |
| 1397 | static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) { |
| 1398 | #define GET_NO_MEMORY_INTRINSICS |
| 1399 | #include "llvm/Intrinsics.gen" |
| 1400 | #undef GET_NO_MEMORY_INTRINSICS |
| 1401 | return false; |
| 1402 | } |
| 1403 | |
Chris Lattner | e58a780 | 2006-04-02 03:41:14 +0000 | [diff] [blame] | 1404 | // IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't |
| 1405 | // have any side-effects or if it only reads memory. |
| 1406 | static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) { |
| 1407 | #define GET_SIDE_EFFECT_INFO |
| 1408 | #include "llvm/Intrinsics.gen" |
| 1409 | #undef GET_SIDE_EFFECT_INFO |
| 1410 | return false; |
| 1411 | } |
| 1412 | |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1413 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 1414 | /// node. |
| 1415 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
| 1416 | unsigned Intrinsic) { |
Chris Lattner | 7255a54 | 2006-03-24 22:49:42 +0000 | [diff] [blame] | 1417 | bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic); |
Chris Lattner | e58a780 | 2006-04-02 03:41:14 +0000 | [diff] [blame] | 1418 | bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic); |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1419 | |
| 1420 | // Build the operand list. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1421 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | e58a780 | 2006-04-02 03:41:14 +0000 | [diff] [blame] | 1422 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 1423 | if (OnlyLoad) { |
| 1424 | // We don't need to serialize loads against other loads. |
| 1425 | Ops.push_back(DAG.getRoot()); |
| 1426 | } else { |
| 1427 | Ops.push_back(getRoot()); |
| 1428 | } |
| 1429 | } |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1430 | |
| 1431 | // Add the intrinsic ID as an integer operand. |
| 1432 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
| 1433 | |
| 1434 | // Add all operands of the call to the operand list. |
| 1435 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 1436 | SDOperand Op = getValue(I.getOperand(i)); |
| 1437 | |
| 1438 | // If this is a vector type, force it to the right packed type. |
| 1439 | if (Op.getValueType() == MVT::Vector) { |
| 1440 | const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType()); |
| 1441 | MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType()); |
| 1442 | |
| 1443 | MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements()); |
| 1444 | assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 1445 | Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op); |
| 1446 | } |
| 1447 | |
| 1448 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 1449 | "Intrinsic uses a non-legal type?"); |
| 1450 | Ops.push_back(Op); |
| 1451 | } |
| 1452 | |
| 1453 | std::vector<MVT::ValueType> VTs; |
| 1454 | if (I.getType() != Type::VoidTy) { |
| 1455 | MVT::ValueType VT = TLI.getValueType(I.getType()); |
| 1456 | if (VT == MVT::Vector) { |
| 1457 | const PackedType *DestTy = cast<PackedType>(I.getType()); |
| 1458 | MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType()); |
| 1459 | |
| 1460 | VT = MVT::getVectorType(EltVT, DestTy->getNumElements()); |
| 1461 | assert(VT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 1462 | } |
| 1463 | |
| 1464 | assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?"); |
| 1465 | VTs.push_back(VT); |
| 1466 | } |
| 1467 | if (HasChain) |
| 1468 | VTs.push_back(MVT::Other); |
| 1469 | |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1470 | const MVT::ValueType *VTList = DAG.getNodeValueTypes(VTs); |
| 1471 | |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1472 | // Create the node. |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1473 | SDOperand Result; |
| 1474 | if (!HasChain) |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1475 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(), |
| 1476 | &Ops[0], Ops.size()); |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1477 | else if (I.getType() != Type::VoidTy) |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1478 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(), |
| 1479 | &Ops[0], Ops.size()); |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1480 | else |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1481 | Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(), |
| 1482 | &Ops[0], Ops.size()); |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1483 | |
Chris Lattner | e58a780 | 2006-04-02 03:41:14 +0000 | [diff] [blame] | 1484 | if (HasChain) { |
| 1485 | SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1); |
| 1486 | if (OnlyLoad) |
| 1487 | PendingLoads.push_back(Chain); |
| 1488 | else |
| 1489 | DAG.setRoot(Chain); |
| 1490 | } |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1491 | if (I.getType() != Type::VoidTy) { |
| 1492 | if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) { |
| 1493 | MVT::ValueType EVT = TLI.getValueType(PTy->getElementType()); |
| 1494 | Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result, |
| 1495 | DAG.getConstant(PTy->getNumElements(), MVT::i32), |
| 1496 | DAG.getValueType(EVT)); |
| 1497 | } |
| 1498 | setValue(&I, Result); |
| 1499 | } |
| 1500 | } |
| 1501 | |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1502 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 1503 | /// we want to emit this as a call to a named external function, return the name |
| 1504 | /// otherwise lower it and return null. |
| 1505 | const char * |
| 1506 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
| 1507 | switch (Intrinsic) { |
Chris Lattner | 0eade31 | 2006-03-24 02:22:33 +0000 | [diff] [blame] | 1508 | default: |
| 1509 | // By default, turn this into a target intrinsic node. |
| 1510 | visitTargetIntrinsic(I, Intrinsic); |
| 1511 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1512 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 1513 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 1514 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 1515 | case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0; |
| 1516 | case Intrinsic::frameaddress: visitFrameReturnAddress(I, true); return 0; |
| 1517 | case Intrinsic::setjmp: |
| 1518 | return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp(); |
| 1519 | break; |
| 1520 | case Intrinsic::longjmp: |
| 1521 | return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp(); |
| 1522 | break; |
Chris Lattner | 03dd465 | 2006-03-03 00:00:25 +0000 | [diff] [blame] | 1523 | case Intrinsic::memcpy_i32: |
| 1524 | case Intrinsic::memcpy_i64: |
| 1525 | visitMemIntrinsic(I, ISD::MEMCPY); |
| 1526 | return 0; |
| 1527 | case Intrinsic::memset_i32: |
| 1528 | case Intrinsic::memset_i64: |
| 1529 | visitMemIntrinsic(I, ISD::MEMSET); |
| 1530 | return 0; |
| 1531 | case Intrinsic::memmove_i32: |
| 1532 | case Intrinsic::memmove_i64: |
| 1533 | visitMemIntrinsic(I, ISD::MEMMOVE); |
| 1534 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1535 | |
Chris Lattner | 86cb643 | 2005-12-13 17:40:33 +0000 | [diff] [blame] | 1536 | case Intrinsic::dbg_stoppoint: { |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 1537 | MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1538 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Jim Laskey | fbcf23c | 2006-03-26 22:46:27 +0000 | [diff] [blame] | 1539 | if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) { |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1540 | SDOperand Ops[5]; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1541 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1542 | Ops[0] = getRoot(); |
| 1543 | Ops[1] = getValue(SPI.getLineValue()); |
| 1544 | Ops[2] = getValue(SPI.getColumnValue()); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1545 | |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1546 | DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext()); |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 1547 | assert(DD && "Not a debug information descriptor"); |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1548 | CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD); |
| 1549 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1550 | Ops[3] = DAG.getString(CompileUnit->getFileName()); |
| 1551 | Ops[4] = DAG.getString(CompileUnit->getDirectory()); |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 1552 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1553 | DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5)); |
Chris Lattner | 86cb643 | 2005-12-13 17:40:33 +0000 | [diff] [blame] | 1554 | } |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1555 | |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 1556 | return 0; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1557 | } |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1558 | case Intrinsic::dbg_region_start: { |
| 1559 | MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); |
| 1560 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Jim Laskey | fbcf23c | 2006-03-26 22:46:27 +0000 | [diff] [blame] | 1561 | if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) { |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1562 | unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext()); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1563 | DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, getRoot(), |
| 1564 | DAG.getConstant(LabelID, MVT::i32))); |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 1567 | return 0; |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1568 | } |
| 1569 | case Intrinsic::dbg_region_end: { |
| 1570 | MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); |
| 1571 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Jim Laskey | fbcf23c | 2006-03-26 22:46:27 +0000 | [diff] [blame] | 1572 | if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) { |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1573 | unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext()); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1574 | DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, |
| 1575 | getRoot(), DAG.getConstant(LabelID, MVT::i32))); |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1576 | } |
| 1577 | |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 1578 | return 0; |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1579 | } |
| 1580 | case Intrinsic::dbg_func_start: { |
| 1581 | MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); |
| 1582 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
Jim Laskey | fbcf23c | 2006-03-26 22:46:27 +0000 | [diff] [blame] | 1583 | if (DebugInfo && FSI.getSubprogram() && |
| 1584 | DebugInfo->Verify(FSI.getSubprogram())) { |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1585 | unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram()); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1586 | DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, |
| 1587 | getRoot(), DAG.getConstant(LabelID, MVT::i32))); |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1588 | } |
| 1589 | |
Chris Lattner | b1a5a5c | 2005-11-16 07:22:30 +0000 | [diff] [blame] | 1590 | return 0; |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1591 | } |
| 1592 | case Intrinsic::dbg_declare: { |
| 1593 | MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); |
| 1594 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
Jim Laskey | bf7637d | 2006-03-28 13:45:20 +0000 | [diff] [blame] | 1595 | if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) { |
Jim Laskey | 0892cee | 2006-03-24 09:50:27 +0000 | [diff] [blame] | 1596 | SDOperand AddressOp = getValue(DI.getAddress()); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1597 | if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1598 | DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex()); |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 1599 | } |
| 1600 | |
| 1601 | return 0; |
| 1602 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1603 | |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1604 | case Intrinsic::isunordered_f32: |
| 1605 | case Intrinsic::isunordered_f64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1606 | setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)), |
| 1607 | getValue(I.getOperand(2)), ISD::SETUO)); |
| 1608 | return 0; |
| 1609 | |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1610 | case Intrinsic::sqrt_f32: |
| 1611 | case Intrinsic::sqrt_f64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1612 | setValue(&I, DAG.getNode(ISD::FSQRT, |
| 1613 | getValue(I.getOperand(1)).getValueType(), |
| 1614 | getValue(I.getOperand(1)))); |
| 1615 | return 0; |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 1616 | case Intrinsic::powi_f32: |
| 1617 | case Intrinsic::powi_f64: |
| 1618 | setValue(&I, DAG.getNode(ISD::FPOWI, |
| 1619 | getValue(I.getOperand(1)).getValueType(), |
| 1620 | getValue(I.getOperand(1)), |
| 1621 | getValue(I.getOperand(2)))); |
| 1622 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1623 | case Intrinsic::pcmarker: { |
| 1624 | SDOperand Tmp = getValue(I.getOperand(1)); |
| 1625 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp)); |
| 1626 | return 0; |
| 1627 | } |
Andrew Lenharth | 8b91c77 | 2005-11-11 22:48:54 +0000 | [diff] [blame] | 1628 | case Intrinsic::readcyclecounter: { |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1629 | SDOperand Op = getRoot(); |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1630 | SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, |
| 1631 | DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2, |
| 1632 | &Op, 1); |
Andrew Lenharth | 8b91c77 | 2005-11-11 22:48:54 +0000 | [diff] [blame] | 1633 | setValue(&I, Tmp); |
| 1634 | DAG.setRoot(Tmp.getValue(1)); |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 1635 | return 0; |
Andrew Lenharth | 8b91c77 | 2005-11-11 22:48:54 +0000 | [diff] [blame] | 1636 | } |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 1637 | case Intrinsic::bswap_i16: |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 1638 | case Intrinsic::bswap_i32: |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 1639 | case Intrinsic::bswap_i64: |
| 1640 | setValue(&I, DAG.getNode(ISD::BSWAP, |
| 1641 | getValue(I.getOperand(1)).getValueType(), |
| 1642 | getValue(I.getOperand(1)))); |
| 1643 | return 0; |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1644 | case Intrinsic::cttz_i8: |
| 1645 | case Intrinsic::cttz_i16: |
| 1646 | case Intrinsic::cttz_i32: |
| 1647 | case Intrinsic::cttz_i64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1648 | setValue(&I, DAG.getNode(ISD::CTTZ, |
| 1649 | getValue(I.getOperand(1)).getValueType(), |
| 1650 | getValue(I.getOperand(1)))); |
| 1651 | return 0; |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1652 | case Intrinsic::ctlz_i8: |
| 1653 | case Intrinsic::ctlz_i16: |
| 1654 | case Intrinsic::ctlz_i32: |
| 1655 | case Intrinsic::ctlz_i64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1656 | setValue(&I, DAG.getNode(ISD::CTLZ, |
| 1657 | getValue(I.getOperand(1)).getValueType(), |
| 1658 | getValue(I.getOperand(1)))); |
| 1659 | return 0; |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 1660 | case Intrinsic::ctpop_i8: |
| 1661 | case Intrinsic::ctpop_i16: |
| 1662 | case Intrinsic::ctpop_i32: |
| 1663 | case Intrinsic::ctpop_i64: |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1664 | setValue(&I, DAG.getNode(ISD::CTPOP, |
| 1665 | getValue(I.getOperand(1)).getValueType(), |
| 1666 | getValue(I.getOperand(1)))); |
| 1667 | return 0; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 1668 | case Intrinsic::stacksave: { |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1669 | SDOperand Op = getRoot(); |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 1670 | SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, |
| 1671 | DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 1672 | setValue(&I, Tmp); |
| 1673 | DAG.setRoot(Tmp.getValue(1)); |
| 1674 | return 0; |
| 1675 | } |
Chris Lattner | 39a17dd | 2006-01-23 05:22:07 +0000 | [diff] [blame] | 1676 | case Intrinsic::stackrestore: { |
| 1677 | SDOperand Tmp = getValue(I.getOperand(1)); |
| 1678 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp)); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 1679 | return 0; |
Chris Lattner | 39a17dd | 2006-01-23 05:22:07 +0000 | [diff] [blame] | 1680 | } |
Chris Lattner | ac22c83 | 2005-12-12 22:51:16 +0000 | [diff] [blame] | 1681 | case Intrinsic::prefetch: |
| 1682 | // FIXME: Currently discarding prefetches. |
| 1683 | return 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1684 | } |
| 1685 | } |
| 1686 | |
| 1687 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1688 | void SelectionDAGLowering::visitCall(CallInst &I) { |
Chris Lattner | 64e14b1 | 2005-01-08 22:48:57 +0000 | [diff] [blame] | 1689 | const char *RenameFn = 0; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1690 | if (Function *F = I.getCalledFunction()) { |
Chris Lattner | c0f1815 | 2005-04-02 05:26:53 +0000 | [diff] [blame] | 1691 | if (F->isExternal()) |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1692 | if (unsigned IID = F->getIntrinsicID()) { |
| 1693 | RenameFn = visitIntrinsicCall(I, IID); |
| 1694 | if (!RenameFn) |
| 1695 | return; |
| 1696 | } else { // Not an LLVM intrinsic. |
| 1697 | const std::string &Name = F->getName(); |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 1698 | if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) { |
| 1699 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 1700 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 1701 | I.getType() == I.getOperand(1)->getType() && |
| 1702 | I.getType() == I.getOperand(2)->getType()) { |
| 1703 | SDOperand LHS = getValue(I.getOperand(1)); |
| 1704 | SDOperand RHS = getValue(I.getOperand(2)); |
| 1705 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(), |
| 1706 | LHS, RHS)); |
| 1707 | return; |
| 1708 | } |
| 1709 | } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) { |
Chris Lattner | c0f1815 | 2005-04-02 05:26:53 +0000 | [diff] [blame] | 1710 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 1711 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 1712 | I.getType() == I.getOperand(1)->getType()) { |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1713 | SDOperand Tmp = getValue(I.getOperand(1)); |
Chris Lattner | c0f1815 | 2005-04-02 05:26:53 +0000 | [diff] [blame] | 1714 | setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp)); |
| 1715 | return; |
| 1716 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1717 | } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) { |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1718 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 1719 | I.getOperand(1)->getType()->isFloatingPoint() && |
Chris Lattner | 06a248c9 | 2006-02-14 05:39:35 +0000 | [diff] [blame] | 1720 | I.getType() == I.getOperand(1)->getType()) { |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1721 | SDOperand Tmp = getValue(I.getOperand(1)); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1722 | setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp)); |
| 1723 | return; |
| 1724 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1725 | } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) { |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1726 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 1727 | I.getOperand(1)->getType()->isFloatingPoint() && |
Chris Lattner | 06a248c9 | 2006-02-14 05:39:35 +0000 | [diff] [blame] | 1728 | I.getType() == I.getOperand(1)->getType()) { |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1729 | SDOperand Tmp = getValue(I.getOperand(1)); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 1730 | setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp)); |
| 1731 | return; |
| 1732 | } |
| 1733 | } |
Chris Lattner | 1ca85d5 | 2005-05-14 13:56:55 +0000 | [diff] [blame] | 1734 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1735 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 1736 | visitInlineAsm(I); |
| 1737 | return; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1738 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1739 | |
Chris Lattner | 64e14b1 | 2005-01-08 22:48:57 +0000 | [diff] [blame] | 1740 | SDOperand Callee; |
| 1741 | if (!RenameFn) |
| 1742 | Callee = getValue(I.getOperand(0)); |
| 1743 | else |
| 1744 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1745 | std::vector<std::pair<SDOperand, const Type*> > Args; |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 1746 | Args.reserve(I.getNumOperands()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1747 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 1748 | Value *Arg = I.getOperand(i); |
| 1749 | SDOperand ArgNode = getValue(Arg); |
| 1750 | Args.push_back(std::make_pair(ArgNode, Arg->getType())); |
| 1751 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1752 | |
Nate Begeman | 8e21e71 | 2005-03-26 01:29:23 +0000 | [diff] [blame] | 1753 | const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType()); |
| 1754 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1755 | |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1756 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | 9092fa3 | 2005-05-12 19:56:57 +0000 | [diff] [blame] | 1757 | TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(), |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 1758 | I.isTailCall(), Callee, Args, DAG); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1759 | if (I.getType() != Type::VoidTy) |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 1760 | setValue(&I, Result.first); |
| 1761 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 1762 | } |
| 1763 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1764 | SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG, |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 1765 | SDOperand &Chain, SDOperand &Flag)const{ |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1766 | SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag); |
| 1767 | Chain = Val.getValue(1); |
| 1768 | Flag = Val.getValue(2); |
| 1769 | |
| 1770 | // If the result was expanded, copy from the top part. |
| 1771 | if (Regs.size() > 1) { |
| 1772 | assert(Regs.size() == 2 && |
| 1773 | "Cannot expand to more than 2 elts yet!"); |
| 1774 | SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag); |
Evan Cheng | 693163e | 2006-10-04 22:23:53 +0000 | [diff] [blame] | 1775 | Chain = Hi.getValue(1); |
| 1776 | Flag = Hi.getValue(2); |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 1777 | if (DAG.getTargetLoweringInfo().isLittleEndian()) |
| 1778 | return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi); |
| 1779 | else |
| 1780 | return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val); |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1781 | } |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1782 | |
Chris Lattner | cf752aa | 2006-06-08 18:22:48 +0000 | [diff] [blame] | 1783 | // Otherwise, if the return value was promoted or extended, truncate it to the |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1784 | // appropriate type. |
| 1785 | if (RegVT == ValueVT) |
| 1786 | return Val; |
| 1787 | |
Chris Lattner | cf752aa | 2006-06-08 18:22:48 +0000 | [diff] [blame] | 1788 | if (MVT::isInteger(RegVT)) { |
| 1789 | if (ValueVT < RegVT) |
| 1790 | return DAG.getNode(ISD::TRUNCATE, ValueVT, Val); |
| 1791 | else |
| 1792 | return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val); |
| 1793 | } else { |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1794 | return DAG.getNode(ISD::FP_ROUND, ValueVT, Val); |
Chris Lattner | cf752aa | 2006-06-08 18:22:48 +0000 | [diff] [blame] | 1795 | } |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1796 | } |
| 1797 | |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1798 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
| 1799 | /// specified value into the registers specified by this object. This uses |
| 1800 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 1801 | void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 1802 | SDOperand &Chain, SDOperand &Flag, |
| 1803 | MVT::ValueType PtrVT) const { |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1804 | if (Regs.size() == 1) { |
| 1805 | // If there is a single register and the types differ, this must be |
| 1806 | // a promotion. |
| 1807 | if (RegVT != ValueVT) { |
Chris Lattner | 0c48fd4 | 2006-06-08 18:27:11 +0000 | [diff] [blame] | 1808 | if (MVT::isInteger(RegVT)) { |
| 1809 | if (RegVT < ValueVT) |
| 1810 | Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val); |
| 1811 | else |
| 1812 | Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val); |
| 1813 | } else |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1814 | Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val); |
| 1815 | } |
| 1816 | Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag); |
| 1817 | Flag = Chain.getValue(1); |
| 1818 | } else { |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 1819 | std::vector<unsigned> R(Regs); |
| 1820 | if (!DAG.getTargetLoweringInfo().isLittleEndian()) |
| 1821 | std::reverse(R.begin(), R.end()); |
| 1822 | |
| 1823 | for (unsigned i = 0, e = R.size(); i != e; ++i) { |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1824 | SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 1825 | DAG.getConstant(i, PtrVT)); |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 1826 | Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag); |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1827 | Flag = Chain.getValue(1); |
| 1828 | } |
| 1829 | } |
| 1830 | } |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1831 | |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1832 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
| 1833 | /// operand list. This adds the code marker and includes the number of |
| 1834 | /// values added into it. |
| 1835 | void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG, |
Chris Lattner | 9f6637d | 2006-02-23 20:06:57 +0000 | [diff] [blame] | 1836 | std::vector<SDOperand> &Ops) const { |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1837 | Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32)); |
| 1838 | for (unsigned i = 0, e = Regs.size(); i != e; ++i) |
| 1839 | Ops.push_back(DAG.getRegister(Regs[i], RegVT)); |
| 1840 | } |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1841 | |
| 1842 | /// isAllocatableRegister - If the specified register is safe to allocate, |
| 1843 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 1844 | /// register class for the register. Otherwise, return null. |
| 1845 | static const TargetRegisterClass * |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1846 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 1847 | const TargetLowering &TLI, const MRegisterInfo *MRI) { |
Chris Lattner | f8814cf | 2006-04-02 00:24:45 +0000 | [diff] [blame] | 1848 | MVT::ValueType FoundVT = MVT::Other; |
| 1849 | const TargetRegisterClass *FoundRC = 0; |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1850 | for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(), |
| 1851 | E = MRI->regclass_end(); RCI != E; ++RCI) { |
Chris Lattner | f8814cf | 2006-04-02 00:24:45 +0000 | [diff] [blame] | 1852 | MVT::ValueType ThisVT = MVT::Other; |
| 1853 | |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1854 | const TargetRegisterClass *RC = *RCI; |
| 1855 | // If none of the the value types for this register class are valid, we |
| 1856 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1857 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 1858 | I != E; ++I) { |
| 1859 | if (TLI.isTypeLegal(*I)) { |
Chris Lattner | f8814cf | 2006-04-02 00:24:45 +0000 | [diff] [blame] | 1860 | // If we have already found this register in a different register class, |
| 1861 | // choose the one with the largest VT specified. For example, on |
| 1862 | // PowerPC, we favor f64 register classes over f32. |
| 1863 | if (FoundVT == MVT::Other || |
| 1864 | MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) { |
| 1865 | ThisVT = *I; |
| 1866 | break; |
| 1867 | } |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1868 | } |
| 1869 | } |
| 1870 | |
Chris Lattner | f8814cf | 2006-04-02 00:24:45 +0000 | [diff] [blame] | 1871 | if (ThisVT == MVT::Other) continue; |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1872 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1873 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 1874 | // frame pointer in functions that need it (due to them not being taken |
| 1875 | // out of allocation, because a variable sized allocation hasn't been seen |
| 1876 | // yet). This is a slight code pessimization, but should still work. |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1877 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 1878 | E = RC->allocation_order_end(MF); I != E; ++I) |
Chris Lattner | f8814cf | 2006-04-02 00:24:45 +0000 | [diff] [blame] | 1879 | if (*I == Reg) { |
| 1880 | // We found a matching register class. Keep looking at others in case |
| 1881 | // we find one with larger registers that this physreg is also in. |
| 1882 | FoundRC = RC; |
| 1883 | FoundVT = ThisVT; |
| 1884 | break; |
| 1885 | } |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1886 | } |
Chris Lattner | f8814cf | 2006-04-02 00:24:45 +0000 | [diff] [blame] | 1887 | return FoundRC; |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1888 | } |
| 1889 | |
| 1890 | RegsForValue SelectionDAGLowering:: |
| 1891 | GetRegistersForValue(const std::string &ConstrCode, |
| 1892 | MVT::ValueType VT, bool isOutReg, bool isInReg, |
| 1893 | std::set<unsigned> &OutputRegs, |
| 1894 | std::set<unsigned> &InputRegs) { |
| 1895 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
| 1896 | TLI.getRegForInlineAsmConstraint(ConstrCode, VT); |
| 1897 | std::vector<unsigned> Regs; |
| 1898 | |
| 1899 | unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1; |
| 1900 | MVT::ValueType RegVT; |
| 1901 | MVT::ValueType ValueVT = VT; |
| 1902 | |
| 1903 | if (PhysReg.first) { |
| 1904 | if (VT == MVT::Other) |
| 1905 | ValueVT = *PhysReg.second->vt_begin(); |
Chris Lattner | cf752aa | 2006-06-08 18:22:48 +0000 | [diff] [blame] | 1906 | |
| 1907 | // Get the actual register value type. This is important, because the user |
| 1908 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 1909 | // remember that AX is actually i16 to get the right extension. |
| 1910 | RegVT = *PhysReg.second->vt_begin(); |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1911 | |
| 1912 | // This is a explicit reference to a physical register. |
| 1913 | Regs.push_back(PhysReg.first); |
| 1914 | |
| 1915 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 1916 | if (NumRegs != 1) { |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1917 | TargetRegisterClass::iterator I = PhysReg.second->begin(); |
| 1918 | TargetRegisterClass::iterator E = PhysReg.second->end(); |
| 1919 | for (; *I != PhysReg.first; ++I) |
| 1920 | assert(I != E && "Didn't find reg!"); |
| 1921 | |
| 1922 | // Already added the first reg. |
| 1923 | --NumRegs; ++I; |
| 1924 | for (; NumRegs; --NumRegs, ++I) { |
| 1925 | assert(I != E && "Ran out of registers to allocate!"); |
| 1926 | Regs.push_back(*I); |
| 1927 | } |
| 1928 | } |
| 1929 | return RegsForValue(Regs, RegVT, ValueVT); |
| 1930 | } |
| 1931 | |
| 1932 | // This is a reference to a register class. Allocate NumRegs consecutive, |
| 1933 | // available, registers from the class. |
| 1934 | std::vector<unsigned> RegClassRegs = |
| 1935 | TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT); |
| 1936 | |
| 1937 | const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo(); |
| 1938 | MachineFunction &MF = *CurMBB->getParent(); |
| 1939 | unsigned NumAllocated = 0; |
| 1940 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 1941 | unsigned Reg = RegClassRegs[i]; |
| 1942 | // See if this register is available. |
| 1943 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 1944 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 1945 | // Make sure we find consecutive registers. |
| 1946 | NumAllocated = 0; |
| 1947 | continue; |
| 1948 | } |
| 1949 | |
| 1950 | // Check to see if this register is allocatable (i.e. don't give out the |
| 1951 | // stack pointer). |
Chris Lattner | 9b6fb5d | 2006-02-22 23:09:03 +0000 | [diff] [blame] | 1952 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI); |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1953 | if (!RC) { |
| 1954 | // Make sure we find consecutive registers. |
| 1955 | NumAllocated = 0; |
| 1956 | continue; |
| 1957 | } |
| 1958 | |
| 1959 | // Okay, this register is good, we can use it. |
| 1960 | ++NumAllocated; |
| 1961 | |
| 1962 | // If we allocated enough consecutive |
| 1963 | if (NumAllocated == NumRegs) { |
| 1964 | unsigned RegStart = (i-NumAllocated)+1; |
| 1965 | unsigned RegEnd = i+1; |
| 1966 | // Mark all of the allocated registers used. |
| 1967 | for (unsigned i = RegStart; i != RegEnd; ++i) { |
| 1968 | unsigned Reg = RegClassRegs[i]; |
| 1969 | Regs.push_back(Reg); |
| 1970 | if (isOutReg) OutputRegs.insert(Reg); // Mark reg used. |
| 1971 | if (isInReg) InputRegs.insert(Reg); // Mark reg used. |
| 1972 | } |
| 1973 | |
| 1974 | return RegsForValue(Regs, *RC->vt_begin(), VT); |
| 1975 | } |
| 1976 | } |
| 1977 | |
| 1978 | // Otherwise, we couldn't allocate enough registers for this. |
| 1979 | return RegsForValue(); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 1980 | } |
| 1981 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 1982 | |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1983 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 1984 | /// |
| 1985 | void SelectionDAGLowering::visitInlineAsm(CallInst &I) { |
| 1986 | InlineAsm *IA = cast<InlineAsm>(I.getOperand(0)); |
| 1987 | |
| 1988 | SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), |
| 1989 | MVT::Other); |
| 1990 | |
| 1991 | // Note, we treat inline asms both with and without side-effects as the same. |
| 1992 | // If an inline asm doesn't have side effects and doesn't access memory, we |
| 1993 | // could not choose to not chain it. |
| 1994 | bool hasSideEffects = IA->hasSideEffects(); |
| 1995 | |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1996 | std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints(); |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 1997 | std::vector<MVT::ValueType> ConstraintVTs; |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1998 | |
| 1999 | /// AsmNodeOperands - A list of pairs. The first element is a register, the |
| 2000 | /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set |
| 2001 | /// if it is a def of that register. |
| 2002 | std::vector<SDOperand> AsmNodeOperands; |
| 2003 | AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain |
| 2004 | AsmNodeOperands.push_back(AsmStr); |
| 2005 | |
| 2006 | SDOperand Chain = getRoot(); |
| 2007 | SDOperand Flag; |
| 2008 | |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2009 | // We fully assign registers here at isel time. This is not optimal, but |
| 2010 | // should work. For register classes that correspond to LLVM classes, we |
| 2011 | // could let the LLVM RA do its thing, but we currently don't. Do a prepass |
| 2012 | // over the constraints, collecting fixed registers that we know we can't use. |
| 2013 | std::set<unsigned> OutputRegs, InputRegs; |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2014 | unsigned OpNum = 1; |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2015 | for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { |
| 2016 | assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!"); |
| 2017 | std::string &ConstraintCode = Constraints[i].Codes[0]; |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 2018 | |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2019 | MVT::ValueType OpVT; |
| 2020 | |
| 2021 | // Compute the value type for each operand and add it to ConstraintVTs. |
| 2022 | switch (Constraints[i].Type) { |
| 2023 | case InlineAsm::isOutput: |
| 2024 | if (!Constraints[i].isIndirectOutput) { |
| 2025 | assert(I.getType() != Type::VoidTy && "Bad inline asm!"); |
| 2026 | OpVT = TLI.getValueType(I.getType()); |
| 2027 | } else { |
Chris Lattner | 2287346 | 2006-02-27 23:45:39 +0000 | [diff] [blame] | 2028 | const Type *OpTy = I.getOperand(OpNum)->getType(); |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2029 | OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType()); |
| 2030 | OpNum++; // Consumes a call operand. |
| 2031 | } |
| 2032 | break; |
| 2033 | case InlineAsm::isInput: |
| 2034 | OpVT = TLI.getValueType(I.getOperand(OpNum)->getType()); |
| 2035 | OpNum++; // Consumes a call operand. |
| 2036 | break; |
| 2037 | case InlineAsm::isClobber: |
| 2038 | OpVT = MVT::Other; |
| 2039 | break; |
| 2040 | } |
| 2041 | |
| 2042 | ConstraintVTs.push_back(OpVT); |
| 2043 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2044 | if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0) |
| 2045 | continue; // Not assigned a fixed reg. |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2046 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2047 | // Build a list of regs that this operand uses. This always has a single |
| 2048 | // element for promoted/expanded operands. |
| 2049 | RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT, |
| 2050 | false, false, |
| 2051 | OutputRegs, InputRegs); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2052 | |
| 2053 | switch (Constraints[i].Type) { |
| 2054 | case InlineAsm::isOutput: |
| 2055 | // We can't assign any other output to this register. |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2056 | OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end()); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2057 | // If this is an early-clobber output, it cannot be assigned to the same |
| 2058 | // value as the input reg. |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 2059 | if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput) |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2060 | InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end()); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2061 | break; |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2062 | case InlineAsm::isInput: |
| 2063 | // We can't assign any other input to this register. |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2064 | InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end()); |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2065 | break; |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2066 | case InlineAsm::isClobber: |
| 2067 | // Clobbered regs cannot be used as inputs or outputs. |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2068 | InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end()); |
| 2069 | OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end()); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2070 | break; |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2071 | } |
| 2072 | } |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2073 | |
Chris Lattner | 0f0b7d4 | 2006-02-21 23:12:12 +0000 | [diff] [blame] | 2074 | // Loop over all of the inputs, copying the operand values into the |
| 2075 | // appropriate registers and processing the output regs. |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2076 | RegsForValue RetValRegs; |
| 2077 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2078 | OpNum = 1; |
Chris Lattner | 0f0b7d4 | 2006-02-21 23:12:12 +0000 | [diff] [blame] | 2079 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2080 | for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2081 | assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!"); |
| 2082 | std::string &ConstraintCode = Constraints[i].Codes[0]; |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2083 | |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2084 | switch (Constraints[i].Type) { |
| 2085 | case InlineAsm::isOutput: { |
Chris Lattner | 2287346 | 2006-02-27 23:45:39 +0000 | [diff] [blame] | 2086 | TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass; |
| 2087 | if (ConstraintCode.size() == 1) // not a physreg name. |
| 2088 | CTy = TLI.getConstraintType(ConstraintCode[0]); |
| 2089 | |
| 2090 | if (CTy == TargetLowering::C_Memory) { |
| 2091 | // Memory output. |
| 2092 | SDOperand InOperandVal = getValue(I.getOperand(OpNum)); |
| 2093 | |
| 2094 | // Check that the operand (the address to store to) isn't a float. |
| 2095 | if (!MVT::isInteger(InOperandVal.getValueType())) |
| 2096 | assert(0 && "MATCH FAIL!"); |
| 2097 | |
| 2098 | if (!Constraints[i].isIndirectOutput) |
| 2099 | assert(0 && "MATCH FAIL!"); |
| 2100 | |
| 2101 | OpNum++; // Consumes a call operand. |
| 2102 | |
| 2103 | // Extend/truncate to the right pointer type if needed. |
| 2104 | MVT::ValueType PtrType = TLI.getPointerTy(); |
| 2105 | if (InOperandVal.getValueType() < PtrType) |
| 2106 | InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal); |
| 2107 | else if (InOperandVal.getValueType() > PtrType) |
| 2108 | InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal); |
| 2109 | |
| 2110 | // Add information to the INLINEASM node to know about this output. |
| 2111 | unsigned ResOpType = 4/*MEM*/ | (1 << 3); |
| 2112 | AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32)); |
| 2113 | AsmNodeOperands.push_back(InOperandVal); |
| 2114 | break; |
| 2115 | } |
| 2116 | |
| 2117 | // Otherwise, this is a register output. |
| 2118 | assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!"); |
| 2119 | |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2120 | // If this is an early-clobber output, or if there is an input |
| 2121 | // constraint that matches this, we need to reserve the input register |
| 2122 | // so no other inputs allocate to it. |
| 2123 | bool UsesInputRegister = false; |
| 2124 | if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput) |
| 2125 | UsesInputRegister = true; |
| 2126 | |
| 2127 | // Copy the output from the appropriate register. Find a register that |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2128 | // we can use. |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2129 | RegsForValue Regs = |
| 2130 | GetRegistersForValue(ConstraintCode, ConstraintVTs[i], |
| 2131 | true, UsesInputRegister, |
| 2132 | OutputRegs, InputRegs); |
| 2133 | assert(!Regs.Regs.empty() && "Couldn't allocate output reg!"); |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2134 | |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2135 | if (!Constraints[i].isIndirectOutput) { |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2136 | assert(RetValRegs.Regs.empty() && |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2137 | "Cannot have multiple output constraints yet!"); |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2138 | assert(I.getType() != Type::VoidTy && "Bad inline asm!"); |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2139 | RetValRegs = Regs; |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2140 | } else { |
Chris Lattner | 2287346 | 2006-02-27 23:45:39 +0000 | [diff] [blame] | 2141 | IndirectStoresToEmit.push_back(std::make_pair(Regs, |
| 2142 | I.getOperand(OpNum))); |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 2143 | OpNum++; // Consumes a call operand. |
| 2144 | } |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2145 | |
| 2146 | // Add information to the INLINEASM node to know that this register is |
| 2147 | // set. |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2148 | Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2149 | break; |
| 2150 | } |
| 2151 | case InlineAsm::isInput: { |
Chris Lattner | 2287346 | 2006-02-27 23:45:39 +0000 | [diff] [blame] | 2152 | SDOperand InOperandVal = getValue(I.getOperand(OpNum)); |
Chris Lattner | 4e4b576 | 2006-02-01 18:59:47 +0000 | [diff] [blame] | 2153 | OpNum++; // Consumes a call operand. |
Chris Lattner | 3d81fee | 2006-02-04 02:16:44 +0000 | [diff] [blame] | 2154 | |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 2155 | if (isdigit(ConstraintCode[0])) { // Matching constraint? |
| 2156 | // If this is required to match an output register we have already set, |
| 2157 | // just use its register. |
| 2158 | unsigned OperandNo = atoi(ConstraintCode.c_str()); |
Chris Lattner | 3d81fee | 2006-02-04 02:16:44 +0000 | [diff] [blame] | 2159 | |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2160 | // Scan until we find the definition we already emitted of this operand. |
| 2161 | // When we find it, create a RegsForValue operand. |
| 2162 | unsigned CurOp = 2; // The first operand. |
| 2163 | for (; OperandNo; --OperandNo) { |
| 2164 | // Advance to the next operand. |
| 2165 | unsigned NumOps = |
| 2166 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue(); |
Chris Lattner | a15cf70 | 2006-07-20 19:02:21 +0000 | [diff] [blame] | 2167 | assert(((NumOps & 7) == 2 /*REGDEF*/ || |
| 2168 | (NumOps & 7) == 4 /*MEM*/) && |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2169 | "Skipped past definitions?"); |
| 2170 | CurOp += (NumOps>>3)+1; |
| 2171 | } |
| 2172 | |
| 2173 | unsigned NumOps = |
| 2174 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue(); |
| 2175 | assert((NumOps & 7) == 2 /*REGDEF*/ && |
| 2176 | "Skipped past definitions?"); |
| 2177 | |
| 2178 | // Add NumOps>>3 registers to MatchedRegs. |
| 2179 | RegsForValue MatchedRegs; |
| 2180 | MatchedRegs.ValueVT = InOperandVal.getValueType(); |
| 2181 | MatchedRegs.RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
| 2182 | for (unsigned i = 0, e = NumOps>>3; i != e; ++i) { |
| 2183 | unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg(); |
| 2184 | MatchedRegs.Regs.push_back(Reg); |
| 2185 | } |
| 2186 | |
| 2187 | // Use the produced MatchedRegs object to |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 2188 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag, |
| 2189 | TLI.getPointerTy()); |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2190 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands); |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2191 | break; |
Chris Lattner | 2223aea | 2006-02-02 00:25:23 +0000 | [diff] [blame] | 2192 | } |
Chris Lattner | 87bc3bd | 2006-02-24 01:11:24 +0000 | [diff] [blame] | 2193 | |
| 2194 | TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass; |
| 2195 | if (ConstraintCode.size() == 1) // not a physreg name. |
| 2196 | CTy = TLI.getConstraintType(ConstraintCode[0]); |
| 2197 | |
| 2198 | if (CTy == TargetLowering::C_Other) { |
| 2199 | if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0])) |
| 2200 | assert(0 && "MATCH FAIL!"); |
| 2201 | |
| 2202 | // Add information to the INLINEASM node to know about this input. |
| 2203 | unsigned ResOpType = 3 /*IMM*/ | (1 << 3); |
| 2204 | AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32)); |
| 2205 | AsmNodeOperands.push_back(InOperandVal); |
| 2206 | break; |
| 2207 | } else if (CTy == TargetLowering::C_Memory) { |
| 2208 | // Memory input. |
| 2209 | |
| 2210 | // Check that the operand isn't a float. |
| 2211 | if (!MVT::isInteger(InOperandVal.getValueType())) |
| 2212 | assert(0 && "MATCH FAIL!"); |
| 2213 | |
| 2214 | // Extend/truncate to the right pointer type if needed. |
| 2215 | MVT::ValueType PtrType = TLI.getPointerTy(); |
| 2216 | if (InOperandVal.getValueType() < PtrType) |
| 2217 | InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal); |
| 2218 | else if (InOperandVal.getValueType() > PtrType) |
| 2219 | InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal); |
| 2220 | |
| 2221 | // Add information to the INLINEASM node to know about this input. |
| 2222 | unsigned ResOpType = 4/*MEM*/ | (1 << 3); |
| 2223 | AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32)); |
| 2224 | AsmNodeOperands.push_back(InOperandVal); |
| 2225 | break; |
| 2226 | } |
| 2227 | |
| 2228 | assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!"); |
| 2229 | |
| 2230 | // Copy the input into the appropriate registers. |
| 2231 | RegsForValue InRegs = |
| 2232 | GetRegistersForValue(ConstraintCode, ConstraintVTs[i], |
| 2233 | false, true, OutputRegs, InputRegs); |
| 2234 | // FIXME: should be match fail. |
| 2235 | assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!"); |
| 2236 | |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 2237 | InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag, TLI.getPointerTy()); |
Chris Lattner | 87bc3bd | 2006-02-24 01:11:24 +0000 | [diff] [blame] | 2238 | |
| 2239 | InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2240 | break; |
| 2241 | } |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2242 | case InlineAsm::isClobber: { |
| 2243 | RegsForValue ClobberedRegs = |
| 2244 | GetRegistersForValue(ConstraintCode, MVT::Other, false, false, |
| 2245 | OutputRegs, InputRegs); |
| 2246 | // Add the clobbered value to the operand list, so that the register |
| 2247 | // allocator is aware that the physreg got clobbered. |
| 2248 | if (!ClobberedRegs.Regs.empty()) |
| 2249 | ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2250 | break; |
| 2251 | } |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 2252 | } |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2253 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 2254 | |
| 2255 | // Finish up input operands. |
| 2256 | AsmNodeOperands[0] = Chain; |
| 2257 | if (Flag.Val) AsmNodeOperands.push_back(Flag); |
| 2258 | |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 2259 | Chain = DAG.getNode(ISD::INLINEASM, |
| 2260 | DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2261 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 2262 | Flag = Chain.getValue(1); |
| 2263 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2264 | // If this asm returns a register value, copy the result from that register |
| 2265 | // and set it as the value of the call. |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2266 | if (!RetValRegs.Regs.empty()) |
| 2267 | setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag)); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 2268 | |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2269 | std::vector<std::pair<SDOperand, Value*> > StoresToEmit; |
| 2270 | |
| 2271 | // Process indirect outputs, first output all of the flagged copies out of |
| 2272 | // physregs. |
| 2273 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2274 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2275 | Value *Ptr = IndirectStoresToEmit[i].second; |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2276 | SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag); |
| 2277 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2278 | } |
| 2279 | |
| 2280 | // Emit the non-flagged stores from the physregs. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2281 | SmallVector<SDOperand, 8> OutChains; |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2282 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 2283 | OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first, |
Chris Lattner | 6656dd1 | 2006-01-31 02:03:41 +0000 | [diff] [blame] | 2284 | getValue(StoresToEmit[i].second), |
| 2285 | DAG.getSrcValue(StoresToEmit[i].second))); |
| 2286 | if (!OutChains.empty()) |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2287 | Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 2288 | &OutChains[0], OutChains.size()); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 2289 | DAG.setRoot(Chain); |
| 2290 | } |
| 2291 | |
| 2292 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2293 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 2294 | SDOperand Src = getValue(I.getOperand(0)); |
| 2295 | |
| 2296 | MVT::ValueType IntPtr = TLI.getPointerTy(); |
Chris Lattner | 68cd65e | 2005-01-22 23:04:37 +0000 | [diff] [blame] | 2297 | |
| 2298 | if (IntPtr < Src.getValueType()) |
| 2299 | Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src); |
| 2300 | else if (IntPtr > Src.getValueType()) |
| 2301 | Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2302 | |
| 2303 | // Scale the source by the type size. |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 2304 | uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2305 | Src = DAG.getNode(ISD::MUL, Src.getValueType(), |
| 2306 | Src, getIntPtrConstant(ElementSize)); |
| 2307 | |
| 2308 | std::vector<std::pair<SDOperand, const Type*> > Args; |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 2309 | Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType())); |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 2310 | |
| 2311 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 2312 | TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true, |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 2313 | DAG.getExternalSymbol("malloc", IntPtr), |
| 2314 | Args, DAG); |
| 2315 | setValue(&I, Result.first); // Pointers always fit in registers |
| 2316 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2317 | } |
| 2318 | |
| 2319 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 2320 | std::vector<std::pair<SDOperand, const Type*> > Args; |
| 2321 | Args.push_back(std::make_pair(getValue(I.getOperand(0)), |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 2322 | TLI.getTargetData()->getIntPtrType())); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2323 | MVT::ValueType IntPtr = TLI.getPointerTy(); |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 2324 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 2325 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true, |
Chris Lattner | cf5734d | 2005-01-08 19:26:18 +0000 | [diff] [blame] | 2326 | DAG.getExternalSymbol("free", IntPtr), Args, DAG); |
| 2327 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2328 | } |
| 2329 | |
Chris Lattner | 025c39b | 2005-08-26 20:54:47 +0000 | [diff] [blame] | 2330 | // InsertAtEndOfBasicBlock - This method should be implemented by targets that |
| 2331 | // mark instructions with the 'usesCustomDAGSchedInserter' flag. These |
| 2332 | // instructions are special in various ways, which require special support to |
| 2333 | // insert. The specified MachineInstr is created but not inserted into any |
| 2334 | // basic blocks, and the scheduler passes ownership of it to this method. |
| 2335 | MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI, |
| 2336 | MachineBasicBlock *MBB) { |
| 2337 | std::cerr << "If a target marks an instruction with " |
| 2338 | "'usesCustomDAGSchedInserter', it must implement " |
| 2339 | "TargetLowering::InsertAtEndOfBasicBlock!\n"; |
| 2340 | abort(); |
| 2341 | return 0; |
| 2342 | } |
| 2343 | |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 2344 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 2345 | DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(), |
| 2346 | getValue(I.getOperand(1)), |
| 2347 | DAG.getSrcValue(I.getOperand(1)))); |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 2348 | } |
| 2349 | |
| 2350 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 2351 | SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(), |
| 2352 | getValue(I.getOperand(0)), |
| 2353 | DAG.getSrcValue(I.getOperand(0))); |
| 2354 | setValue(&I, V); |
| 2355 | DAG.setRoot(V.getValue(1)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2356 | } |
| 2357 | |
| 2358 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 2359 | DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(), |
| 2360 | getValue(I.getOperand(1)), |
| 2361 | DAG.getSrcValue(I.getOperand(1)))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2362 | } |
| 2363 | |
| 2364 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 2365 | DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(), |
| 2366 | getValue(I.getOperand(1)), |
| 2367 | getValue(I.getOperand(2)), |
| 2368 | DAG.getSrcValue(I.getOperand(1)), |
| 2369 | DAG.getSrcValue(I.getOperand(2)))); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2370 | } |
| 2371 | |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2372 | /// TargetLowering::LowerArguments - This is the default LowerArguments |
| 2373 | /// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2374 | /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be |
| 2375 | /// integrated into SDISel. |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2376 | std::vector<SDOperand> |
| 2377 | TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) { |
| 2378 | // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node. |
| 2379 | std::vector<SDOperand> Ops; |
Chris Lattner | 8c0c10c | 2006-05-16 06:45:34 +0000 | [diff] [blame] | 2380 | Ops.push_back(DAG.getRoot()); |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2381 | Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy())); |
| 2382 | Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy())); |
| 2383 | |
| 2384 | // Add one result value for each formal argument. |
| 2385 | std::vector<MVT::ValueType> RetVals; |
| 2386 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) { |
| 2387 | MVT::ValueType VT = getValueType(I->getType()); |
| 2388 | |
| 2389 | switch (getTypeAction(VT)) { |
| 2390 | default: assert(0 && "Unknown type action!"); |
| 2391 | case Legal: |
| 2392 | RetVals.push_back(VT); |
| 2393 | break; |
| 2394 | case Promote: |
| 2395 | RetVals.push_back(getTypeToTransformTo(VT)); |
| 2396 | break; |
| 2397 | case Expand: |
| 2398 | if (VT != MVT::Vector) { |
| 2399 | // If this is a large integer, it needs to be broken up into small |
| 2400 | // integers. Figure out what the destination type is and how many small |
| 2401 | // integers it turns into. |
| 2402 | MVT::ValueType NVT = getTypeToTransformTo(VT); |
| 2403 | unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT); |
| 2404 | for (unsigned i = 0; i != NumVals; ++i) |
| 2405 | RetVals.push_back(NVT); |
| 2406 | } else { |
| 2407 | // Otherwise, this is a vector type. We only support legal vectors |
| 2408 | // right now. |
| 2409 | unsigned NumElems = cast<PackedType>(I->getType())->getNumElements(); |
| 2410 | const Type *EltTy = cast<PackedType>(I->getType())->getElementType(); |
Evan Cheng | f7179bb | 2006-04-27 08:29:42 +0000 | [diff] [blame] | 2411 | |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2412 | // Figure out if there is a Packed type corresponding to this Vector |
| 2413 | // type. If so, convert to the packed type. |
| 2414 | MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems); |
| 2415 | if (TVT != MVT::Other && isTypeLegal(TVT)) { |
| 2416 | RetVals.push_back(TVT); |
| 2417 | } else { |
| 2418 | assert(0 && "Don't support illegal by-val vector arguments yet!"); |
| 2419 | } |
| 2420 | } |
| 2421 | break; |
| 2422 | } |
| 2423 | } |
Evan Cheng | 3b0d286 | 2006-04-25 23:03:35 +0000 | [diff] [blame] | 2424 | |
Chris Lattner | 8c0c10c | 2006-05-16 06:45:34 +0000 | [diff] [blame] | 2425 | RetVals.push_back(MVT::Other); |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2426 | |
| 2427 | // Create the node. |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 2428 | SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, |
| 2429 | DAG.getNodeValueTypes(RetVals), RetVals.size(), |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2430 | &Ops[0], Ops.size()).Val; |
Chris Lattner | 8c0c10c | 2006-05-16 06:45:34 +0000 | [diff] [blame] | 2431 | |
| 2432 | DAG.setRoot(SDOperand(Result, Result->getNumValues()-1)); |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2433 | |
| 2434 | // Set up the return result vector. |
| 2435 | Ops.clear(); |
| 2436 | unsigned i = 0; |
| 2437 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) { |
| 2438 | MVT::ValueType VT = getValueType(I->getType()); |
| 2439 | |
| 2440 | switch (getTypeAction(VT)) { |
| 2441 | default: assert(0 && "Unknown type action!"); |
| 2442 | case Legal: |
| 2443 | Ops.push_back(SDOperand(Result, i++)); |
| 2444 | break; |
| 2445 | case Promote: { |
| 2446 | SDOperand Op(Result, i++); |
| 2447 | if (MVT::isInteger(VT)) { |
| 2448 | unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext |
| 2449 | : ISD::AssertZext; |
| 2450 | Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT)); |
| 2451 | Op = DAG.getNode(ISD::TRUNCATE, VT, Op); |
| 2452 | } else { |
| 2453 | assert(MVT::isFloatingPoint(VT) && "Not int or FP?"); |
| 2454 | Op = DAG.getNode(ISD::FP_ROUND, VT, Op); |
| 2455 | } |
| 2456 | Ops.push_back(Op); |
| 2457 | break; |
| 2458 | } |
| 2459 | case Expand: |
| 2460 | if (VT != MVT::Vector) { |
| 2461 | // If this is a large integer, it needs to be reassembled from small |
| 2462 | // integers. Figure out what the source elt type is and how many small |
| 2463 | // integers it is. |
| 2464 | MVT::ValueType NVT = getTypeToTransformTo(VT); |
| 2465 | unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT); |
| 2466 | if (NumVals == 2) { |
| 2467 | SDOperand Lo = SDOperand(Result, i++); |
| 2468 | SDOperand Hi = SDOperand(Result, i++); |
| 2469 | |
| 2470 | if (!isLittleEndian()) |
| 2471 | std::swap(Lo, Hi); |
| 2472 | |
| 2473 | Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi)); |
| 2474 | } else { |
| 2475 | // Value scalarized into many values. Unimp for now. |
| 2476 | assert(0 && "Cannot expand i64 -> i16 yet!"); |
| 2477 | } |
| 2478 | } else { |
| 2479 | // Otherwise, this is a vector type. We only support legal vectors |
| 2480 | // right now. |
Evan Cheng | 020c41f | 2006-04-28 05:25:15 +0000 | [diff] [blame] | 2481 | const PackedType *PTy = cast<PackedType>(I->getType()); |
| 2482 | unsigned NumElems = PTy->getNumElements(); |
| 2483 | const Type *EltTy = PTy->getElementType(); |
Evan Cheng | f7179bb | 2006-04-27 08:29:42 +0000 | [diff] [blame] | 2484 | |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2485 | // Figure out if there is a Packed type corresponding to this Vector |
| 2486 | // type. If so, convert to the packed type. |
| 2487 | MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems); |
Chris Lattner | d202ca4 | 2006-05-17 20:49:36 +0000 | [diff] [blame] | 2488 | if (TVT != MVT::Other && isTypeLegal(TVT)) { |
Evan Cheng | 020c41f | 2006-04-28 05:25:15 +0000 | [diff] [blame] | 2489 | SDOperand N = SDOperand(Result, i++); |
| 2490 | // Handle copies from generic vectors to registers. |
Chris Lattner | d202ca4 | 2006-05-17 20:49:36 +0000 | [diff] [blame] | 2491 | N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N, |
| 2492 | DAG.getConstant(NumElems, MVT::i32), |
| 2493 | DAG.getValueType(getValueType(EltTy))); |
| 2494 | Ops.push_back(N); |
| 2495 | } else { |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2496 | assert(0 && "Don't support illegal by-val vector arguments yet!"); |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2497 | abort(); |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 2498 | } |
| 2499 | } |
| 2500 | break; |
| 2501 | } |
| 2502 | } |
| 2503 | return Ops; |
| 2504 | } |
| 2505 | |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2506 | |
| 2507 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
| 2508 | /// implementation, which just inserts an ISD::CALL node, which is later custom |
| 2509 | /// lowered by the target to something concrete. FIXME: When all targets are |
| 2510 | /// migrated to using ISD::CALL, this hook should be integrated into SDISel. |
| 2511 | std::pair<SDOperand, SDOperand> |
| 2512 | TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, |
| 2513 | unsigned CallingConv, bool isTailCall, |
| 2514 | SDOperand Callee, |
| 2515 | ArgListTy &Args, SelectionDAG &DAG) { |
Chris Lattner | be38416 | 2006-08-16 22:57:46 +0000 | [diff] [blame] | 2516 | SmallVector<SDOperand, 32> Ops; |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2517 | Ops.push_back(Chain); // Op#0 - Chain |
| 2518 | Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC |
| 2519 | Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg |
| 2520 | Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail |
| 2521 | Ops.push_back(Callee); |
| 2522 | |
| 2523 | // Handle all of the outgoing arguments. |
| 2524 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 2525 | MVT::ValueType VT = getValueType(Args[i].second); |
| 2526 | SDOperand Op = Args[i].first; |
Evan Cheng | f6d62c2 | 2006-05-25 00:55:32 +0000 | [diff] [blame] | 2527 | bool isSigned = Args[i].second->isSigned(); |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2528 | switch (getTypeAction(VT)) { |
| 2529 | default: assert(0 && "Unknown type action!"); |
| 2530 | case Legal: |
| 2531 | Ops.push_back(Op); |
Evan Cheng | d61c482 | 2006-05-26 23:13:20 +0000 | [diff] [blame] | 2532 | Ops.push_back(DAG.getConstant(isSigned, MVT::i32)); |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2533 | break; |
| 2534 | case Promote: |
| 2535 | if (MVT::isInteger(VT)) { |
Evan Cheng | f6d62c2 | 2006-05-25 00:55:32 +0000 | [diff] [blame] | 2536 | unsigned ExtOp = isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2537 | Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op); |
| 2538 | } else { |
| 2539 | assert(MVT::isFloatingPoint(VT) && "Not int or FP?"); |
| 2540 | Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op); |
| 2541 | } |
| 2542 | Ops.push_back(Op); |
Evan Cheng | d61c482 | 2006-05-26 23:13:20 +0000 | [diff] [blame] | 2543 | Ops.push_back(DAG.getConstant(isSigned, MVT::i32)); |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2544 | break; |
| 2545 | case Expand: |
| 2546 | if (VT != MVT::Vector) { |
| 2547 | // If this is a large integer, it needs to be broken down into small |
| 2548 | // integers. Figure out what the source elt type is and how many small |
| 2549 | // integers it is. |
| 2550 | MVT::ValueType NVT = getTypeToTransformTo(VT); |
| 2551 | unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT); |
| 2552 | if (NumVals == 2) { |
| 2553 | SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op, |
| 2554 | DAG.getConstant(0, getPointerTy())); |
| 2555 | SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op, |
| 2556 | DAG.getConstant(1, getPointerTy())); |
| 2557 | if (!isLittleEndian()) |
| 2558 | std::swap(Lo, Hi); |
| 2559 | |
| 2560 | Ops.push_back(Lo); |
Evan Cheng | d61c482 | 2006-05-26 23:13:20 +0000 | [diff] [blame] | 2561 | Ops.push_back(DAG.getConstant(isSigned, MVT::i32)); |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2562 | Ops.push_back(Hi); |
Evan Cheng | d61c482 | 2006-05-26 23:13:20 +0000 | [diff] [blame] | 2563 | Ops.push_back(DAG.getConstant(isSigned, MVT::i32)); |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2564 | } else { |
| 2565 | // Value scalarized into many values. Unimp for now. |
| 2566 | assert(0 && "Cannot expand i64 -> i16 yet!"); |
| 2567 | } |
| 2568 | } else { |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2569 | // Otherwise, this is a vector type. We only support legal vectors |
| 2570 | // right now. |
| 2571 | const PackedType *PTy = cast<PackedType>(Args[i].second); |
| 2572 | unsigned NumElems = PTy->getNumElements(); |
| 2573 | const Type *EltTy = PTy->getElementType(); |
| 2574 | |
| 2575 | // Figure out if there is a Packed type corresponding to this Vector |
| 2576 | // type. If so, convert to the packed type. |
| 2577 | MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems); |
Chris Lattner | 1b8daae | 2006-05-17 20:43:21 +0000 | [diff] [blame] | 2578 | if (TVT != MVT::Other && isTypeLegal(TVT)) { |
| 2579 | // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type. |
| 2580 | Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op); |
| 2581 | Ops.push_back(Op); |
Evan Cheng | d61c482 | 2006-05-26 23:13:20 +0000 | [diff] [blame] | 2582 | Ops.push_back(DAG.getConstant(isSigned, MVT::i32)); |
Chris Lattner | 1b8daae | 2006-05-17 20:43:21 +0000 | [diff] [blame] | 2583 | } else { |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2584 | assert(0 && "Don't support illegal by-val vector call args yet!"); |
| 2585 | abort(); |
| 2586 | } |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2587 | } |
| 2588 | break; |
| 2589 | } |
| 2590 | } |
| 2591 | |
| 2592 | // Figure out the result value types. |
Chris Lattner | be38416 | 2006-08-16 22:57:46 +0000 | [diff] [blame] | 2593 | SmallVector<MVT::ValueType, 4> RetTys; |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2594 | |
| 2595 | if (RetTy != Type::VoidTy) { |
| 2596 | MVT::ValueType VT = getValueType(RetTy); |
| 2597 | switch (getTypeAction(VT)) { |
| 2598 | default: assert(0 && "Unknown type action!"); |
| 2599 | case Legal: |
| 2600 | RetTys.push_back(VT); |
| 2601 | break; |
| 2602 | case Promote: |
| 2603 | RetTys.push_back(getTypeToTransformTo(VT)); |
| 2604 | break; |
| 2605 | case Expand: |
| 2606 | if (VT != MVT::Vector) { |
| 2607 | // If this is a large integer, it needs to be reassembled from small |
| 2608 | // integers. Figure out what the source elt type is and how many small |
| 2609 | // integers it is. |
| 2610 | MVT::ValueType NVT = getTypeToTransformTo(VT); |
| 2611 | unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT); |
| 2612 | for (unsigned i = 0; i != NumVals; ++i) |
| 2613 | RetTys.push_back(NVT); |
| 2614 | } else { |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2615 | // Otherwise, this is a vector type. We only support legal vectors |
| 2616 | // right now. |
| 2617 | const PackedType *PTy = cast<PackedType>(RetTy); |
| 2618 | unsigned NumElems = PTy->getNumElements(); |
| 2619 | const Type *EltTy = PTy->getElementType(); |
| 2620 | |
| 2621 | // Figure out if there is a Packed type corresponding to this Vector |
| 2622 | // type. If so, convert to the packed type. |
| 2623 | MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems); |
| 2624 | if (TVT != MVT::Other && isTypeLegal(TVT)) { |
| 2625 | RetTys.push_back(TVT); |
| 2626 | } else { |
| 2627 | assert(0 && "Don't support illegal by-val vector call results yet!"); |
| 2628 | abort(); |
| 2629 | } |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2630 | } |
| 2631 | } |
| 2632 | } |
| 2633 | |
| 2634 | RetTys.push_back(MVT::Other); // Always has a chain. |
| 2635 | |
| 2636 | // Finally, create the CALL node. |
Chris Lattner | be38416 | 2006-08-16 22:57:46 +0000 | [diff] [blame] | 2637 | SDOperand Res = DAG.getNode(ISD::CALL, |
| 2638 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 2639 | &Ops[0], Ops.size()); |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2640 | |
| 2641 | // This returns a pair of operands. The first element is the |
| 2642 | // return value for the function (if RetTy is not VoidTy). The second |
| 2643 | // element is the outgoing token chain. |
| 2644 | SDOperand ResVal; |
| 2645 | if (RetTys.size() != 1) { |
| 2646 | MVT::ValueType VT = getValueType(RetTy); |
| 2647 | if (RetTys.size() == 2) { |
| 2648 | ResVal = Res; |
| 2649 | |
| 2650 | // If this value was promoted, truncate it down. |
| 2651 | if (ResVal.getValueType() != VT) { |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2652 | if (VT == MVT::Vector) { |
| 2653 | // Insert a VBITCONVERT to convert from the packed result type to the |
| 2654 | // MVT::Vector type. |
| 2655 | unsigned NumElems = cast<PackedType>(RetTy)->getNumElements(); |
| 2656 | const Type *EltTy = cast<PackedType>(RetTy)->getElementType(); |
| 2657 | |
| 2658 | // Figure out if there is a Packed type corresponding to this Vector |
| 2659 | // type. If so, convert to the packed type. |
| 2660 | MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems); |
| 2661 | if (TVT != MVT::Other && isTypeLegal(TVT)) { |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2662 | // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a |
| 2663 | // "N x PTyElementVT" MVT::Vector type. |
| 2664 | ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal, |
Chris Lattner | d202ca4 | 2006-05-17 20:49:36 +0000 | [diff] [blame] | 2665 | DAG.getConstant(NumElems, MVT::i32), |
| 2666 | DAG.getValueType(getValueType(EltTy))); |
Chris Lattner | da098e7 | 2006-05-16 23:39:44 +0000 | [diff] [blame] | 2667 | } else { |
| 2668 | abort(); |
| 2669 | } |
| 2670 | } else if (MVT::isInteger(VT)) { |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2671 | unsigned AssertOp = RetTy->isSigned() ? |
| 2672 | ISD::AssertSext : ISD::AssertZext; |
| 2673 | ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal, |
| 2674 | DAG.getValueType(VT)); |
| 2675 | ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal); |
| 2676 | } else { |
| 2677 | assert(MVT::isFloatingPoint(VT)); |
| 2678 | ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal); |
| 2679 | } |
| 2680 | } |
| 2681 | } else if (RetTys.size() == 3) { |
| 2682 | ResVal = DAG.getNode(ISD::BUILD_PAIR, VT, |
| 2683 | Res.getValue(0), Res.getValue(1)); |
| 2684 | |
| 2685 | } else { |
| 2686 | assert(0 && "Case not handled yet!"); |
| 2687 | } |
| 2688 | } |
| 2689 | |
| 2690 | return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1)); |
| 2691 | } |
| 2692 | |
| 2693 | |
| 2694 | |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 2695 | // It is always conservatively correct for llvm.returnaddress and |
| 2696 | // llvm.frameaddress to return 0. |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 2697 | // |
| 2698 | // FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be |
| 2699 | // expanded to 0 if the target wants. |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 2700 | std::pair<SDOperand, SDOperand> |
| 2701 | TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, |
| 2702 | unsigned Depth, SelectionDAG &DAG) { |
| 2703 | return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2704 | } |
| 2705 | |
Chris Lattner | 50381b6 | 2005-05-14 05:50:48 +0000 | [diff] [blame] | 2706 | SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) { |
Chris Lattner | 171453a | 2005-01-16 07:28:41 +0000 | [diff] [blame] | 2707 | assert(0 && "LowerOperation not implemented for this target!"); |
| 2708 | abort(); |
Misha Brukman | d3f03e4 | 2005-02-17 21:39:27 +0000 | [diff] [blame] | 2709 | return SDOperand(); |
Chris Lattner | 171453a | 2005-01-16 07:28:41 +0000 | [diff] [blame] | 2710 | } |
| 2711 | |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 2712 | SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op, |
| 2713 | SelectionDAG &DAG) { |
| 2714 | assert(0 && "CustomPromoteOperation not implemented for this target!"); |
| 2715 | abort(); |
| 2716 | return SDOperand(); |
| 2717 | } |
| 2718 | |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 2719 | void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) { |
| 2720 | unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue(); |
| 2721 | std::pair<SDOperand,SDOperand> Result = |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 2722 | TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG); |
Chris Lattner | 39ae362 | 2005-01-09 00:00:49 +0000 | [diff] [blame] | 2723 | setValue(&I, Result.first); |
| 2724 | DAG.setRoot(Result.second); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2725 | } |
| 2726 | |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2727 | /// getMemsetValue - Vectorized representation of the memset value |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2728 | /// operand. |
| 2729 | static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT, |
Evan Cheng | a47876d | 2006-02-15 22:12:35 +0000 | [diff] [blame] | 2730 | SelectionDAG &DAG) { |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2731 | MVT::ValueType CurVT = VT; |
| 2732 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) { |
| 2733 | uint64_t Val = C->getValue() & 255; |
| 2734 | unsigned Shift = 8; |
| 2735 | while (CurVT != MVT::i8) { |
| 2736 | Val = (Val << Shift) | Val; |
| 2737 | Shift <<= 1; |
| 2738 | CurVT = (MVT::ValueType)((unsigned)CurVT - 1); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2739 | } |
| 2740 | return DAG.getConstant(Val, VT); |
| 2741 | } else { |
| 2742 | Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value); |
| 2743 | unsigned Shift = 8; |
| 2744 | while (CurVT != MVT::i8) { |
| 2745 | Value = |
| 2746 | DAG.getNode(ISD::OR, VT, |
| 2747 | DAG.getNode(ISD::SHL, VT, Value, |
| 2748 | DAG.getConstant(Shift, MVT::i8)), Value); |
| 2749 | Shift <<= 1; |
| 2750 | CurVT = (MVT::ValueType)((unsigned)CurVT - 1); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2751 | } |
| 2752 | |
| 2753 | return Value; |
| 2754 | } |
| 2755 | } |
| 2756 | |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2757 | /// getMemsetStringVal - Similar to getMemsetValue. Except this is only |
| 2758 | /// used when a memcpy is turned into a memset when the source is a constant |
| 2759 | /// string ptr. |
| 2760 | static SDOperand getMemsetStringVal(MVT::ValueType VT, |
| 2761 | SelectionDAG &DAG, TargetLowering &TLI, |
| 2762 | std::string &Str, unsigned Offset) { |
| 2763 | MVT::ValueType CurVT = VT; |
| 2764 | uint64_t Val = 0; |
| 2765 | unsigned MSB = getSizeInBits(VT) / 8; |
| 2766 | if (TLI.isLittleEndian()) |
| 2767 | Offset = Offset + MSB - 1; |
| 2768 | for (unsigned i = 0; i != MSB; ++i) { |
| 2769 | Val = (Val << 8) | Str[Offset]; |
| 2770 | Offset += TLI.isLittleEndian() ? -1 : 1; |
| 2771 | } |
| 2772 | return DAG.getConstant(Val, VT); |
| 2773 | } |
| 2774 | |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2775 | /// getMemBasePlusOffset - Returns base and offset node for the |
| 2776 | static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset, |
| 2777 | SelectionDAG &DAG, TargetLowering &TLI) { |
| 2778 | MVT::ValueType VT = Base.getValueType(); |
| 2779 | return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT)); |
| 2780 | } |
| 2781 | |
Evan Cheng | c4f8eee | 2006-02-14 20:12:38 +0000 | [diff] [blame] | 2782 | /// MeetsMaxMemopRequirement - Determines if the number of memory ops required |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame] | 2783 | /// to replace the memset / memcpy is below the threshold. It also returns the |
| 2784 | /// types of the sequence of memory ops to perform memset / memcpy. |
Evan Cheng | c4f8eee | 2006-02-14 20:12:38 +0000 | [diff] [blame] | 2785 | static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps, |
| 2786 | unsigned Limit, uint64_t Size, |
| 2787 | unsigned Align, TargetLowering &TLI) { |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2788 | MVT::ValueType VT; |
| 2789 | |
| 2790 | if (TLI.allowsUnalignedMemoryAccesses()) { |
| 2791 | VT = MVT::i64; |
| 2792 | } else { |
| 2793 | switch (Align & 7) { |
| 2794 | case 0: |
| 2795 | VT = MVT::i64; |
| 2796 | break; |
| 2797 | case 4: |
| 2798 | VT = MVT::i32; |
| 2799 | break; |
| 2800 | case 2: |
| 2801 | VT = MVT::i16; |
| 2802 | break; |
| 2803 | default: |
| 2804 | VT = MVT::i8; |
| 2805 | break; |
| 2806 | } |
| 2807 | } |
| 2808 | |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame] | 2809 | MVT::ValueType LVT = MVT::i64; |
| 2810 | while (!TLI.isTypeLegal(LVT)) |
| 2811 | LVT = (MVT::ValueType)((unsigned)LVT - 1); |
| 2812 | assert(MVT::isInteger(LVT)); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2813 | |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame] | 2814 | if (VT > LVT) |
| 2815 | VT = LVT; |
| 2816 | |
Evan Cheng | dea7245 | 2006-02-14 23:05:54 +0000 | [diff] [blame] | 2817 | unsigned NumMemOps = 0; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2818 | while (Size != 0) { |
| 2819 | unsigned VTSize = getSizeInBits(VT) / 8; |
| 2820 | while (VTSize > Size) { |
| 2821 | VT = (MVT::ValueType)((unsigned)VT - 1); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2822 | VTSize >>= 1; |
| 2823 | } |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame] | 2824 | assert(MVT::isInteger(VT)); |
| 2825 | |
| 2826 | if (++NumMemOps > Limit) |
| 2827 | return false; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2828 | MemOps.push_back(VT); |
| 2829 | Size -= VTSize; |
| 2830 | } |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame] | 2831 | |
| 2832 | return true; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2833 | } |
| 2834 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 2835 | void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) { |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2836 | SDOperand Op1 = getValue(I.getOperand(1)); |
| 2837 | SDOperand Op2 = getValue(I.getOperand(2)); |
| 2838 | SDOperand Op3 = getValue(I.getOperand(3)); |
| 2839 | SDOperand Op4 = getValue(I.getOperand(4)); |
| 2840 | unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue(); |
| 2841 | if (Align == 0) Align = 1; |
| 2842 | |
| 2843 | if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) { |
| 2844 | std::vector<MVT::ValueType> MemOps; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2845 | |
| 2846 | // Expand memset / memcpy to a series of load / store ops |
| 2847 | // if the size operand falls below a certain threshold. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2848 | SmallVector<SDOperand, 8> OutChains; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2849 | switch (Op) { |
Evan Cheng | ac940ab | 2006-02-14 19:45:56 +0000 | [diff] [blame] | 2850 | default: break; // Do nothing for now. |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2851 | case ISD::MEMSET: { |
Evan Cheng | c4f8eee | 2006-02-14 20:12:38 +0000 | [diff] [blame] | 2852 | if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(), |
| 2853 | Size->getValue(), Align, TLI)) { |
Evan Cheng | 80e89d7 | 2006-02-14 09:11:59 +0000 | [diff] [blame] | 2854 | unsigned NumMemOps = MemOps.size(); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2855 | unsigned Offset = 0; |
| 2856 | for (unsigned i = 0; i < NumMemOps; i++) { |
| 2857 | MVT::ValueType VT = MemOps[i]; |
| 2858 | unsigned VTSize = getSizeInBits(VT) / 8; |
Evan Cheng | a47876d | 2006-02-15 22:12:35 +0000 | [diff] [blame] | 2859 | SDOperand Value = getMemsetValue(Op2, VT, DAG); |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 2860 | SDOperand Store = DAG.getStore(getRoot(), Value, |
Chris Lattner | 864635a | 2006-02-22 22:37:12 +0000 | [diff] [blame] | 2861 | getMemBasePlusOffset(Op1, Offset, DAG, TLI), |
| 2862 | DAG.getSrcValue(I.getOperand(1), Offset)); |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2863 | OutChains.push_back(Store); |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2864 | Offset += VTSize; |
| 2865 | } |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2866 | } |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2867 | break; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2868 | } |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2869 | case ISD::MEMCPY: { |
| 2870 | if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(), |
| 2871 | Size->getValue(), Align, TLI)) { |
| 2872 | unsigned NumMemOps = MemOps.size(); |
Evan Cheng | cffbb51 | 2006-02-16 23:11:42 +0000 | [diff] [blame] | 2873 | unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0; |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2874 | GlobalAddressSDNode *G = NULL; |
| 2875 | std::string Str; |
Evan Cheng | cffbb51 | 2006-02-16 23:11:42 +0000 | [diff] [blame] | 2876 | bool CopyFromStr = false; |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2877 | |
| 2878 | if (Op2.getOpcode() == ISD::GlobalAddress) |
| 2879 | G = cast<GlobalAddressSDNode>(Op2); |
| 2880 | else if (Op2.getOpcode() == ISD::ADD && |
| 2881 | Op2.getOperand(0).getOpcode() == ISD::GlobalAddress && |
| 2882 | Op2.getOperand(1).getOpcode() == ISD::Constant) { |
| 2883 | G = cast<GlobalAddressSDNode>(Op2.getOperand(0)); |
Evan Cheng | cffbb51 | 2006-02-16 23:11:42 +0000 | [diff] [blame] | 2884 | SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue(); |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2885 | } |
| 2886 | if (G) { |
| 2887 | GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal()); |
Evan Cheng | cffbb51 | 2006-02-16 23:11:42 +0000 | [diff] [blame] | 2888 | if (GV) { |
Evan Cheng | 0937103 | 2006-03-10 23:52:03 +0000 | [diff] [blame] | 2889 | Str = GV->getStringValue(false); |
Evan Cheng | cffbb51 | 2006-02-16 23:11:42 +0000 | [diff] [blame] | 2890 | if (!Str.empty()) { |
| 2891 | CopyFromStr = true; |
| 2892 | SrcOff += SrcDelta; |
| 2893 | } |
| 2894 | } |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2895 | } |
| 2896 | |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2897 | for (unsigned i = 0; i < NumMemOps; i++) { |
| 2898 | MVT::ValueType VT = MemOps[i]; |
| 2899 | unsigned VTSize = getSizeInBits(VT) / 8; |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2900 | SDOperand Value, Chain, Store; |
| 2901 | |
Evan Cheng | cffbb51 | 2006-02-16 23:11:42 +0000 | [diff] [blame] | 2902 | if (CopyFromStr) { |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2903 | Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff); |
| 2904 | Chain = getRoot(); |
| 2905 | Store = |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 2906 | DAG.getStore(Chain, Value, |
| 2907 | getMemBasePlusOffset(Op1, DstOff, DAG, TLI), |
| 2908 | DAG.getSrcValue(I.getOperand(1), DstOff)); |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2909 | } else { |
| 2910 | Value = DAG.getLoad(VT, getRoot(), |
| 2911 | getMemBasePlusOffset(Op2, SrcOff, DAG, TLI), |
| 2912 | DAG.getSrcValue(I.getOperand(2), SrcOff)); |
| 2913 | Chain = Value.getValue(1); |
| 2914 | Store = |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 2915 | DAG.getStore(Chain, Value, |
| 2916 | getMemBasePlusOffset(Op1, DstOff, DAG, TLI), |
| 2917 | DAG.getSrcValue(I.getOperand(1), DstOff)); |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2918 | } |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2919 | OutChains.push_back(Store); |
Evan Cheng | 74d0aa9 | 2006-02-15 21:59:04 +0000 | [diff] [blame] | 2920 | SrcOff += VTSize; |
| 2921 | DstOff += VTSize; |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2922 | } |
| 2923 | } |
| 2924 | break; |
| 2925 | } |
| 2926 | } |
| 2927 | |
| 2928 | if (!OutChains.empty()) { |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2929 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 2930 | &OutChains[0], OutChains.size())); |
Evan Cheng | c080d6f | 2006-02-15 01:54:51 +0000 | [diff] [blame] | 2931 | return; |
Evan Cheng | 1db92f9 | 2006-02-14 08:22:34 +0000 | [diff] [blame] | 2932 | } |
| 2933 | } |
| 2934 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 2935 | DAG.setRoot(DAG.getNode(Op, MVT::Other, getRoot(), Op1, Op2, Op3, Op4)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2936 | } |
| 2937 | |
Chris Lattner | 7041ee3 | 2005-01-11 05:56:49 +0000 | [diff] [blame] | 2938 | //===----------------------------------------------------------------------===// |
| 2939 | // SelectionDAGISel code |
| 2940 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2941 | |
| 2942 | unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) { |
| 2943 | return RegMap->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 2944 | } |
| 2945 | |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 2946 | void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 2947 | // FIXME: we only modify the CFG to split critical edges. This |
| 2948 | // updates dom and loop info. |
Chris Lattner | 495a0b5 | 2005-08-17 06:37:43 +0000 | [diff] [blame] | 2949 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 2950 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 2951 | |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 2952 | /// OptimizeNoopCopyExpression - We have determined that the specified cast |
| 2953 | /// instruction is a noop copy (e.g. it's casting from one pointer type to |
| 2954 | /// another, int->uint, or int->sbyte on PPC. |
| 2955 | /// |
| 2956 | /// Return true if any changes are made. |
| 2957 | static bool OptimizeNoopCopyExpression(CastInst *CI) { |
| 2958 | BasicBlock *DefBB = CI->getParent(); |
| 2959 | |
| 2960 | /// InsertedCasts - Only insert a cast in each block once. |
| 2961 | std::map<BasicBlock*, CastInst*> InsertedCasts; |
| 2962 | |
| 2963 | bool MadeChange = false; |
| 2964 | for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end(); |
| 2965 | UI != E; ) { |
| 2966 | Use &TheUse = UI.getUse(); |
| 2967 | Instruction *User = cast<Instruction>(*UI); |
| 2968 | |
| 2969 | // Figure out which BB this cast is used in. For PHI's this is the |
| 2970 | // appropriate predecessor block. |
| 2971 | BasicBlock *UserBB = User->getParent(); |
| 2972 | if (PHINode *PN = dyn_cast<PHINode>(User)) { |
| 2973 | unsigned OpVal = UI.getOperandNo()/2; |
| 2974 | UserBB = PN->getIncomingBlock(OpVal); |
| 2975 | } |
| 2976 | |
| 2977 | // Preincrement use iterator so we don't invalidate it. |
| 2978 | ++UI; |
| 2979 | |
| 2980 | // If this user is in the same block as the cast, don't change the cast. |
| 2981 | if (UserBB == DefBB) continue; |
| 2982 | |
| 2983 | // If we have already inserted a cast into this block, use it. |
| 2984 | CastInst *&InsertedCast = InsertedCasts[UserBB]; |
| 2985 | |
| 2986 | if (!InsertedCast) { |
| 2987 | BasicBlock::iterator InsertPt = UserBB->begin(); |
| 2988 | while (isa<PHINode>(InsertPt)) ++InsertPt; |
| 2989 | |
| 2990 | InsertedCast = |
| 2991 | new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt); |
| 2992 | MadeChange = true; |
| 2993 | } |
| 2994 | |
| 2995 | // Replace a use of the cast with a use of the new casat. |
| 2996 | TheUse = InsertedCast; |
| 2997 | } |
| 2998 | |
| 2999 | // If we removed all uses, nuke the cast. |
| 3000 | if (CI->use_empty()) |
| 3001 | CI->eraseFromParent(); |
| 3002 | |
| 3003 | return MadeChange; |
| 3004 | } |
| 3005 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3006 | /// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset, |
| 3007 | /// casting to the type of GEPI. |
Chris Lattner | f0df882 | 2006-05-06 09:10:37 +0000 | [diff] [blame] | 3008 | static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB, |
| 3009 | Instruction *GEPI, Value *Ptr, |
| 3010 | Value *PtrOffset) { |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3011 | if (V) return V; // Already computed. |
| 3012 | |
| 3013 | BasicBlock::iterator InsertPt; |
| 3014 | if (BB == GEPI->getParent()) { |
| 3015 | // If insert into the GEP's block, insert right after the GEP. |
| 3016 | InsertPt = GEPI; |
| 3017 | ++InsertPt; |
| 3018 | } else { |
| 3019 | // Otherwise, insert at the top of BB, after any PHI nodes |
| 3020 | InsertPt = BB->begin(); |
| 3021 | while (isa<PHINode>(InsertPt)) ++InsertPt; |
| 3022 | } |
| 3023 | |
Chris Lattner | c78b0b7 | 2005-12-08 08:00:12 +0000 | [diff] [blame] | 3024 | // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into |
| 3025 | // BB so that there is only one value live across basic blocks (the cast |
| 3026 | // operand). |
| 3027 | if (CastInst *CI = dyn_cast<CastInst>(Ptr)) |
| 3028 | if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType())) |
| 3029 | Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt); |
| 3030 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3031 | // Add the offset, cast it to the right type. |
| 3032 | Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt); |
Chris Lattner | f0df882 | 2006-05-06 09:10:37 +0000 | [diff] [blame] | 3033 | return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3034 | } |
| 3035 | |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3036 | /// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to |
| 3037 | /// compute its value. The RepPtr value can be computed with Ptr+PtrOffset. One |
| 3038 | /// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's |
| 3039 | /// block, then ReplaceAllUsesWith'ing everything. However, we would prefer to |
| 3040 | /// sink PtrOffset into user blocks where doing so will likely allow us to fold |
| 3041 | /// the constant add into a load or store instruction. Additionally, if a user |
| 3042 | /// is a pointer-pointer cast, we look through it to find its users. |
| 3043 | static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr, |
| 3044 | Constant *PtrOffset, BasicBlock *DefBB, |
| 3045 | GetElementPtrInst *GEPI, |
Chris Lattner | f0df882 | 2006-05-06 09:10:37 +0000 | [diff] [blame] | 3046 | std::map<BasicBlock*,Instruction*> &InsertedExprs) { |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3047 | while (!RepPtr->use_empty()) { |
| 3048 | Instruction *User = cast<Instruction>(RepPtr->use_back()); |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3049 | |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3050 | // If the user is a Pointer-Pointer cast, recurse. |
| 3051 | if (isa<CastInst>(User) && isa<PointerType>(User->getType())) { |
| 3052 | ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs); |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3053 | |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3054 | // Drop the use of RepPtr. The cast is dead. Don't delete it now, else we |
| 3055 | // could invalidate an iterator. |
| 3056 | User->setOperand(0, UndefValue::get(RepPtr->getType())); |
| 3057 | continue; |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3058 | } |
| 3059 | |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3060 | // If this is a load of the pointer, or a store through the pointer, emit |
| 3061 | // the increment into the load/store block. |
Chris Lattner | f0df882 | 2006-05-06 09:10:37 +0000 | [diff] [blame] | 3062 | Instruction *NewVal; |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3063 | if (isa<LoadInst>(User) || |
| 3064 | (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) { |
| 3065 | NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()], |
| 3066 | User->getParent(), GEPI, |
| 3067 | Ptr, PtrOffset); |
| 3068 | } else { |
| 3069 | // If this use is not foldable into the addressing mode, use a version |
| 3070 | // emitted in the GEP block. |
| 3071 | NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI, |
| 3072 | Ptr, PtrOffset); |
| 3073 | } |
| 3074 | |
Chris Lattner | f0df882 | 2006-05-06 09:10:37 +0000 | [diff] [blame] | 3075 | if (GEPI->getType() != RepPtr->getType()) { |
| 3076 | BasicBlock::iterator IP = NewVal; |
| 3077 | ++IP; |
| 3078 | NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP); |
| 3079 | } |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3080 | User->replaceUsesOfWith(RepPtr, NewVal); |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3081 | } |
| 3082 | } |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3083 | |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3084 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3085 | /// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction |
| 3086 | /// selection, we want to be a bit careful about some things. In particular, if |
| 3087 | /// we have a GEP instruction that is used in a different block than it is |
| 3088 | /// defined, the addressing expression of the GEP cannot be folded into loads or |
| 3089 | /// stores that use it. In this case, decompose the GEP and move constant |
| 3090 | /// indices into blocks that use it. |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3091 | static bool OptimizeGEPExpression(GetElementPtrInst *GEPI, |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 3092 | const TargetData *TD) { |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3093 | // If this GEP is only used inside the block it is defined in, there is no |
| 3094 | // need to rewrite it. |
| 3095 | bool isUsedOutsideDefBB = false; |
| 3096 | BasicBlock *DefBB = GEPI->getParent(); |
| 3097 | for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end(); |
| 3098 | UI != E; ++UI) { |
| 3099 | if (cast<Instruction>(*UI)->getParent() != DefBB) { |
| 3100 | isUsedOutsideDefBB = true; |
| 3101 | break; |
| 3102 | } |
| 3103 | } |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3104 | if (!isUsedOutsideDefBB) return false; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3105 | |
| 3106 | // If this GEP has no non-zero constant indices, there is nothing we can do, |
| 3107 | // ignore it. |
| 3108 | bool hasConstantIndex = false; |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3109 | bool hasVariableIndex = false; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3110 | for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1, |
| 3111 | E = GEPI->op_end(); OI != E; ++OI) { |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3112 | if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) { |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3113 | if (CI->getRawValue()) { |
| 3114 | hasConstantIndex = true; |
| 3115 | break; |
| 3116 | } |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3117 | } else { |
| 3118 | hasVariableIndex = true; |
| 3119 | } |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3120 | } |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3121 | |
| 3122 | // If this is a "GEP X, 0, 0, 0", turn this into a cast. |
| 3123 | if (!hasConstantIndex && !hasVariableIndex) { |
| 3124 | Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(), |
| 3125 | GEPI->getName(), GEPI); |
| 3126 | GEPI->replaceAllUsesWith(NC); |
| 3127 | GEPI->eraseFromParent(); |
| 3128 | return true; |
| 3129 | } |
| 3130 | |
Chris Lattner | 3802c25 | 2005-12-11 09:05:13 +0000 | [diff] [blame] | 3131 | // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses. |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3132 | if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0))) |
| 3133 | return false; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3134 | |
| 3135 | // Otherwise, decompose the GEP instruction into multiplies and adds. Sum the |
| 3136 | // constant offset (which we now know is non-zero) and deal with it later. |
| 3137 | uint64_t ConstantOffset = 0; |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 3138 | const Type *UIntPtrTy = TD->getIntPtrType(); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3139 | Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI); |
| 3140 | const Type *Ty = GEPI->getOperand(0)->getType(); |
| 3141 | |
| 3142 | for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1, |
| 3143 | E = GEPI->op_end(); OI != E; ++OI) { |
| 3144 | Value *Idx = *OI; |
| 3145 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 3146 | unsigned Field = cast<ConstantUInt>(Idx)->getValue(); |
| 3147 | if (Field) |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 3148 | ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field]; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3149 | Ty = StTy->getElementType(Field); |
| 3150 | } else { |
| 3151 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 3152 | |
| 3153 | // Handle constant subscripts. |
| 3154 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 3155 | if (CI->getRawValue() == 0) continue; |
| 3156 | |
| 3157 | if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI)) |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 3158 | ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue(); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3159 | else |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 3160 | ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue(); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3161 | continue; |
| 3162 | } |
| 3163 | |
| 3164 | // Ptr = Ptr + Idx * ElementSize; |
| 3165 | |
| 3166 | // Cast Idx to UIntPtrTy if needed. |
| 3167 | Idx = new CastInst(Idx, UIntPtrTy, "", GEPI); |
| 3168 | |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 3169 | uint64_t ElementSize = TD->getTypeSize(Ty); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3170 | // Mask off bits that should not be set. |
| 3171 | ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits()); |
| 3172 | Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize); |
| 3173 | |
| 3174 | // Multiply by the element size and add to the base. |
| 3175 | Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI); |
| 3176 | Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI); |
| 3177 | } |
| 3178 | } |
| 3179 | |
| 3180 | // Make sure that the offset fits in uintptr_t. |
| 3181 | ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits()); |
| 3182 | Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset); |
| 3183 | |
| 3184 | // Okay, we have now emitted all of the variable index parts to the BB that |
| 3185 | // the GEP is defined in. Loop over all of the using instructions, inserting |
| 3186 | // 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] | 3187 | // instruction to use the newly computed value, making GEPI dead. When the |
| 3188 | // user is a load or store instruction address, we emit the add into the user |
| 3189 | // block, otherwise we use a canonical version right next to the gep (these |
| 3190 | // won't be foldable as addresses, so we might as well share the computation). |
| 3191 | |
Chris Lattner | f0df882 | 2006-05-06 09:10:37 +0000 | [diff] [blame] | 3192 | std::map<BasicBlock*,Instruction*> InsertedExprs; |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3193 | ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3194 | |
| 3195 | // Finally, the GEP is dead, remove it. |
| 3196 | GEPI->eraseFromParent(); |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3197 | |
| 3198 | return true; |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3199 | } |
| 3200 | |
Chris Lattner | 57f9a43 | 2006-09-28 06:17:10 +0000 | [diff] [blame] | 3201 | /// SplitCritEdgesForPHIConstants - If this block has any PHI nodes with |
| 3202 | /// constant operands, and if any of the edges feeding the PHI node are |
| 3203 | /// critical, split them so that the assignments of a constant to a register |
| 3204 | /// will not be executed on a path that isn't relevant. |
| 3205 | void SelectionDAGISel::SplitCritEdgesForPHIConstants(BasicBlock *BB) { |
| 3206 | PHINode *PN; |
| 3207 | BasicBlock::iterator BBI = BB->begin(); |
| 3208 | while ((PN = dyn_cast<PHINode>(BBI++))) { |
| 3209 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 3210 | if (isa<Constant>(PN->getIncomingValue(i))) |
| 3211 | SplitCriticalEdge(PN->getIncomingBlock(i), BB); |
| 3212 | } |
| 3213 | } |
| 3214 | |
| 3215 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3216 | bool SelectionDAGISel::runOnFunction(Function &Fn) { |
| 3217 | MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine()); |
| 3218 | RegMap = MF.getSSARegMap(); |
| 3219 | DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n"); |
| 3220 | |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3221 | // First, split all critical edges for PHI nodes with incoming values that are |
| 3222 | // constants, this way the load of the constant into a vreg will not be placed |
| 3223 | // into MBBs that are used some other way. |
| 3224 | // |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3225 | // In this pass we also look for GEP and cast instructions that are used |
| 3226 | // across basic blocks and rewrite them to improve basic-block-at-a-time |
| 3227 | // selection. |
| 3228 | // |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3229 | // |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3230 | bool MadeChange = true; |
| 3231 | while (MadeChange) { |
| 3232 | MadeChange = false; |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 3233 | for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) { |
Chris Lattner | 57f9a43 | 2006-09-28 06:17:10 +0000 | [diff] [blame] | 3234 | // If this block has any PHI nodes with constant operands, and if any of the |
| 3235 | // edges feeding the PHI node are critical, split them. |
| 3236 | if (isa<PHINode>(BB->begin())) |
| 3237 | SplitCritEdgesForPHIConstants(BB); |
Chris Lattner | c88d8e9 | 2005-12-05 07:10:48 +0000 | [diff] [blame] | 3238 | |
Chris Lattner | 57f9a43 | 2006-09-28 06:17:10 +0000 | [diff] [blame] | 3239 | for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ) { |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3240 | Instruction *I = BBI++; |
| 3241 | if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) { |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3242 | MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData()); |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3243 | } else if (CastInst *CI = dyn_cast<CastInst>(I)) { |
Chris Lattner | c970f06 | 2006-09-13 06:02:42 +0000 | [diff] [blame] | 3244 | // If the source of the cast is a constant, then this should have |
| 3245 | // already been constant folded. The only reason NOT to constant fold |
| 3246 | // it is if something (e.g. LSR) was careful to place the constant |
| 3247 | // evaluation in a block other than then one that uses it (e.g. to hoist |
| 3248 | // the address of globals out of a loop). If this is the case, we don't |
| 3249 | // want to forward-subst the cast. |
| 3250 | if (isa<Constant>(CI->getOperand(0))) |
| 3251 | continue; |
| 3252 | |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3253 | // If this is a noop copy, sink it into user blocks to reduce the number |
| 3254 | // of virtual registers that must be created and coallesced. |
| 3255 | MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType()); |
| 3256 | MVT::ValueType DstVT = TLI.getValueType(CI->getType()); |
| 3257 | |
| 3258 | // This is an fp<->int conversion? |
| 3259 | if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT)) |
| 3260 | continue; |
| 3261 | |
| 3262 | // If this is an extension, it will be a zero or sign extension, which |
| 3263 | // isn't a noop. |
| 3264 | if (SrcVT < DstVT) continue; |
| 3265 | |
| 3266 | // If these values will be promoted, find out what they will be promoted |
| 3267 | // to. This helps us consider truncates on PPC as noop copies when they |
| 3268 | // are. |
| 3269 | if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote) |
| 3270 | SrcVT = TLI.getTypeToTransformTo(SrcVT); |
| 3271 | if (TLI.getTypeAction(DstVT) == TargetLowering::Promote) |
| 3272 | DstVT = TLI.getTypeToTransformTo(DstVT); |
| 3273 | |
| 3274 | // If, after promotion, these are the same types, this is a noop copy. |
| 3275 | if (SrcVT == DstVT) |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3276 | MadeChange |= OptimizeNoopCopyExpression(CI); |
Chris Lattner | 7e59809 | 2006-05-05 01:04:50 +0000 | [diff] [blame] | 3277 | } |
| 3278 | } |
Chris Lattner | 36b708f | 2005-08-18 17:35:14 +0000 | [diff] [blame] | 3279 | } |
Chris Lattner | 9032364 | 2006-05-05 21:17:49 +0000 | [diff] [blame] | 3280 | } |
Chris Lattner | c9ea6fd | 2005-11-09 19:44:01 +0000 | [diff] [blame] | 3281 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3282 | FunctionLoweringInfo FuncInfo(TLI, Fn, MF); |
| 3283 | |
| 3284 | for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) |
| 3285 | SelectBasicBlock(I, MF, FuncInfo); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3286 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3287 | return true; |
| 3288 | } |
| 3289 | |
| 3290 | |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3291 | SDOperand SelectionDAGISel:: |
| 3292 | CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) { |
Chris Lattner | f1fdaca | 2005-01-11 22:03:46 +0000 | [diff] [blame] | 3293 | SDOperand Op = SDL.getValue(V); |
Chris Lattner | 18c2f13 | 2005-01-13 20:50:02 +0000 | [diff] [blame] | 3294 | assert((Op.getOpcode() != ISD::CopyFromReg || |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3295 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
Chris Lattner | 18c2f13 | 2005-01-13 20:50:02 +0000 | [diff] [blame] | 3296 | "Copy from a reg to the same reg!"); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3297 | |
| 3298 | // If this type is not legal, we must make sure to not create an invalid |
| 3299 | // register use. |
| 3300 | MVT::ValueType SrcVT = Op.getValueType(); |
| 3301 | MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT); |
| 3302 | SelectionDAG &DAG = SDL.DAG; |
| 3303 | if (SrcVT == DestVT) { |
| 3304 | return DAG.getCopyToReg(SDL.getRoot(), Reg, Op); |
Chris Lattner | 1c6191f | 2006-03-21 19:20:37 +0000 | [diff] [blame] | 3305 | } else if (SrcVT == MVT::Vector) { |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3306 | // Handle copies from generic vectors to registers. |
| 3307 | MVT::ValueType PTyElementVT, PTyLegalElementVT; |
| 3308 | unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()), |
| 3309 | PTyElementVT, PTyLegalElementVT); |
Chris Lattner | 1c6191f | 2006-03-21 19:20:37 +0000 | [diff] [blame] | 3310 | |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3311 | // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT" |
| 3312 | // MVT::Vector type. |
| 3313 | Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op, |
| 3314 | DAG.getConstant(NE, MVT::i32), |
| 3315 | DAG.getValueType(PTyElementVT)); |
Chris Lattner | 1c6191f | 2006-03-21 19:20:37 +0000 | [diff] [blame] | 3316 | |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3317 | // Loop over all of the elements of the resultant vector, |
| 3318 | // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then |
| 3319 | // copying them into output registers. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 3320 | SmallVector<SDOperand, 8> OutChains; |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3321 | SDOperand Root = SDL.getRoot(); |
| 3322 | for (unsigned i = 0; i != NE; ++i) { |
| 3323 | SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 3324 | Op, DAG.getConstant(i, TLI.getPointerTy())); |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3325 | if (PTyElementVT == PTyLegalElementVT) { |
| 3326 | // Elements are legal. |
| 3327 | OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt)); |
| 3328 | } else if (PTyLegalElementVT > PTyElementVT) { |
| 3329 | // Elements are promoted. |
| 3330 | if (MVT::isFloatingPoint(PTyLegalElementVT)) |
| 3331 | Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt); |
| 3332 | else |
| 3333 | Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt); |
| 3334 | OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt)); |
| 3335 | } else { |
| 3336 | // Elements are expanded. |
| 3337 | // The src value is expanded into multiple registers. |
| 3338 | SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 3339 | Elt, DAG.getConstant(0, TLI.getPointerTy())); |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3340 | SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 3341 | Elt, DAG.getConstant(1, TLI.getPointerTy())); |
Chris Lattner | 70c2a61 | 2006-03-31 02:06:56 +0000 | [diff] [blame] | 3342 | OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo)); |
| 3343 | OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi)); |
| 3344 | } |
Chris Lattner | 1c6191f | 2006-03-21 19:20:37 +0000 | [diff] [blame] | 3345 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 3346 | return DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 3347 | &OutChains[0], OutChains.size()); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3348 | } else if (SrcVT < DestVT) { |
| 3349 | // The src value is promoted to the register. |
Chris Lattner | fae59b9 | 2005-08-17 06:06:25 +0000 | [diff] [blame] | 3350 | if (MVT::isFloatingPoint(SrcVT)) |
| 3351 | Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op); |
| 3352 | else |
Chris Lattner | fab0887 | 2005-09-02 00:19:37 +0000 | [diff] [blame] | 3353 | Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3354 | return DAG.getCopyToReg(SDL.getRoot(), Reg, Op); |
| 3355 | } else { |
| 3356 | // The src value is expanded into multiple registers. |
| 3357 | SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 3358 | Op, DAG.getConstant(0, TLI.getPointerTy())); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3359 | SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT, |
Evan Cheng | a844126 | 2006-06-15 08:11:54 +0000 | [diff] [blame] | 3360 | Op, DAG.getConstant(1, TLI.getPointerTy())); |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3361 | Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo); |
| 3362 | return DAG.getCopyToReg(Op, Reg+1, Hi); |
| 3363 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3364 | } |
| 3365 | |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 3366 | void SelectionDAGISel:: |
| 3367 | LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL, |
| 3368 | std::vector<SDOperand> &UnorderedChains) { |
| 3369 | // If this is the entry block, emit arguments. |
| 3370 | Function &F = *BB->getParent(); |
Chris Lattner | 0afa8e3 | 2005-01-17 17:55:19 +0000 | [diff] [blame] | 3371 | FunctionLoweringInfo &FuncInfo = SDL.FuncInfo; |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3372 | SDOperand OldRoot = SDL.DAG.getRoot(); |
| 3373 | std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG); |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 3374 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3375 | unsigned a = 0; |
| 3376 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 3377 | AI != E; ++AI, ++a) |
| 3378 | if (!AI->use_empty()) { |
| 3379 | SDL.setValue(AI, Args[a]); |
Evan Cheng | f7179bb | 2006-04-27 08:29:42 +0000 | [diff] [blame] | 3380 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3381 | // If this argument is live outside of the entry block, insert a copy from |
| 3382 | // whereever we got it to the vreg that other BB's will reference it as. |
| 3383 | if (FuncInfo.ValueMap.count(AI)) { |
| 3384 | SDOperand Copy = |
| 3385 | CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]); |
| 3386 | UnorderedChains.push_back(Copy); |
| 3387 | } |
Chris Lattner | 0afa8e3 | 2005-01-17 17:55:19 +0000 | [diff] [blame] | 3388 | } |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3389 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3390 | // Finally, if the target has anything special to do, allow it to do so. |
Chris Lattner | 9664541 | 2006-05-16 06:10:58 +0000 | [diff] [blame] | 3391 | // FIXME: this should insert code into the DAG! |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3392 | EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction()); |
Chris Lattner | 068a81e | 2005-01-17 17:15:02 +0000 | [diff] [blame] | 3393 | } |
| 3394 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3395 | void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB, |
| 3396 | std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate, |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3397 | FunctionLoweringInfo &FuncInfo) { |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3398 | SelectionDAGLowering SDL(DAG, TLI, FuncInfo); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3399 | |
| 3400 | std::vector<SDOperand> UnorderedChains; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3401 | |
Chris Lattner | bf20948 | 2005-10-30 19:42:35 +0000 | [diff] [blame] | 3402 | // Lower any arguments needed in this block if this is the entry block. |
| 3403 | if (LLVMBB == &LLVMBB->getParent()->front()) |
| 3404 | LowerArguments(LLVMBB, SDL, UnorderedChains); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3405 | |
| 3406 | BB = FuncInfo.MBBMap[LLVMBB]; |
| 3407 | SDL.setCurrentBasicBlock(BB); |
| 3408 | |
| 3409 | // Lower all of the non-terminator instructions. |
| 3410 | for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end(); |
| 3411 | I != E; ++I) |
| 3412 | SDL.visit(*I); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3413 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3414 | // Ensure that all instructions which are used outside of their defining |
| 3415 | // blocks are available as virtual registers. |
| 3416 | for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I) |
Chris Lattner | f1fdaca | 2005-01-11 22:03:46 +0000 | [diff] [blame] | 3417 | if (!I->use_empty() && !isa<PHINode>(I)) { |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 3418 | std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3419 | if (VMI != FuncInfo.ValueMap.end()) |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3420 | UnorderedChains.push_back( |
| 3421 | CopyValueToVirtualRegister(SDL, I, VMI->second)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3422 | } |
| 3423 | |
| 3424 | // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 3425 | // ensure constants are generated when needed. Remember the virtual registers |
| 3426 | // that need to be added to the Machine PHI nodes as input. We cannot just |
| 3427 | // directly add them, because expansion might result in multiple MBB's for one |
| 3428 | // BB. As such, the start of the BB might correspond to a different MBB than |
| 3429 | // the end. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3430 | // |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3431 | |
| 3432 | // Emit constants only once even if used by multiple PHI nodes. |
| 3433 | std::map<Constant*, unsigned> ConstantsOut; |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3434 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3435 | // Check successor nodes PHI nodes that expect a constant to be available from |
| 3436 | // this block. |
| 3437 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 3438 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 3439 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3440 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 3441 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3442 | MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin(); |
| 3443 | PHINode *PN; |
| 3444 | |
| 3445 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 3446 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 3447 | // emitted yet. |
| 3448 | for (BasicBlock::iterator I = SuccBB->begin(); |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 3449 | (PN = dyn_cast<PHINode>(I)); ++I) |
| 3450 | if (!PN->use_empty()) { |
| 3451 | unsigned Reg; |
| 3452 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 3453 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 3454 | unsigned &RegOut = ConstantsOut[C]; |
| 3455 | if (RegOut == 0) { |
| 3456 | RegOut = FuncInfo.CreateRegForValue(C); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3457 | UnorderedChains.push_back( |
| 3458 | CopyValueToVirtualRegister(SDL, C, RegOut)); |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 3459 | } |
| 3460 | Reg = RegOut; |
| 3461 | } else { |
| 3462 | Reg = FuncInfo.ValueMap[PHIOp]; |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 3463 | if (Reg == 0) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3464 | assert(isa<AllocaInst>(PHIOp) && |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 3465 | FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 3466 | "Didn't codegen value into a register!??"); |
| 3467 | Reg = FuncInfo.CreateRegForValue(PHIOp); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3468 | UnorderedChains.push_back( |
| 3469 | CopyValueToVirtualRegister(SDL, PHIOp, Reg)); |
Chris Lattner | ee749d7 | 2005-01-09 01:16:24 +0000 | [diff] [blame] | 3470 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3471 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3472 | |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 3473 | // Remember that this register needs to added to the machine PHI node as |
| 3474 | // the input for this MBB. |
Chris Lattner | 7e02151 | 2006-03-31 02:12:18 +0000 | [diff] [blame] | 3475 | MVT::ValueType VT = TLI.getValueType(PN->getType()); |
| 3476 | unsigned NumElements; |
| 3477 | if (VT != MVT::Vector) |
| 3478 | NumElements = TLI.getNumElements(VT); |
| 3479 | else { |
| 3480 | MVT::ValueType VT1,VT2; |
| 3481 | NumElements = |
| 3482 | TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()), |
| 3483 | VT1, VT2); |
| 3484 | } |
Chris Lattner | f44fd88 | 2005-01-07 21:34:19 +0000 | [diff] [blame] | 3485 | for (unsigned i = 0, e = NumElements; i != e; ++i) |
| 3486 | PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3487 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3488 | } |
| 3489 | ConstantsOut.clear(); |
| 3490 | |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3491 | // Turn all of the unordered chains into one factored node. |
Chris Lattner | 5a6c6d9 | 2005-01-13 19:53:14 +0000 | [diff] [blame] | 3492 | if (!UnorderedChains.empty()) { |
Chris Lattner | 7436b57 | 2005-11-09 05:03:03 +0000 | [diff] [blame] | 3493 | SDOperand Root = SDL.getRoot(); |
| 3494 | if (Root.getOpcode() != ISD::EntryToken) { |
| 3495 | unsigned i = 0, e = UnorderedChains.size(); |
| 3496 | for (; i != e; ++i) { |
| 3497 | assert(UnorderedChains[i].Val->getNumOperands() > 1); |
| 3498 | if (UnorderedChains[i].Val->getOperand(0) == Root) |
| 3499 | break; // Don't add the root if we already indirectly depend on it. |
| 3500 | } |
| 3501 | |
| 3502 | if (i == e) |
| 3503 | UnorderedChains.push_back(Root); |
| 3504 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 3505 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 3506 | &UnorderedChains[0], UnorderedChains.size())); |
Chris Lattner | ddb870b | 2005-01-13 17:59:43 +0000 | [diff] [blame] | 3507 | } |
| 3508 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3509 | // Lower the terminator after the copies are emitted. |
| 3510 | SDL.visit(*LLVMBB->getTerminator()); |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 3511 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3512 | // Copy over any CaseBlock records that may now exist due to SwitchInst |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 3513 | // lowering, as well as any jump table information. |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3514 | SwitchCases.clear(); |
| 3515 | SwitchCases = SDL.SwitchCases; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 3516 | JT = SDL.JT; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3517 | |
Chris Lattner | a651cf6 | 2005-01-17 19:43:36 +0000 | [diff] [blame] | 3518 | // Make sure the root of the DAG is up-to-date. |
| 3519 | DAG.setRoot(SDL.getRoot()); |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3520 | } |
| 3521 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3522 | void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) { |
Chris Lattner | af21d55 | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 3523 | // Run the DAG combiner in pre-legalize mode. |
| 3524 | DAG.Combine(false); |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 3525 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3526 | DEBUG(std::cerr << "Lowered selection DAG:\n"); |
| 3527 | DEBUG(DAG.dump()); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3528 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3529 | // Second step, hack on the DAG until it only uses operations and types that |
| 3530 | // the target supports. |
Chris Lattner | ac9dc08 | 2005-01-23 04:36:26 +0000 | [diff] [blame] | 3531 | DAG.Legalize(); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3532 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3533 | DEBUG(std::cerr << "Legalized selection DAG:\n"); |
| 3534 | DEBUG(DAG.dump()); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3535 | |
Chris Lattner | af21d55 | 2005-10-10 16:47:10 +0000 | [diff] [blame] | 3536 | // Run the DAG combiner in post-legalize mode. |
| 3537 | DAG.Combine(true); |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 3538 | |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 3539 | if (ViewISelDAGs) DAG.viewGraph(); |
Evan Cheng | 552c4a8 | 2006-04-28 02:09:19 +0000 | [diff] [blame] | 3540 | |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 3541 | // Third, instruction select all of the operations to machine code, adding the |
| 3542 | // code to the MachineBasicBlock. |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3543 | InstructionSelectBasicBlock(DAG); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3544 | |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3545 | DEBUG(std::cerr << "Selected machine code:\n"); |
| 3546 | DEBUG(BB->dump()); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3547 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3548 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3549 | void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF, |
| 3550 | FunctionLoweringInfo &FuncInfo) { |
| 3551 | std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate; |
| 3552 | { |
| 3553 | SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>()); |
| 3554 | CurDAG = &DAG; |
| 3555 | |
| 3556 | // First step, lower LLVM code to some DAG. This DAG may use operations and |
| 3557 | // types that are not supported by the target. |
| 3558 | BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo); |
| 3559 | |
| 3560 | // Second step, emit the lowered DAG as machine code. |
| 3561 | CodeGenAndEmitDAG(DAG); |
| 3562 | } |
| 3563 | |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 3564 | // 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] | 3565 | // PHI nodes in successors. |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 3566 | if (SwitchCases.empty() && JT.Reg == 0) { |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3567 | for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) { |
| 3568 | MachineInstr *PHI = PHINodesToUpdate[i].first; |
| 3569 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 3570 | "This is not a machine PHI node that we are updating!"); |
Chris Lattner | 09e4606 | 2006-09-05 02:31:13 +0000 | [diff] [blame] | 3571 | PHI->addRegOperand(PHINodesToUpdate[i].second, false); |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3572 | PHI->addMachineBasicBlockOperand(BB); |
| 3573 | } |
| 3574 | return; |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3575 | } |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3576 | |
Nate Begeman | 9453eea | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 3577 | // If the JumpTable record is filled in, then we need to emit a jump table. |
| 3578 | // Updating the PHI nodes is tricky in this case, since we need to determine |
| 3579 | // whether the PHI is a successor of the range check MBB or the jump table MBB |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 3580 | if (JT.Reg) { |
| 3581 | assert(SwitchCases.empty() && "Cannot have jump table and lowered switch"); |
| 3582 | SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>()); |
| 3583 | CurDAG = &SDAG; |
| 3584 | SelectionDAGLowering SDL(SDAG, TLI, FuncInfo); |
Nate Begeman | 9453eea | 2006-04-23 06:26:20 +0000 | [diff] [blame] | 3585 | MachineBasicBlock *RangeBB = BB; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 3586 | // Set the current basic block to the mbb we wish to insert the code into |
| 3587 | BB = JT.MBB; |
| 3588 | SDL.setCurrentBasicBlock(BB); |
| 3589 | // Emit the code |
| 3590 | SDL.visitJumpTable(JT); |
| 3591 | SDAG.setRoot(SDL.getRoot()); |
| 3592 | CodeGenAndEmitDAG(SDAG); |
| 3593 | // Update PHI Nodes |
| 3594 | for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) { |
| 3595 | MachineInstr *PHI = PHINodesToUpdate[pi].first; |
| 3596 | MachineBasicBlock *PHIBB = PHI->getParent(); |
| 3597 | assert(PHI->getOpcode() == TargetInstrInfo::PHI && |
| 3598 | "This is not a machine PHI node that we are updating!"); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 3599 | if (PHIBB == JT.Default) { |
Chris Lattner | 09e4606 | 2006-09-05 02:31:13 +0000 | [diff] [blame] | 3600 | PHI->addRegOperand(PHINodesToUpdate[pi].second, false); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 3601 | PHI->addMachineBasicBlockOperand(RangeBB); |
| 3602 | } |
| 3603 | if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) { |
Chris Lattner | 09e4606 | 2006-09-05 02:31:13 +0000 | [diff] [blame] | 3604 | PHI->addRegOperand(PHINodesToUpdate[pi].second, false); |
Nate Begeman | f4360a4 | 2006-05-03 03:48:02 +0000 | [diff] [blame] | 3605 | PHI->addMachineBasicBlockOperand(BB); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 3606 | } |
| 3607 | } |
| 3608 | return; |
| 3609 | } |
| 3610 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3611 | // If we generated any switch lowering information, build and codegen any |
| 3612 | // additional DAGs necessary. |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3613 | for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) { |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3614 | SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>()); |
| 3615 | CurDAG = &SDAG; |
| 3616 | SelectionDAGLowering SDL(SDAG, TLI, FuncInfo); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3617 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3618 | // Set the current basic block to the mbb we wish to insert the code into |
| 3619 | BB = SwitchCases[i].ThisBB; |
| 3620 | SDL.setCurrentBasicBlock(BB); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3621 | |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3622 | // Emit the code |
| 3623 | SDL.visitSwitchCase(SwitchCases[i]); |
| 3624 | SDAG.setRoot(SDL.getRoot()); |
| 3625 | CodeGenAndEmitDAG(SDAG); |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3626 | |
| 3627 | // Handle any PHI nodes in successors of this chunk, as if we were coming |
| 3628 | // from the original BB before switch expansion. Note that PHI nodes can |
| 3629 | // occur multiple times in PHINodesToUpdate. We have to be very careful to |
| 3630 | // handle them the right number of times. |
| 3631 | while ((BB = SwitchCases[i].LHSBB)) { // Handle LHS and RHS. |
| 3632 | for (MachineBasicBlock::iterator Phi = BB->begin(); |
| 3633 | Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){ |
| 3634 | // This value for this PHI node is recorded in PHINodesToUpdate, get it. |
| 3635 | for (unsigned pn = 0; ; ++pn) { |
| 3636 | assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!"); |
| 3637 | if (PHINodesToUpdate[pn].first == Phi) { |
| 3638 | Phi->addRegOperand(PHINodesToUpdate[pn].second, false); |
| 3639 | Phi->addMachineBasicBlockOperand(SwitchCases[i].ThisBB); |
| 3640 | break; |
| 3641 | } |
| 3642 | } |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3643 | } |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3644 | |
| 3645 | // Don't process RHS if same block as LHS. |
| 3646 | if (BB == SwitchCases[i].RHSBB) |
| 3647 | SwitchCases[i].RHSBB = 0; |
| 3648 | |
| 3649 | // If we haven't handled the RHS, do so now. Otherwise, we're done. |
| 3650 | SwitchCases[i].LHSBB = SwitchCases[i].RHSBB; |
| 3651 | SwitchCases[i].RHSBB = 0; |
Nate Begeman | f15485a | 2006-03-27 01:32:24 +0000 | [diff] [blame] | 3652 | } |
Chris Lattner | d5e93c0 | 2006-09-07 01:59:34 +0000 | [diff] [blame] | 3653 | assert(SwitchCases[i].LHSBB == 0 && SwitchCases[i].RHSBB == 0); |
Chris Lattner | a33ef48 | 2005-03-30 01:10:47 +0000 | [diff] [blame] | 3654 | } |
Chris Lattner | 1c08c71 | 2005-01-07 07:47:53 +0000 | [diff] [blame] | 3655 | } |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 3656 | |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 3657 | |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 3658 | //===----------------------------------------------------------------------===// |
| 3659 | /// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each |
| 3660 | /// target node in the graph. |
| 3661 | void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) { |
| 3662 | if (ViewSchedDAGs) DAG.viewGraph(); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 3663 | |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 3664 | RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault(); |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 3665 | |
| 3666 | if (!Ctor) { |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 3667 | Ctor = ISHeuristic; |
Jim Laskey | 9373beb | 2006-08-01 19:14:14 +0000 | [diff] [blame] | 3668 | RegisterScheduler::setDefault(Ctor); |
Evan Cheng | 4ef1086 | 2006-01-23 07:01:07 +0000 | [diff] [blame] | 3669 | } |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 3670 | |
Jim Laskey | 9ff542f | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 3671 | ScheduleDAG *SL = Ctor(this, &DAG, BB); |
Chris Lattner | a3818e6 | 2006-01-21 19:12:11 +0000 | [diff] [blame] | 3672 | BB = SL->Run(); |
Evan Cheng | cccf123 | 2006-02-04 06:49:00 +0000 | [diff] [blame] | 3673 | delete SL; |
Evan Cheng | a9c2091 | 2006-01-21 02:32:06 +0000 | [diff] [blame] | 3674 | } |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 3675 | |
Chris Lattner | 03fc53c | 2006-03-06 00:22:00 +0000 | [diff] [blame] | 3676 | |
Jim Laskey | 9ff542f | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 3677 | HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() { |
| 3678 | return new HazardRecognizer(); |
| 3679 | } |
| 3680 | |
| 3681 | |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 3682 | /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated |
| 3683 | /// by tblgen. Others should not call it. |
| 3684 | void SelectionDAGISel:: |
| 3685 | SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) { |
| 3686 | std::vector<SDOperand> InOps; |
| 3687 | std::swap(InOps, Ops); |
| 3688 | |
| 3689 | Ops.push_back(InOps[0]); // input chain. |
| 3690 | Ops.push_back(InOps[1]); // input asm string. |
| 3691 | |
Chris Lattner | 0e43f2b | 2006-02-24 02:13:54 +0000 | [diff] [blame] | 3692 | unsigned i = 2, e = InOps.size(); |
| 3693 | if (InOps[e-1].getValueType() == MVT::Flag) |
| 3694 | --e; // Don't process a flag operand if it is here. |
| 3695 | |
| 3696 | while (i != e) { |
| 3697 | unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue(); |
| 3698 | if ((Flags & 7) != 4 /*MEM*/) { |
| 3699 | // Just skip over this operand, copying the operands verbatim. |
| 3700 | Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1); |
| 3701 | i += (Flags >> 3) + 1; |
| 3702 | } else { |
| 3703 | assert((Flags >> 3) == 1 && "Memory operand with multiple values?"); |
| 3704 | // Otherwise, this is a memory operand. Ask the target to select it. |
| 3705 | std::vector<SDOperand> SelOps; |
| 3706 | if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) { |
| 3707 | std::cerr << "Could not match memory address. Inline asm failure!\n"; |
| 3708 | exit(1); |
| 3709 | } |
| 3710 | |
| 3711 | // Add this to the output node. |
| 3712 | Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32)); |
| 3713 | Ops.insert(Ops.end(), SelOps.begin(), SelOps.end()); |
| 3714 | i += 2; |
| 3715 | } |
| 3716 | } |
| 3717 | |
| 3718 | // Add the flag input back if present. |
| 3719 | if (e != InOps.size()) |
| 3720 | Ops.push_back(InOps.back()); |
| 3721 | } |