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