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