Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1 | //===-- SelectionDAGBuild.cpp - Selection-DAG building --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This implements routines for translating from LLVM IR into SelectionDAG IR. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "isel" |
| 15 | #include "SelectionDAGBuild.h" |
| 16 | #include "llvm/ADT/BitVector.h" |
Dan Gohman | 5b22980 | 2008-09-04 20:49:27 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallSet.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/AliasAnalysis.h" |
| 19 | #include "llvm/Constants.h" |
| 20 | #include "llvm/CallingConv.h" |
| 21 | #include "llvm/DerivedTypes.h" |
| 22 | #include "llvm/Function.h" |
| 23 | #include "llvm/GlobalVariable.h" |
| 24 | #include "llvm/InlineAsm.h" |
| 25 | #include "llvm/Instructions.h" |
| 26 | #include "llvm/Intrinsics.h" |
| 27 | #include "llvm/IntrinsicInst.h" |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 28 | #include "llvm/Module.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/FastISel.h" |
| 30 | #include "llvm/CodeGen/GCStrategy.h" |
| 31 | #include "llvm/CodeGen/GCMetadata.h" |
| 32 | #include "llvm/CodeGen/MachineFunction.h" |
| 33 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 34 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 35 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
| 36 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 37 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/SelectionDAG.h" |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/DwarfWriter.h" |
| 41 | #include "llvm/Analysis/DebugInfo.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 42 | #include "llvm/Target/TargetRegisterInfo.h" |
| 43 | #include "llvm/Target/TargetData.h" |
| 44 | #include "llvm/Target/TargetFrameInfo.h" |
| 45 | #include "llvm/Target/TargetInstrInfo.h" |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 46 | #include "llvm/Target/TargetIntrinsicInfo.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 47 | #include "llvm/Target/TargetLowering.h" |
| 48 | #include "llvm/Target/TargetMachine.h" |
| 49 | #include "llvm/Target/TargetOptions.h" |
| 50 | #include "llvm/Support/Compiler.h" |
Mikhail Glushenkov | 2388a58 | 2009-01-16 07:02:28 +0000 | [diff] [blame] | 51 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 52 | #include "llvm/Support/Debug.h" |
| 53 | #include "llvm/Support/MathExtras.h" |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 54 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 55 | #include <algorithm> |
| 56 | using namespace llvm; |
| 57 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 58 | /// LimitFloatPrecision - Generate low-precision inline sequences for |
| 59 | /// some float libcalls (6, 8 or 12 bits). |
| 60 | static unsigned LimitFloatPrecision; |
| 61 | |
| 62 | static cl::opt<unsigned, true> |
| 63 | LimitFPPrecision("limit-float-precision", |
| 64 | cl::desc("Generate low-precision inline sequences " |
| 65 | "for some float libcalls"), |
| 66 | cl::location(LimitFloatPrecision), |
| 67 | cl::init(0)); |
| 68 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 69 | /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 70 | /// of insertvalue or extractvalue indices that identify a member, return |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 71 | /// the linearized index of the start of the member. |
| 72 | /// |
| 73 | static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty, |
| 74 | const unsigned *Indices, |
| 75 | const unsigned *IndicesEnd, |
| 76 | unsigned CurIndex = 0) { |
| 77 | // Base case: We're done. |
| 78 | if (Indices && Indices == IndicesEnd) |
| 79 | return CurIndex; |
| 80 | |
| 81 | // Given a struct type, recursively traverse the elements. |
| 82 | if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 83 | for (StructType::element_iterator EB = STy->element_begin(), |
| 84 | EI = EB, |
| 85 | EE = STy->element_end(); |
| 86 | EI != EE; ++EI) { |
| 87 | if (Indices && *Indices == unsigned(EI - EB)) |
| 88 | return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex); |
| 89 | CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex); |
| 90 | } |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 91 | return CurIndex; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 92 | } |
| 93 | // Given an array type, recursively traverse the elements. |
| 94 | else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 95 | const Type *EltTy = ATy->getElementType(); |
| 96 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) { |
| 97 | if (Indices && *Indices == i) |
| 98 | return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex); |
| 99 | CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex); |
| 100 | } |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 101 | return CurIndex; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 102 | } |
| 103 | // We haven't found the type we're looking for, so keep searching. |
| 104 | return CurIndex + 1; |
| 105 | } |
| 106 | |
| 107 | /// ComputeValueVTs - Given an LLVM IR type, compute a sequence of |
| 108 | /// MVTs that represent all the individual underlying |
| 109 | /// non-aggregate types that comprise it. |
| 110 | /// |
| 111 | /// If Offsets is non-null, it points to a vector to be filled in |
| 112 | /// with the in-memory offsets of each of the individual values. |
| 113 | /// |
| 114 | static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty, |
| 115 | SmallVectorImpl<MVT> &ValueVTs, |
| 116 | SmallVectorImpl<uint64_t> *Offsets = 0, |
| 117 | uint64_t StartingOffset = 0) { |
| 118 | // Given a struct type, recursively traverse the elements. |
| 119 | if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 120 | const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy); |
| 121 | for (StructType::element_iterator EB = STy->element_begin(), |
| 122 | EI = EB, |
| 123 | EE = STy->element_end(); |
| 124 | EI != EE; ++EI) |
| 125 | ComputeValueVTs(TLI, *EI, ValueVTs, Offsets, |
| 126 | StartingOffset + SL->getElementOffset(EI - EB)); |
| 127 | return; |
| 128 | } |
| 129 | // Given an array type, recursively traverse the elements. |
| 130 | if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 131 | const Type *EltTy = ATy->getElementType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 132 | uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 133 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) |
| 134 | ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets, |
| 135 | StartingOffset + i * EltSize); |
| 136 | return; |
| 137 | } |
| 138 | // Base case: we can get an MVT for this LLVM IR type. |
| 139 | ValueVTs.push_back(TLI.getValueType(Ty)); |
| 140 | if (Offsets) |
| 141 | Offsets->push_back(StartingOffset); |
| 142 | } |
| 143 | |
Dan Gohman | 2a7c671 | 2008-09-03 23:18:39 +0000 | [diff] [blame] | 144 | namespace llvm { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 145 | /// RegsForValue - This struct represents the registers (physical or virtual) |
| 146 | /// that a particular set of values is assigned, and the type information about |
| 147 | /// the value. The most common situation is to represent one value at a time, |
| 148 | /// but struct or array values are handled element-wise as multiple values. |
| 149 | /// The splitting of aggregates is performed recursively, so that we never |
| 150 | /// have aggregate-typed registers. The values at this point do not necessarily |
| 151 | /// have legal types, so each value may require one or more registers of some |
| 152 | /// legal type. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 153 | /// |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 154 | struct VISIBILITY_HIDDEN RegsForValue { |
| 155 | /// TLI - The TargetLowering object. |
| 156 | /// |
| 157 | const TargetLowering *TLI; |
| 158 | |
| 159 | /// ValueVTs - The value types of the values, which may not be legal, and |
| 160 | /// may need be promoted or synthesized from one or more registers. |
| 161 | /// |
| 162 | SmallVector<MVT, 4> ValueVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 163 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 164 | /// RegVTs - The value types of the registers. This is the same size as |
| 165 | /// ValueVTs and it records, for each value, what the type of the assigned |
| 166 | /// register or registers are. (Individual values are never synthesized |
| 167 | /// from more than one type of register.) |
| 168 | /// |
| 169 | /// With virtual registers, the contents of RegVTs is redundant with TLI's |
| 170 | /// getRegisterType member function, however when with physical registers |
| 171 | /// it is necessary to have a separate record of the types. |
| 172 | /// |
| 173 | SmallVector<MVT, 4> RegVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 174 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 175 | /// Regs - This list holds the registers assigned to the values. |
| 176 | /// Each legal or promoted value requires one register, and each |
| 177 | /// expanded value requires multiple registers. |
| 178 | /// |
| 179 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 180 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 181 | RegsForValue() : TLI(0) {} |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 182 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 183 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 184 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 185 | MVT regvt, MVT valuevt) |
| 186 | : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {} |
| 187 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 188 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 189 | const SmallVector<MVT, 4> ®vts, |
| 190 | const SmallVector<MVT, 4> &valuevts) |
| 191 | : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {} |
| 192 | RegsForValue(const TargetLowering &tli, |
| 193 | unsigned Reg, const Type *Ty) : TLI(&tli) { |
| 194 | ComputeValueVTs(tli, Ty, ValueVTs); |
| 195 | |
| 196 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 197 | MVT ValueVT = ValueVTs[Value]; |
| 198 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 199 | MVT RegisterVT = TLI->getRegisterType(ValueVT); |
| 200 | for (unsigned i = 0; i != NumRegs; ++i) |
| 201 | Regs.push_back(Reg + i); |
| 202 | RegVTs.push_back(RegisterVT); |
| 203 | Reg += NumRegs; |
| 204 | } |
| 205 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 206 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 207 | /// append - Add the specified values to this one. |
| 208 | void append(const RegsForValue &RHS) { |
| 209 | TLI = RHS.TLI; |
| 210 | ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end()); |
| 211 | RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end()); |
| 212 | Regs.append(RHS.Regs.begin(), RHS.Regs.end()); |
| 213 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 214 | |
| 215 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 216 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 217 | /// this value and returns the result as a ValueVTs value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 218 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 219 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 220 | SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 221 | SDValue &Chain, SDValue *Flag) const; |
| 222 | |
| 223 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 224 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 225 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 226 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 227 | void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 228 | SDValue &Chain, SDValue *Flag) const; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 229 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 230 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 231 | /// operand list. This adds the code marker, matching input operand index |
| 232 | /// (if applicable), and includes the number of values added into it. |
| 233 | void AddInlineAsmOperands(unsigned Code, |
| 234 | bool HasMatching, unsigned MatchingIdx, |
| 235 | SelectionDAG &DAG, std::vector<SDValue> &Ops) const; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 236 | }; |
| 237 | } |
| 238 | |
| 239 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 240 | /// PHI nodes or outside of the basic block that defines it, or used by a |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 241 | /// switch or atomic instruction, which may expand to multiple basic blocks. |
| 242 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 243 | if (isa<PHINode>(I)) return true; |
| 244 | BasicBlock *BB = I->getParent(); |
| 245 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI) |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 246 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 247 | return true; |
| 248 | return false; |
| 249 | } |
| 250 | |
| 251 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
| 252 | /// entry block, return true. This includes arguments used by switches, since |
| 253 | /// the switch may expand into multiple basic blocks. |
| 254 | static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) { |
| 255 | // With FastISel active, we may be splitting blocks, so force creation |
| 256 | // of virtual registers for all non-dead arguments. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 257 | // Don't force virtual registers for byval arguments though, because |
| 258 | // fast-isel can't handle those in all cases. |
| 259 | if (EnableFastISel && !A->hasByValAttr()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 260 | return A->use_empty(); |
| 261 | |
| 262 | BasicBlock *Entry = A->getParent()->begin(); |
| 263 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
| 264 | if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) |
| 265 | return false; // Use not in entry block. |
| 266 | return true; |
| 267 | } |
| 268 | |
| 269 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli) |
| 270 | : TLI(tli) { |
| 271 | } |
| 272 | |
| 273 | void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf, |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 274 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 275 | bool EnableFastISel) { |
| 276 | Fn = &fn; |
| 277 | MF = &mf; |
| 278 | RegInfo = &MF->getRegInfo(); |
| 279 | |
| 280 | // Create a vreg for each argument register that is not dead and is used |
| 281 | // outside of the entry block for the function. |
| 282 | for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end(); |
| 283 | AI != E; ++AI) |
| 284 | if (!isOnlyUsedInEntryBlock(AI, EnableFastISel)) |
| 285 | InitializeRegForValue(AI); |
| 286 | |
| 287 | // Initialize the mapping of values to registers. This is only set up for |
| 288 | // instruction values that are used outside of the block that defines |
| 289 | // them. |
| 290 | Function::iterator BB = Fn->begin(), EB = Fn->end(); |
| 291 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 292 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 293 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { |
| 294 | const Type *Ty = AI->getAllocatedType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 295 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 296 | unsigned Align = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 297 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 298 | AI->getAlignment()); |
| 299 | |
| 300 | TySize *= CUI->getZExtValue(); // Get total allocated size. |
| 301 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
| 302 | StaticAllocaMap[AI] = |
| 303 | MF->getFrameInfo()->CreateStackObject(TySize, Align); |
| 304 | } |
| 305 | |
| 306 | for (; BB != EB; ++BB) |
| 307 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 308 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 309 | if (!isa<AllocaInst>(I) || |
| 310 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 311 | InitializeRegForValue(I); |
| 312 | |
| 313 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 314 | // also creates the initial PHI MachineInstrs, though none of the input |
| 315 | // operands are populated. |
| 316 | for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) { |
| 317 | MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB); |
| 318 | MBBMap[BB] = MBB; |
| 319 | MF->push_back(MBB); |
| 320 | |
| 321 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 322 | // appropriate. |
| 323 | PHINode *PN; |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 324 | DebugLoc DL; |
| 325 | for (BasicBlock::iterator |
| 326 | I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 327 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 328 | if (Function *F = CI->getCalledFunction()) { |
| 329 | switch (F->getIntrinsicID()) { |
| 330 | default: break; |
| 331 | case Intrinsic::dbg_stoppoint: { |
| 332 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 333 | DbgStopPointInst *SPI = cast<DbgStopPointInst>(I); |
| 334 | |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 335 | if (DW && DW->ValidDebugInfo(SPI->getContext(), false)) { |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 336 | DICompileUnit CU(cast<GlobalVariable>(SPI->getContext())); |
Bill Wendling | 0582ae9 | 2009-03-13 04:39:26 +0000 | [diff] [blame] | 337 | std::string Dir, FN; |
| 338 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir), |
| 339 | CU.getFilename(FN)); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 340 | unsigned idx = MF->getOrCreateDebugLocID(SrcFile, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 341 | SPI->getLine(), |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 342 | SPI->getColumn()); |
| 343 | DL = DebugLoc::get(idx); |
| 344 | } |
| 345 | |
| 346 | break; |
| 347 | } |
| 348 | case Intrinsic::dbg_func_start: { |
| 349 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 350 | if (DW) { |
| 351 | DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I); |
| 352 | Value *SP = FSI->getSubprogram(); |
| 353 | |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 354 | if (DW->ValidDebugInfo(SP, false)) { |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 355 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 356 | DICompileUnit CU(Subprogram.getCompileUnit()); |
Bill Wendling | 0582ae9 | 2009-03-13 04:39:26 +0000 | [diff] [blame] | 357 | std::string Dir, FN; |
| 358 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir), |
| 359 | CU.getFilename(FN)); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 360 | unsigned Line = Subprogram.getLineNumber(); |
| 361 | DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0)); |
| 362 | } |
| 363 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 364 | |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 365 | break; |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | PN = dyn_cast<PHINode>(I); |
| 372 | if (!PN || PN->use_empty()) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 373 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 374 | unsigned PHIReg = ValueMap[PN]; |
| 375 | assert(PHIReg && "PHI node does not have an assigned virtual register!"); |
| 376 | |
| 377 | SmallVector<MVT, 4> ValueVTs; |
| 378 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 379 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 380 | MVT VT = ValueVTs[vti]; |
| 381 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
Dan Gohman | 6448d91 | 2008-09-04 15:39:15 +0000 | [diff] [blame] | 382 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 383 | for (unsigned i = 0; i != NumRegisters; ++i) |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 384 | BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 385 | PHIReg += NumRegisters; |
| 386 | } |
| 387 | } |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | unsigned FunctionLoweringInfo::MakeReg(MVT VT) { |
| 392 | return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 393 | } |
| 394 | |
| 395 | /// CreateRegForValue - Allocate the appropriate number of virtual registers of |
| 396 | /// the correctly promoted or expanded types. Assign these registers |
| 397 | /// consecutive vreg numbers and return the first assigned number. |
| 398 | /// |
| 399 | /// In the case that the given value has struct or array type, this function |
| 400 | /// will assign registers for each member or element. |
| 401 | /// |
| 402 | unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) { |
| 403 | SmallVector<MVT, 4> ValueVTs; |
| 404 | ComputeValueVTs(TLI, V->getType(), ValueVTs); |
| 405 | |
| 406 | unsigned FirstReg = 0; |
| 407 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 408 | MVT ValueVT = ValueVTs[Value]; |
| 409 | MVT RegisterVT = TLI.getRegisterType(ValueVT); |
| 410 | |
| 411 | unsigned NumRegs = TLI.getNumRegisters(ValueVT); |
| 412 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 413 | unsigned R = MakeReg(RegisterVT); |
| 414 | if (!FirstReg) FirstReg = R; |
| 415 | } |
| 416 | } |
| 417 | return FirstReg; |
| 418 | } |
| 419 | |
| 420 | /// getCopyFromParts - Create a value that contains the specified legal parts |
| 421 | /// combined into the value they represent. If the parts combine to a type |
| 422 | /// larger then ValueVT then AssertOp can be used to specify whether the extra |
| 423 | /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT |
| 424 | /// (ISD::AssertSext). |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 425 | static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, |
| 426 | const SDValue *Parts, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 427 | unsigned NumParts, MVT PartVT, MVT ValueVT, |
| 428 | ISD::NodeType AssertOp = ISD::DELETED_NODE) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 429 | assert(NumParts > 0 && "No parts to assemble!"); |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 430 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 431 | SDValue Val = Parts[0]; |
| 432 | |
| 433 | if (NumParts > 1) { |
| 434 | // Assemble the value from multiple parts. |
| 435 | if (!ValueVT.isVector()) { |
| 436 | unsigned PartBits = PartVT.getSizeInBits(); |
| 437 | unsigned ValueBits = ValueVT.getSizeInBits(); |
| 438 | |
| 439 | // Assemble the power of 2 part. |
| 440 | unsigned RoundParts = NumParts & (NumParts - 1) ? |
| 441 | 1 << Log2_32(NumParts) : NumParts; |
| 442 | unsigned RoundBits = PartBits * RoundParts; |
| 443 | MVT RoundVT = RoundBits == ValueBits ? |
| 444 | ValueVT : MVT::getIntegerVT(RoundBits); |
| 445 | SDValue Lo, Hi; |
| 446 | |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 447 | MVT HalfVT = ValueVT.isInteger() ? |
| 448 | MVT::getIntegerVT(RoundBits/2) : |
| 449 | MVT::getFloatingPointVT(RoundBits/2); |
| 450 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 451 | if (RoundParts > 2) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 452 | Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT); |
| 453 | Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 454 | PartVT, HalfVT); |
| 455 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 456 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]); |
| 457 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 458 | } |
| 459 | if (TLI.isBigEndian()) |
| 460 | std::swap(Lo, Hi); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 461 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 462 | |
| 463 | if (RoundParts < NumParts) { |
| 464 | // Assemble the trailing non-power-of-2 part. |
| 465 | unsigned OddParts = NumParts - RoundParts; |
| 466 | MVT OddVT = MVT::getIntegerVT(OddParts * PartBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 467 | Hi = getCopyFromParts(DAG, dl, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 468 | Parts+RoundParts, OddParts, PartVT, OddVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 469 | |
| 470 | // Combine the round and odd parts. |
| 471 | Lo = Val; |
| 472 | if (TLI.isBigEndian()) |
| 473 | std::swap(Lo, Hi); |
| 474 | MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 475 | Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi); |
| 476 | Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 477 | DAG.getConstant(Lo.getValueType().getSizeInBits(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 478 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 479 | Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo); |
| 480 | Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 481 | } |
| 482 | } else { |
| 483 | // Handle a multi-element vector. |
| 484 | MVT IntermediateVT, RegisterVT; |
| 485 | unsigned NumIntermediates; |
| 486 | unsigned NumRegs = |
| 487 | TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 488 | RegisterVT); |
| 489 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 490 | NumParts = NumRegs; // Silence a compiler warning. |
| 491 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 492 | assert(RegisterVT == Parts[0].getValueType() && |
| 493 | "Part type doesn't match part!"); |
| 494 | |
| 495 | // Assemble the parts into intermediate operands. |
| 496 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 497 | if (NumIntermediates == NumParts) { |
| 498 | // If the register was not expanded, truncate or copy the value, |
| 499 | // as appropriate. |
| 500 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 501 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 502 | PartVT, IntermediateVT); |
| 503 | } else if (NumParts > 0) { |
| 504 | // If the intermediate type was expanded, build the intermediate operands |
| 505 | // from the parts. |
| 506 | assert(NumParts % NumIntermediates == 0 && |
| 507 | "Must expand into a divisible number of parts!"); |
| 508 | unsigned Factor = NumParts / NumIntermediates; |
| 509 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 510 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 511 | PartVT, IntermediateVT); |
| 512 | } |
| 513 | |
| 514 | // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate |
| 515 | // operands. |
| 516 | Val = DAG.getNode(IntermediateVT.isVector() ? |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 517 | ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 518 | ValueVT, &Ops[0], NumIntermediates); |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | // There is now one part, held in Val. Correct it to match ValueVT. |
| 523 | PartVT = Val.getValueType(); |
| 524 | |
| 525 | if (PartVT == ValueVT) |
| 526 | return Val; |
| 527 | |
| 528 | if (PartVT.isVector()) { |
| 529 | assert(ValueVT.isVector() && "Unknown vector conversion!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 530 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | if (ValueVT.isVector()) { |
| 534 | assert(ValueVT.getVectorElementType() == PartVT && |
| 535 | ValueVT.getVectorNumElements() == 1 && |
| 536 | "Only trivial scalar-to-vector conversions should get here!"); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 537 | return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | if (PartVT.isInteger() && |
| 541 | ValueVT.isInteger()) { |
| 542 | if (ValueVT.bitsLT(PartVT)) { |
| 543 | // For a truncate, see if we have any information to |
| 544 | // indicate whether the truncated bits will always be |
| 545 | // zero or sign-extension. |
| 546 | if (AssertOp != ISD::DELETED_NODE) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 547 | Val = DAG.getNode(AssertOp, dl, PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 548 | DAG.getValueType(ValueVT)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 549 | return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 550 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 551 | return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 552 | } |
| 553 | } |
| 554 | |
| 555 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 556 | if (ValueVT.bitsLT(Val.getValueType())) |
| 557 | // FP_ROUND's are always exact here. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 558 | return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 559 | DAG.getIntPtrConstant(1)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 560 | return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 564 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 565 | |
| 566 | assert(0 && "Unknown mismatch!"); |
| 567 | return SDValue(); |
| 568 | } |
| 569 | |
| 570 | /// getCopyToParts - Create a series of nodes that contain the specified value |
| 571 | /// split into legal parts. If the parts contain more bits than Val, then, for |
| 572 | /// integers, ExtendKind can be used to specify how to generate the extra bits. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 573 | static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val, |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 574 | SDValue *Parts, unsigned NumParts, MVT PartVT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 575 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 576 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 577 | MVT PtrVT = TLI.getPointerTy(); |
| 578 | MVT ValueVT = Val.getValueType(); |
| 579 | unsigned PartBits = PartVT.getSizeInBits(); |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 580 | unsigned OrigNumParts = NumParts; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 581 | assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!"); |
| 582 | |
| 583 | if (!NumParts) |
| 584 | return; |
| 585 | |
| 586 | if (!ValueVT.isVector()) { |
| 587 | if (PartVT == ValueVT) { |
| 588 | assert(NumParts == 1 && "No-op copy with multiple parts!"); |
| 589 | Parts[0] = Val; |
| 590 | return; |
| 591 | } |
| 592 | |
| 593 | if (NumParts * PartBits > ValueVT.getSizeInBits()) { |
| 594 | // If the parts cover more bits than the value has, promote the value. |
| 595 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 596 | assert(NumParts == 1 && "Do not know what to promote to!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 597 | Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 598 | } else if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 599 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 600 | Val = DAG.getNode(ExtendKind, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 601 | } else { |
| 602 | assert(0 && "Unknown mismatch!"); |
| 603 | } |
| 604 | } else if (PartBits == ValueVT.getSizeInBits()) { |
| 605 | // Different types of the same size. |
| 606 | assert(NumParts == 1 && PartVT != ValueVT); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 607 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 608 | } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { |
| 609 | // If the parts cover less bits than value has, truncate the value. |
| 610 | if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 611 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 612 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 613 | } else { |
| 614 | assert(0 && "Unknown mismatch!"); |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | // The value may have changed - recompute ValueVT. |
| 619 | ValueVT = Val.getValueType(); |
| 620 | assert(NumParts * PartBits == ValueVT.getSizeInBits() && |
| 621 | "Failed to tile the value with PartVT!"); |
| 622 | |
| 623 | if (NumParts == 1) { |
| 624 | assert(PartVT == ValueVT && "Type conversion failed!"); |
| 625 | Parts[0] = Val; |
| 626 | return; |
| 627 | } |
| 628 | |
| 629 | // Expand the value into multiple parts. |
| 630 | if (NumParts & (NumParts - 1)) { |
| 631 | // The number of parts is not a power of 2. Split off and copy the tail. |
| 632 | assert(PartVT.isInteger() && ValueVT.isInteger() && |
| 633 | "Do not know what to expand to!"); |
| 634 | unsigned RoundParts = 1 << Log2_32(NumParts); |
| 635 | unsigned RoundBits = RoundParts * PartBits; |
| 636 | unsigned OddParts = NumParts - RoundParts; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 637 | SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 638 | DAG.getConstant(RoundBits, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 639 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 640 | getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 641 | if (TLI.isBigEndian()) |
| 642 | // The odd parts were reversed by getCopyToParts - unreverse them. |
| 643 | std::reverse(Parts + RoundParts, Parts + NumParts); |
| 644 | NumParts = RoundParts; |
| 645 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 646 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | // The number of parts is a power of 2. Repeatedly bisect the value using |
| 650 | // EXTRACT_ELEMENT. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 651 | Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 652 | MVT::getIntegerVT(ValueVT.getSizeInBits()), |
| 653 | Val); |
| 654 | for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { |
| 655 | for (unsigned i = 0; i < NumParts; i += StepSize) { |
| 656 | unsigned ThisBits = StepSize * PartBits / 2; |
| 657 | MVT ThisVT = MVT::getIntegerVT (ThisBits); |
| 658 | SDValue &Part0 = Parts[i]; |
| 659 | SDValue &Part1 = Parts[i+StepSize/2]; |
| 660 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 661 | Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 662 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 663 | DAG.getConstant(1, PtrVT)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 664 | Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 665 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 666 | DAG.getConstant(0, PtrVT)); |
| 667 | |
| 668 | if (ThisBits == PartBits && ThisVT != PartVT) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 669 | Part0 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 670 | PartVT, Part0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 671 | Part1 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 672 | PartVT, Part1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | if (TLI.isBigEndian()) |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 678 | std::reverse(Parts, Parts + OrigNumParts); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 679 | |
| 680 | return; |
| 681 | } |
| 682 | |
| 683 | // Vector ValueVT. |
| 684 | if (NumParts == 1) { |
| 685 | if (PartVT != ValueVT) { |
| 686 | if (PartVT.isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 687 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 688 | } else { |
| 689 | assert(ValueVT.getVectorElementType() == PartVT && |
| 690 | ValueVT.getVectorNumElements() == 1 && |
| 691 | "Only trivial vector-to-scalar conversions should get here!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 692 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 693 | PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 694 | DAG.getConstant(0, PtrVT)); |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | Parts[0] = Val; |
| 699 | return; |
| 700 | } |
| 701 | |
| 702 | // Handle a multi-element vector. |
| 703 | MVT IntermediateVT, RegisterVT; |
| 704 | unsigned NumIntermediates; |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 705 | unsigned NumRegs = TLI |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 706 | .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 707 | RegisterVT); |
| 708 | unsigned NumElements = ValueVT.getVectorNumElements(); |
| 709 | |
| 710 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 711 | NumParts = NumRegs; // Silence a compiler warning. |
| 712 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 713 | |
| 714 | // Split the vector into intermediate operands. |
| 715 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 716 | for (unsigned i = 0; i != NumIntermediates; ++i) |
| 717 | if (IntermediateVT.isVector()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 718 | Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 719 | IntermediateVT, Val, |
| 720 | DAG.getConstant(i * (NumElements / NumIntermediates), |
| 721 | PtrVT)); |
| 722 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 723 | Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 724 | IntermediateVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 725 | DAG.getConstant(i, PtrVT)); |
| 726 | |
| 727 | // Split the intermediate operands into legal parts. |
| 728 | if (NumParts == NumIntermediates) { |
| 729 | // If the register was not expanded, promote or copy the value, |
| 730 | // as appropriate. |
| 731 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 732 | getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 733 | } else if (NumParts > 0) { |
| 734 | // If the intermediate type was expanded, split each the value into |
| 735 | // legal parts. |
| 736 | assert(NumParts % NumIntermediates == 0 && |
| 737 | "Must expand into a divisible number of parts!"); |
| 738 | unsigned Factor = NumParts / NumIntermediates; |
| 739 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 740 | getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 741 | } |
| 742 | } |
| 743 | |
| 744 | |
| 745 | void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) { |
| 746 | AA = &aa; |
| 747 | GFI = gfi; |
| 748 | TD = DAG.getTarget().getTargetData(); |
| 749 | } |
| 750 | |
| 751 | /// clear - Clear out the curret SelectionDAG and the associated |
| 752 | /// state and prepare this SelectionDAGLowering object to be used |
| 753 | /// for a new block. This doesn't clear out information about |
| 754 | /// additional blocks that are needed to complete switch lowering |
| 755 | /// or PHI node updating; that information is cleared out as it is |
| 756 | /// consumed. |
| 757 | void SelectionDAGLowering::clear() { |
| 758 | NodeMap.clear(); |
| 759 | PendingLoads.clear(); |
| 760 | PendingExports.clear(); |
| 761 | DAG.clear(); |
Bill Wendling | 8fcf170 | 2009-02-06 21:36:23 +0000 | [diff] [blame] | 762 | CurDebugLoc = DebugLoc::getUnknownLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 766 | /// flushing any PendingLoad items. This must be done before emitting |
| 767 | /// a store or any other node that may need to be ordered after any |
| 768 | /// prior load instructions. |
| 769 | /// |
| 770 | SDValue SelectionDAGLowering::getRoot() { |
| 771 | if (PendingLoads.empty()) |
| 772 | return DAG.getRoot(); |
| 773 | |
| 774 | if (PendingLoads.size() == 1) { |
| 775 | SDValue Root = PendingLoads[0]; |
| 776 | DAG.setRoot(Root); |
| 777 | PendingLoads.clear(); |
| 778 | return Root; |
| 779 | } |
| 780 | |
| 781 | // Otherwise, we have to make a token factor node. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 782 | SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 783 | &PendingLoads[0], PendingLoads.size()); |
| 784 | PendingLoads.clear(); |
| 785 | DAG.setRoot(Root); |
| 786 | return Root; |
| 787 | } |
| 788 | |
| 789 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 790 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 791 | /// to do this before emitting a terminator instruction. |
| 792 | /// |
| 793 | SDValue SelectionDAGLowering::getControlRoot() { |
| 794 | SDValue Root = DAG.getRoot(); |
| 795 | |
| 796 | if (PendingExports.empty()) |
| 797 | return Root; |
| 798 | |
| 799 | // Turn all of the CopyToReg chains into one factored node. |
| 800 | if (Root.getOpcode() != ISD::EntryToken) { |
| 801 | unsigned i = 0, e = PendingExports.size(); |
| 802 | for (; i != e; ++i) { |
| 803 | assert(PendingExports[i].getNode()->getNumOperands() > 1); |
| 804 | if (PendingExports[i].getNode()->getOperand(0) == Root) |
| 805 | break; // Don't add the root if we already indirectly depend on it. |
| 806 | } |
| 807 | |
| 808 | if (i == e) |
| 809 | PendingExports.push_back(Root); |
| 810 | } |
| 811 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 812 | Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 813 | &PendingExports[0], |
| 814 | PendingExports.size()); |
| 815 | PendingExports.clear(); |
| 816 | DAG.setRoot(Root); |
| 817 | return Root; |
| 818 | } |
| 819 | |
| 820 | void SelectionDAGLowering::visit(Instruction &I) { |
| 821 | visit(I.getOpcode(), I); |
| 822 | } |
| 823 | |
| 824 | void SelectionDAGLowering::visit(unsigned Opcode, User &I) { |
| 825 | // Note: this doesn't use InstVisitor, because it has to work with |
| 826 | // ConstantExpr's in addition to instructions. |
| 827 | switch (Opcode) { |
| 828 | default: assert(0 && "Unknown instruction type encountered!"); |
| 829 | abort(); |
| 830 | // Build the switch statement using the Instruction.def file. |
| 831 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 832 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 833 | #include "llvm/Instruction.def" |
| 834 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 835 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 836 | |
| 837 | void SelectionDAGLowering::visitAdd(User &I) { |
| 838 | if (I.getType()->isFPOrFPVector()) |
| 839 | visitBinary(I, ISD::FADD); |
| 840 | else |
| 841 | visitBinary(I, ISD::ADD); |
| 842 | } |
| 843 | |
| 844 | void SelectionDAGLowering::visitMul(User &I) { |
| 845 | if (I.getType()->isFPOrFPVector()) |
| 846 | visitBinary(I, ISD::FMUL); |
| 847 | else |
| 848 | visitBinary(I, ISD::MUL); |
| 849 | } |
| 850 | |
| 851 | SDValue SelectionDAGLowering::getValue(const Value *V) { |
| 852 | SDValue &N = NodeMap[V]; |
| 853 | if (N.getNode()) return N; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 854 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 855 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
| 856 | MVT VT = TLI.getValueType(V->getType(), true); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 857 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 858 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 859 | return N = DAG.getConstant(*CI, VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 860 | |
| 861 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 862 | return N = DAG.getGlobalAddress(GV, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 863 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 864 | if (isa<ConstantPointerNull>(C)) |
| 865 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 866 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 867 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 868 | return N = DAG.getConstantFP(*CFP, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 869 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 870 | if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) && |
| 871 | !V->getType()->isAggregateType()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 872 | return N = DAG.getUNDEF(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 873 | |
| 874 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 875 | visit(CE->getOpcode(), *CE); |
| 876 | SDValue N1 = NodeMap[V]; |
| 877 | assert(N1.getNode() && "visit didn't populate the ValueMap!"); |
| 878 | return N1; |
| 879 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 880 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 881 | if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { |
| 882 | SmallVector<SDValue, 4> Constants; |
| 883 | for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); |
| 884 | OI != OE; ++OI) { |
| 885 | SDNode *Val = getValue(*OI).getNode(); |
| 886 | for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) |
| 887 | Constants.push_back(SDValue(Val, i)); |
| 888 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 889 | return DAG.getMergeValues(&Constants[0], Constants.size(), |
| 890 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) { |
| 894 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 895 | "Unknown struct or array constant!"); |
| 896 | |
| 897 | SmallVector<MVT, 4> ValueVTs; |
| 898 | ComputeValueVTs(TLI, C->getType(), ValueVTs); |
| 899 | unsigned NumElts = ValueVTs.size(); |
| 900 | if (NumElts == 0) |
| 901 | return SDValue(); // empty struct |
| 902 | SmallVector<SDValue, 4> Constants(NumElts); |
| 903 | for (unsigned i = 0; i != NumElts; ++i) { |
| 904 | MVT EltVT = ValueVTs[i]; |
| 905 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 906 | Constants[i] = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 907 | else if (EltVT.isFloatingPoint()) |
| 908 | Constants[i] = DAG.getConstantFP(0, EltVT); |
| 909 | else |
| 910 | Constants[i] = DAG.getConstant(0, EltVT); |
| 911 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 912 | return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | const VectorType *VecTy = cast<VectorType>(V->getType()); |
| 916 | unsigned NumElements = VecTy->getNumElements(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 917 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 918 | // Now that we know the number and type of the elements, get that number of |
| 919 | // elements into the Ops array based on what kind of constant it is. |
| 920 | SmallVector<SDValue, 16> Ops; |
| 921 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { |
| 922 | for (unsigned i = 0; i != NumElements; ++i) |
| 923 | Ops.push_back(getValue(CP->getOperand(i))); |
| 924 | } else { |
| 925 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 926 | "Unknown vector constant!"); |
| 927 | MVT EltVT = TLI.getValueType(VecTy->getElementType()); |
| 928 | |
| 929 | SDValue Op; |
| 930 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 931 | Op = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 932 | else if (EltVT.isFloatingPoint()) |
| 933 | Op = DAG.getConstantFP(0, EltVT); |
| 934 | else |
| 935 | Op = DAG.getConstant(0, EltVT); |
| 936 | Ops.assign(NumElements, Op); |
| 937 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 938 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 939 | // Create a BUILD_VECTOR node. |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 940 | return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 941 | VT, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 942 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 943 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 944 | // If this is a static alloca, generate it as the frameindex instead of |
| 945 | // computation. |
| 946 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 947 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 948 | FuncInfo.StaticAllocaMap.find(AI); |
| 949 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 950 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 951 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 952 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 953 | unsigned InReg = FuncInfo.ValueMap[V]; |
| 954 | assert(InReg && "Value not in map!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 955 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 956 | RegsForValue RFV(TLI, InReg, V->getType()); |
| 957 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 958 | return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | |
| 962 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
| 963 | if (I.getNumOperands() == 0) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 964 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 965 | MVT::Other, getControlRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 966 | return; |
| 967 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 968 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 969 | SmallVector<SDValue, 8> NewValues; |
| 970 | NewValues.push_back(getControlRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 971 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 972 | SmallVector<MVT, 4> ValueVTs; |
| 973 | ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 974 | unsigned NumValues = ValueVTs.size(); |
| 975 | if (NumValues == 0) continue; |
| 976 | |
| 977 | SDValue RetOp = getValue(I.getOperand(i)); |
| 978 | for (unsigned j = 0, f = NumValues; j != f; ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 979 | MVT VT = ValueVTs[j]; |
| 980 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 981 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 982 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 983 | const Function *F = I.getParent()->getParent(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 984 | if (F->paramHasAttr(0, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 985 | ExtendKind = ISD::SIGN_EXTEND; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 986 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 987 | ExtendKind = ISD::ZERO_EXTEND; |
| 988 | |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 989 | // FIXME: C calling convention requires the return type to be promoted to |
| 990 | // at least 32-bit. But this is not necessary for non-C calling |
| 991 | // conventions. The frontend should mark functions whose return values |
| 992 | // require promoting with signext or zeroext attributes. |
| 993 | if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) { |
| 994 | MVT MinVT = TLI.getRegisterType(MVT::i32); |
| 995 | if (VT.bitsLT(MinVT)) |
| 996 | VT = MinVT; |
| 997 | } |
| 998 | |
| 999 | unsigned NumParts = TLI.getNumRegisters(VT); |
| 1000 | MVT PartVT = TLI.getRegisterType(VT); |
| 1001 | SmallVector<SDValue, 4> Parts(NumParts); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1002 | getCopyToParts(DAG, getCurDebugLoc(), |
| 1003 | SDValue(RetOp.getNode(), RetOp.getResNo() + j), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1004 | &Parts[0], NumParts, PartVT, ExtendKind); |
| 1005 | |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1006 | // 'inreg' on function refers to return value |
| 1007 | ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1008 | if (F->paramHasAttr(0, Attribute::InReg)) |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1009 | Flags.setInReg(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1010 | for (unsigned i = 0; i < NumParts; ++i) { |
| 1011 | NewValues.push_back(Parts[i]); |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1012 | NewValues.push_back(DAG.getArgFlags(Flags)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1013 | } |
| 1014 | } |
| 1015 | } |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1016 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1017 | &NewValues[0], NewValues.size())); |
| 1018 | } |
| 1019 | |
| 1020 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1021 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1022 | /// CopyTo/FromReg. |
| 1023 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1024 | // No need to export constants. |
| 1025 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1026 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1027 | // Already exported? |
| 1028 | if (FuncInfo.isExportedInst(V)) return; |
| 1029 | |
| 1030 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1031 | CopyValueToVirtualRegister(V, Reg); |
| 1032 | } |
| 1033 | |
| 1034 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1035 | const BasicBlock *FromBB) { |
| 1036 | // The operands of the setcc have to be in this block. We don't know |
| 1037 | // how to export them from some other block. |
| 1038 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1039 | // Can export from current BB. |
| 1040 | if (VI->getParent() == FromBB) |
| 1041 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1042 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1043 | // Is already exported, noop. |
| 1044 | return FuncInfo.isExportedInst(V); |
| 1045 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1046 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1047 | // If this is an argument, we can export it if the BB is the entry block or |
| 1048 | // if it is already exported. |
| 1049 | if (isa<Argument>(V)) { |
| 1050 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1051 | return true; |
| 1052 | |
| 1053 | // Otherwise, can only export this if it is already exported. |
| 1054 | return FuncInfo.isExportedInst(V); |
| 1055 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1056 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1057 | // Otherwise, constants can always be exported. |
| 1058 | return true; |
| 1059 | } |
| 1060 | |
| 1061 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1062 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1063 | return I->getParent() == BB; |
| 1064 | return true; |
| 1065 | } |
| 1066 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1067 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1068 | /// the given LLVM IR floating-point condition code. This includes |
| 1069 | /// consideration of global floating-point math flags. |
| 1070 | /// |
| 1071 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1072 | ISD::CondCode FPC, FOC; |
| 1073 | switch (Pred) { |
| 1074 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1075 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1076 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1077 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1078 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1079 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1080 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1081 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1082 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1083 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1084 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1085 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1086 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1087 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1088 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1089 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1090 | default: |
| 1091 | assert(0 && "Invalid FCmp predicate opcode!"); |
| 1092 | FOC = FPC = ISD::SETFALSE; |
| 1093 | break; |
| 1094 | } |
| 1095 | if (FiniteOnlyFPMath()) |
| 1096 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1097 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1098 | return FPC; |
| 1099 | } |
| 1100 | |
| 1101 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1102 | /// the given LLVM IR integer condition code. |
| 1103 | /// |
| 1104 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1105 | switch (Pred) { |
| 1106 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1107 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1108 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1109 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1110 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1111 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1112 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1113 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1114 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1115 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1116 | default: |
| 1117 | assert(0 && "Invalid ICmp predicate opcode!"); |
| 1118 | return ISD::SETNE; |
| 1119 | } |
| 1120 | } |
| 1121 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1122 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1123 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1124 | /// AND operator tree. |
| 1125 | /// |
| 1126 | void |
| 1127 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1128 | MachineBasicBlock *TBB, |
| 1129 | MachineBasicBlock *FBB, |
| 1130 | MachineBasicBlock *CurBB) { |
| 1131 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1132 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1133 | // If the leaf of the tree is a comparison, merge the condition into |
| 1134 | // the caseblock. |
| 1135 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1136 | // The operands of the cmp have to be in this block. We don't know |
| 1137 | // how to export them from some other block. If this is the first block |
| 1138 | // of the sequence, no exporting is needed. |
| 1139 | if (CurBB == CurMBB || |
| 1140 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1141 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1142 | ISD::CondCode Condition; |
| 1143 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1144 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1145 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1146 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1147 | } else { |
| 1148 | Condition = ISD::SETEQ; // silence warning. |
| 1149 | assert(0 && "Unknown compare instruction"); |
| 1150 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1151 | |
| 1152 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1153 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1154 | SwitchCases.push_back(CB); |
| 1155 | return; |
| 1156 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1157 | } |
| 1158 | |
| 1159 | // Create a CaseBlock record representing this branch. |
| 1160 | CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(), |
| 1161 | NULL, TBB, FBB, CurBB); |
| 1162 | SwitchCases.push_back(CB); |
| 1163 | } |
| 1164 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1165 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1166 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1167 | MachineBasicBlock *TBB, |
| 1168 | MachineBasicBlock *FBB, |
| 1169 | MachineBasicBlock *CurBB, |
| 1170 | unsigned Opc) { |
| 1171 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1172 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1173 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1174 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1175 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1176 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1177 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1178 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1179 | return; |
| 1180 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1181 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1182 | // Create TmpBB after CurBB. |
| 1183 | MachineFunction::iterator BBI = CurBB; |
| 1184 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1185 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1186 | CurBB->getParent()->insert(++BBI, TmpBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1187 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1188 | if (Opc == Instruction::Or) { |
| 1189 | // Codegen X | Y as: |
| 1190 | // jmp_if_X TBB |
| 1191 | // jmp TmpBB |
| 1192 | // TmpBB: |
| 1193 | // jmp_if_Y TBB |
| 1194 | // jmp FBB |
| 1195 | // |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1196 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1197 | // Emit the LHS condition. |
| 1198 | FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1199 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1200 | // Emit the RHS condition into TmpBB. |
| 1201 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1202 | } else { |
| 1203 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1204 | // Codegen X & Y as: |
| 1205 | // jmp_if_X TmpBB |
| 1206 | // jmp FBB |
| 1207 | // TmpBB: |
| 1208 | // jmp_if_Y TBB |
| 1209 | // jmp FBB |
| 1210 | // |
| 1211 | // This requires creation of TmpBB after CurBB. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1212 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1213 | // Emit the LHS condition. |
| 1214 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1215 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1216 | // Emit the RHS condition into TmpBB. |
| 1217 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1218 | } |
| 1219 | } |
| 1220 | |
| 1221 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1222 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1223 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1224 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1225 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1226 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1227 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1228 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1229 | // will get folded into a single comparison, so don't emit two blocks. |
| 1230 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1231 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1232 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1233 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1234 | return false; |
| 1235 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1236 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1237 | return true; |
| 1238 | } |
| 1239 | |
| 1240 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1241 | // Update machine-CFG edges. |
| 1242 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1243 | |
| 1244 | // Figure out which block is immediately after the current one. |
| 1245 | MachineBasicBlock *NextBlock = 0; |
| 1246 | MachineFunction::iterator BBI = CurMBB; |
| 1247 | if (++BBI != CurMBB->getParent()->end()) |
| 1248 | NextBlock = BBI; |
| 1249 | |
| 1250 | if (I.isUnconditional()) { |
| 1251 | // Update machine-CFG edges. |
| 1252 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1253 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1254 | // If this is not a fall-through branch, emit the branch. |
| 1255 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1256 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1257 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1258 | DAG.getBasicBlock(Succ0MBB))); |
| 1259 | return; |
| 1260 | } |
| 1261 | |
| 1262 | // If this condition is one of the special cases we handle, do special stuff |
| 1263 | // now. |
| 1264 | Value *CondVal = I.getCondition(); |
| 1265 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1266 | |
| 1267 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1268 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1269 | // For example, instead of something like: |
| 1270 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1271 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1272 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1273 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1274 | // or C, F |
| 1275 | // jnz foo |
| 1276 | // Emit: |
| 1277 | // cmp A, B |
| 1278 | // je foo |
| 1279 | // cmp D, E |
| 1280 | // jle foo |
| 1281 | // |
| 1282 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1283 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1284 | (BOp->getOpcode() == Instruction::And || |
| 1285 | BOp->getOpcode() == Instruction::Or)) { |
| 1286 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1287 | // If the compares in later blocks need to use values not currently |
| 1288 | // exported from this block, export them now. This block should always |
| 1289 | // be the first entry. |
| 1290 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1291 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1292 | // Allow some cases to be rejected. |
| 1293 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1294 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1295 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1296 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1297 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1298 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1299 | // Emit the branch for this block. |
| 1300 | visitSwitchCase(SwitchCases[0]); |
| 1301 | SwitchCases.erase(SwitchCases.begin()); |
| 1302 | return; |
| 1303 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1304 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1305 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1306 | // SwitchCases. |
| 1307 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
| 1308 | CurMBB->getParent()->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1309 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1310 | SwitchCases.clear(); |
| 1311 | } |
| 1312 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1313 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1314 | // Create a CaseBlock record representing this branch. |
| 1315 | CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(), |
| 1316 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1317 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1318 | // cond branch. |
| 1319 | visitSwitchCase(CB); |
| 1320 | } |
| 1321 | |
| 1322 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1323 | /// the binary search tree resulting from lowering a switch instruction. |
| 1324 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1325 | SDValue Cond; |
| 1326 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1327 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1328 | |
| 1329 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1330 | if (CB.CmpMHS == NULL) { |
| 1331 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1332 | // handle common cases produced by branch lowering. |
| 1333 | if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ) |
| 1334 | Cond = CondLHS; |
| 1335 | else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) { |
| 1336 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1337 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1338 | } else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1339 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1340 | } else { |
| 1341 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1342 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1343 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1344 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1345 | |
| 1346 | SDValue CmpOp = getValue(CB.CmpMHS); |
| 1347 | MVT VT = CmpOp.getValueType(); |
| 1348 | |
| 1349 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1350 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1351 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1352 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1353 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1354 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1355 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1356 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1357 | } |
| 1358 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1359 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1360 | // Update successor info |
| 1361 | CurMBB->addSuccessor(CB.TrueBB); |
| 1362 | CurMBB->addSuccessor(CB.FalseBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1363 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1364 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1365 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1366 | MachineBasicBlock *NextBlock = 0; |
| 1367 | MachineFunction::iterator BBI = CurMBB; |
| 1368 | if (++BBI != CurMBB->getParent()->end()) |
| 1369 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1370 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1371 | // If the lhs block is the next block, invert the condition so that we can |
| 1372 | // fall through to the lhs instead of the rhs block. |
| 1373 | if (CB.TrueBB == NextBlock) { |
| 1374 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1375 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1376 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1377 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1378 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1379 | MVT::Other, getControlRoot(), Cond, |
| 1380 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1381 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1382 | // If the branch was constant folded, fix up the CFG. |
| 1383 | if (BrCond.getOpcode() == ISD::BR) { |
| 1384 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1385 | DAG.setRoot(BrCond); |
| 1386 | } else { |
| 1387 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1388 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1389 | CurMBB->removeSuccessor(CB.TrueBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1390 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1391 | if (CB.FalseBB == NextBlock) |
| 1392 | DAG.setRoot(BrCond); |
| 1393 | else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1394 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1395 | DAG.getBasicBlock(CB.FalseBB))); |
| 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1400 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1401 | // Emit the code for the jump table |
| 1402 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
| 1403 | MVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1404 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1405 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1406 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1407 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1408 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1409 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1410 | } |
| 1411 | |
| 1412 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1413 | /// in the JumpTable from switch case. |
| 1414 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1415 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1416 | // Subtract the lowest switch case value from the value being switched on and |
| 1417 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1418 | // difference between smallest and largest cases. |
| 1419 | SDValue SwitchOp = getValue(JTH.SValue); |
| 1420 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1421 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1422 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1423 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1424 | // The SDNode we just created, which holds the value being switched on minus |
| 1425 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1426 | // can be used as an index into the jump table in a subsequent basic block. |
| 1427 | // This value may be smaller or larger than the target's pointer type, and |
| 1428 | // therefore require extension or truncating. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1429 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1430 | SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1431 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1432 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1433 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1434 | TLI.getPointerTy(), SUB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1435 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1436 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1437 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1438 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1439 | JT.Reg = JumpTableReg; |
| 1440 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1441 | // Emit the range check for the jump table, and branch to the default block |
| 1442 | // for the switch statement if the value being switched on exceeds the largest |
| 1443 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1444 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1445 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1446 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1447 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1448 | |
| 1449 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1450 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1451 | MachineBasicBlock *NextBlock = 0; |
| 1452 | MachineFunction::iterator BBI = CurMBB; |
| 1453 | if (++BBI != CurMBB->getParent()->end()) |
| 1454 | NextBlock = BBI; |
| 1455 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1456 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1457 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1458 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1459 | |
| 1460 | if (JT.MBB == NextBlock) |
| 1461 | DAG.setRoot(BrCond); |
| 1462 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1463 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1464 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1465 | } |
| 1466 | |
| 1467 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1468 | /// suitable for "bit tests" |
| 1469 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1470 | // Subtract the minimum value |
| 1471 | SDValue SwitchOp = getValue(B.SValue); |
| 1472 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1473 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1474 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1475 | |
| 1476 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1477 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1478 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1479 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1480 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1481 | |
| 1482 | SDValue ShiftOp; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1483 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1484 | ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1485 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1486 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1487 | ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1488 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1489 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1490 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1491 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1492 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1493 | |
| 1494 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1495 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1496 | MachineBasicBlock *NextBlock = 0; |
| 1497 | MachineFunction::iterator BBI = CurMBB; |
| 1498 | if (++BBI != CurMBB->getParent()->end()) |
| 1499 | NextBlock = BBI; |
| 1500 | |
| 1501 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1502 | |
| 1503 | CurMBB->addSuccessor(B.Default); |
| 1504 | CurMBB->addSuccessor(MBB); |
| 1505 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1506 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1507 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1508 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1509 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1510 | if (MBB == NextBlock) |
| 1511 | DAG.setRoot(BrRange); |
| 1512 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1513 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1514 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
| 1517 | /// visitBitTestCase - this function produces one "bit test" |
| 1518 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1519 | unsigned Reg, |
| 1520 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1521 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1522 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1523 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1524 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1525 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1526 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1527 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1528 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1529 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1530 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1531 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1532 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1533 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1534 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1535 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1536 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1537 | |
| 1538 | CurMBB->addSuccessor(B.TargetBB); |
| 1539 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1540 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1541 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1542 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1543 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1544 | |
| 1545 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1546 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1547 | MachineBasicBlock *NextBlock = 0; |
| 1548 | MachineFunction::iterator BBI = CurMBB; |
| 1549 | if (++BBI != CurMBB->getParent()->end()) |
| 1550 | NextBlock = BBI; |
| 1551 | |
| 1552 | if (NextMBB == NextBlock) |
| 1553 | DAG.setRoot(BrAnd); |
| 1554 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1555 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1556 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1557 | } |
| 1558 | |
| 1559 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1560 | // Retrieve successors. |
| 1561 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1562 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1563 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1564 | const Value *Callee(I.getCalledValue()); |
| 1565 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1566 | visitInlineAsm(&I); |
| 1567 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1568 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1569 | |
| 1570 | // If the value of the invoke is used outside of its defining block, make it |
| 1571 | // available as a virtual register. |
| 1572 | if (!I.use_empty()) { |
| 1573 | DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I); |
| 1574 | if (VMI != FuncInfo.ValueMap.end()) |
| 1575 | CopyValueToVirtualRegister(&I, VMI->second); |
| 1576 | } |
| 1577 | |
| 1578 | // Update successor info |
| 1579 | CurMBB->addSuccessor(Return); |
| 1580 | CurMBB->addSuccessor(LandingPad); |
| 1581 | |
| 1582 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1583 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1584 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1585 | DAG.getBasicBlock(Return))); |
| 1586 | } |
| 1587 | |
| 1588 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1589 | } |
| 1590 | |
| 1591 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1592 | /// small case ranges). |
| 1593 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1594 | CaseRecVector& WorkList, |
| 1595 | Value* SV, |
| 1596 | MachineBasicBlock* Default) { |
| 1597 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1598 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1599 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1600 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1601 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1602 | return false; |
| 1603 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1604 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1605 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1606 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1607 | |
| 1608 | // Figure out which block is immediately after the current one. |
| 1609 | MachineBasicBlock *NextBlock = 0; |
| 1610 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1611 | |
| 1612 | if (++BBI != CurMBB->getParent()->end()) |
| 1613 | NextBlock = BBI; |
| 1614 | |
| 1615 | // TODO: If any two of the cases has the same destination, and if one value |
| 1616 | // is the same as the other, but has one bit unset that the other has set, |
| 1617 | // use bit manipulation to do two compares at once. For example: |
| 1618 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1619 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1620 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1621 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1622 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1623 | // branches in this order. See if rearranging a case value would help. |
| 1624 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1625 | if (I->BB == NextBlock) { |
| 1626 | std::swap(*I, BackCase); |
| 1627 | break; |
| 1628 | } |
| 1629 | } |
| 1630 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1631 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1632 | // Create a CaseBlock record representing a conditional branch to |
| 1633 | // the Case's target mbb if the value being switched on SV is equal |
| 1634 | // to C. |
| 1635 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1636 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1637 | MachineBasicBlock *FallThrough; |
| 1638 | if (I != E-1) { |
| 1639 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1640 | CurMF->insert(BBI, FallThrough); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1641 | |
| 1642 | // Put SV in a virtual register to make it available from the new blocks. |
| 1643 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1644 | } else { |
| 1645 | // If the last case doesn't match, go to the default block. |
| 1646 | FallThrough = Default; |
| 1647 | } |
| 1648 | |
| 1649 | Value *RHS, *LHS, *MHS; |
| 1650 | ISD::CondCode CC; |
| 1651 | if (I->High == I->Low) { |
| 1652 | // This is just small small case range :) containing exactly 1 case |
| 1653 | CC = ISD::SETEQ; |
| 1654 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1655 | } else { |
| 1656 | CC = ISD::SETLE; |
| 1657 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1658 | } |
| 1659 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1660 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1661 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1662 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1663 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1664 | // before the next MBB. |
| 1665 | if (CurBlock == CurMBB) |
| 1666 | visitSwitchCase(CB); |
| 1667 | else |
| 1668 | SwitchCases.push_back(CB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1669 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1670 | CurBlock = FallThrough; |
| 1671 | } |
| 1672 | |
| 1673 | return true; |
| 1674 | } |
| 1675 | |
| 1676 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1677 | return !DisableJumpTables && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 1678 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1679 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1680 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1681 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1682 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1683 | APInt LastExt(Last), FirstExt(First); |
| 1684 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1685 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1686 | return (LastExt - FirstExt + 1ULL); |
| 1687 | } |
| 1688 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1689 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1690 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1691 | CaseRecVector& WorkList, |
| 1692 | Value* SV, |
| 1693 | MachineBasicBlock* Default) { |
| 1694 | Case& FrontCase = *CR.Range.first; |
| 1695 | Case& BackCase = *(CR.Range.second-1); |
| 1696 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1697 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1698 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1699 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1700 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1701 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1702 | I!=E; ++I) |
| 1703 | TSize += I->size(); |
| 1704 | |
| 1705 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1706 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1707 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1708 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1709 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1710 | if (Density < 0.4) |
| 1711 | return false; |
| 1712 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1713 | DEBUG(errs() << "Lowering jump table\n" |
| 1714 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1715 | << "Range: " << Range |
| 1716 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1717 | |
| 1718 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1719 | // inserting any additional MBBs necessary to represent the switch. |
| 1720 | MachineFunction *CurMF = CurMBB->getParent(); |
| 1721 | |
| 1722 | // Figure out which block is immediately after the current one. |
| 1723 | MachineBasicBlock *NextBlock = 0; |
| 1724 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1725 | |
| 1726 | if (++BBI != CurMBB->getParent()->end()) |
| 1727 | NextBlock = BBI; |
| 1728 | |
| 1729 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1730 | |
| 1731 | // Create a new basic block to hold the code for loading the address |
| 1732 | // of the jump table, and jumping to it. Update successor information; |
| 1733 | // we will either branch to the default case for the switch, or the jump |
| 1734 | // table. |
| 1735 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1736 | CurMF->insert(BBI, JumpTableBB); |
| 1737 | CR.CaseBB->addSuccessor(Default); |
| 1738 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1739 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1740 | // Build a vector of destination BBs, corresponding to each target |
| 1741 | // of the jump table. If the value of the jump table slot corresponds to |
| 1742 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1743 | // the default BB. |
| 1744 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1745 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1746 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1747 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1748 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1749 | |
| 1750 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1751 | DestBBs.push_back(I->BB); |
| 1752 | if (TEI==High) |
| 1753 | ++I; |
| 1754 | } else { |
| 1755 | DestBBs.push_back(Default); |
| 1756 | } |
| 1757 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1758 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1759 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1760 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1761 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1762 | E = DestBBs.end(); I != E; ++I) { |
| 1763 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1764 | SuccsHandled[(*I)->getNumber()] = true; |
| 1765 | JumpTableBB->addSuccessor(*I); |
| 1766 | } |
| 1767 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1768 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1769 | // Create a jump table index for this jump table, or return an existing |
| 1770 | // one. |
| 1771 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1772 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1773 | // Set the jump table information so that we can codegen it as a second |
| 1774 | // MachineBasicBlock |
| 1775 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1776 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1777 | if (CR.CaseBB == CurMBB) |
| 1778 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1779 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1780 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1781 | |
| 1782 | return true; |
| 1783 | } |
| 1784 | |
| 1785 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1786 | /// 2 subtrees. |
| 1787 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1788 | CaseRecVector& WorkList, |
| 1789 | Value* SV, |
| 1790 | MachineBasicBlock* Default) { |
| 1791 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1792 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1793 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1794 | |
| 1795 | // Figure out which block is immediately after the current one. |
| 1796 | MachineBasicBlock *NextBlock = 0; |
| 1797 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1798 | |
| 1799 | if (++BBI != CurMBB->getParent()->end()) |
| 1800 | NextBlock = BBI; |
| 1801 | |
| 1802 | Case& FrontCase = *CR.Range.first; |
| 1803 | Case& BackCase = *(CR.Range.second-1); |
| 1804 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1805 | |
| 1806 | // Size is the number of Cases represented by this range. |
| 1807 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1808 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1809 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1810 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1811 | double FMetric = 0; |
| 1812 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1813 | |
| 1814 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1815 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1816 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1817 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1818 | I!=E; ++I) |
| 1819 | TSize += I->size(); |
| 1820 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1821 | size_t LSize = FrontCase.size(); |
| 1822 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1823 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1824 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1825 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1826 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1827 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1828 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1829 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1830 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1831 | assert((Range - 2ULL).isNonNegative() && |
| 1832 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1833 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1834 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1835 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1836 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1837 | DEBUG(errs() <<"=>Step\n" |
| 1838 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1839 | << "LDensity: " << LDensity |
| 1840 | << ", RDensity: " << RDensity << '\n' |
| 1841 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1842 | if (FMetric < Metric) { |
| 1843 | Pivot = J; |
| 1844 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1845 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1846 | } |
| 1847 | |
| 1848 | LSize += J->size(); |
| 1849 | RSize -= J->size(); |
| 1850 | } |
| 1851 | if (areJTsAllowed(TLI)) { |
| 1852 | // If our case is dense we *really* should handle it earlier! |
| 1853 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1854 | } else { |
| 1855 | Pivot = CR.Range.first + Size/2; |
| 1856 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1857 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1858 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1859 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1860 | Constant *C = Pivot->Low; |
| 1861 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1862 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1863 | // We know that we branch to the LHS if the Value being switched on is |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1864 | // less than the Pivot value, C. We use this to optimize our binary |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1865 | // tree a bit, by recognizing that if SV is greater than or equal to the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1866 | // LHS's Case Value, and that Case Value is exactly one less than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1867 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1868 | // rather than creating a leaf node for it. |
| 1869 | if ((LHSR.second - LHSR.first) == 1 && |
| 1870 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1871 | cast<ConstantInt>(C)->getValue() == |
| 1872 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1873 | TrueBB = LHSR.first->BB; |
| 1874 | } else { |
| 1875 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1876 | CurMF->insert(BBI, TrueBB); |
| 1877 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1878 | |
| 1879 | // Put SV in a virtual register to make it available from the new blocks. |
| 1880 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1881 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1882 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1883 | // Similar to the optimization above, if the Value being switched on is |
| 1884 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1885 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1886 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1887 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1888 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1889 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1890 | FalseBB = RHSR.first->BB; |
| 1891 | } else { |
| 1892 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1893 | CurMF->insert(BBI, FalseBB); |
| 1894 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1895 | |
| 1896 | // Put SV in a virtual register to make it available from the new blocks. |
| 1897 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1898 | } |
| 1899 | |
| 1900 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1901 | // the LHS node if the value being switched on SV is less than C. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1902 | // Otherwise, branch to LHS. |
| 1903 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1904 | |
| 1905 | if (CR.CaseBB == CurMBB) |
| 1906 | visitSwitchCase(CB); |
| 1907 | else |
| 1908 | SwitchCases.push_back(CB); |
| 1909 | |
| 1910 | return true; |
| 1911 | } |
| 1912 | |
| 1913 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1914 | /// range span less, than machine word bitwidth, encode case range into series |
| 1915 | /// of masks and emit bit tests with these masks. |
| 1916 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1917 | CaseRecVector& WorkList, |
| 1918 | Value* SV, |
| 1919 | MachineBasicBlock* Default){ |
| 1920 | unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits(); |
| 1921 | |
| 1922 | Case& FrontCase = *CR.Range.first; |
| 1923 | Case& BackCase = *(CR.Range.second-1); |
| 1924 | |
| 1925 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1926 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1927 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1928 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1929 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1930 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1931 | I!=E; ++I) { |
| 1932 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1933 | numCmps += (I->Low == I->High ? 1 : 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1934 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1935 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1936 | // Count unique destinations |
| 1937 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1938 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1939 | Dests.insert(I->BB); |
| 1940 | if (Dests.size() > 3) |
| 1941 | // Don't bother the code below, if there are too much unique destinations |
| 1942 | return false; |
| 1943 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1944 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1945 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1946 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1947 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1948 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1949 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1950 | APInt cmpRange = maxValue - minValue; |
| 1951 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1952 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1953 | << "Low bound: " << minValue << '\n' |
| 1954 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1955 | |
| 1956 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1957 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1958 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1959 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1960 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1961 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1962 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1963 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1964 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1965 | // Optimize the case where all the case values fit in a |
| 1966 | // word without having to subtract minValue. In this case, |
| 1967 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1968 | if (minValue.isNonNegative() && |
| 1969 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1970 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1971 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1972 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1973 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1974 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1975 | CaseBitsVector CasesBits; |
| 1976 | unsigned i, count = 0; |
| 1977 | |
| 1978 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1979 | MachineBasicBlock* Dest = I->BB; |
| 1980 | for (i = 0; i < count; ++i) |
| 1981 | if (Dest == CasesBits[i].BB) |
| 1982 | break; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1983 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1984 | if (i == count) { |
| 1985 | assert((count < 3) && "Too much destinations to test!"); |
| 1986 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1987 | count++; |
| 1988 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1989 | |
| 1990 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1991 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1992 | |
| 1993 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 1994 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 1995 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1996 | for (uint64_t j = lo; j <= hi; j++) { |
| 1997 | CasesBits[i].Mask |= 1ULL << j; |
| 1998 | CasesBits[i].Bits++; |
| 1999 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2000 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2001 | } |
| 2002 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2003 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2004 | BitTestInfo BTC; |
| 2005 | |
| 2006 | // Figure out which block is immediately after the current one. |
| 2007 | MachineFunction::iterator BBI = CR.CaseBB; |
| 2008 | ++BBI; |
| 2009 | |
| 2010 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 2011 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2012 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2013 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2014 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2015 | << ", Bits: " << CasesBits[i].Bits |
| 2016 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2017 | |
| 2018 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2019 | CurMF->insert(BBI, CaseBB); |
| 2020 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2021 | CaseBB, |
| 2022 | CasesBits[i].BB)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 2023 | |
| 2024 | // Put SV in a virtual register to make it available from the new blocks. |
| 2025 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2026 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2027 | |
| 2028 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2029 | -1U, (CR.CaseBB == CurMBB), |
| 2030 | CR.CaseBB, Default, BTC); |
| 2031 | |
| 2032 | if (CR.CaseBB == CurMBB) |
| 2033 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2034 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2035 | BitTestCases.push_back(BTB); |
| 2036 | |
| 2037 | return true; |
| 2038 | } |
| 2039 | |
| 2040 | |
| 2041 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2042 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2043 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2044 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2045 | |
| 2046 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2047 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2048 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2049 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2050 | SI.getSuccessorValue(i), |
| 2051 | SMBB)); |
| 2052 | } |
| 2053 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2054 | |
| 2055 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2056 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2057 | // Must recompute end() each iteration because it may be |
| 2058 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2059 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2060 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2061 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2062 | MachineBasicBlock* nextBB = J->BB; |
| 2063 | MachineBasicBlock* currentBB = I->BB; |
| 2064 | |
| 2065 | // If the two neighboring cases go to the same destination, merge them |
| 2066 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2067 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2068 | I->High = J->High; |
| 2069 | J = Cases.erase(J); |
| 2070 | } else { |
| 2071 | I = J++; |
| 2072 | } |
| 2073 | } |
| 2074 | |
| 2075 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2076 | if (I->Low != I->High) |
| 2077 | // A range counts double, since it requires two compares. |
| 2078 | ++numCmps; |
| 2079 | } |
| 2080 | |
| 2081 | return numCmps; |
| 2082 | } |
| 2083 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2084 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2085 | // Figure out which block is immediately after the current one. |
| 2086 | MachineBasicBlock *NextBlock = 0; |
| 2087 | MachineFunction::iterator BBI = CurMBB; |
| 2088 | |
| 2089 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2090 | |
| 2091 | // If there is only the default destination, branch to it if it is not the |
| 2092 | // next basic block. Otherwise, just fall through. |
| 2093 | if (SI.getNumOperands() == 2) { |
| 2094 | // Update machine-CFG edges. |
| 2095 | |
| 2096 | // If this is not a fall-through branch, emit the branch. |
| 2097 | CurMBB->addSuccessor(Default); |
| 2098 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2099 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2100 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2101 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2102 | return; |
| 2103 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2104 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2105 | // If there are any non-default case statements, create a vector of Cases |
| 2106 | // representing each one, and sort the vector so that we can efficiently |
| 2107 | // create a binary search tree from them. |
| 2108 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2109 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2110 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2111 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2112 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2113 | |
| 2114 | // Get the Value to be switched on and default basic blocks, which will be |
| 2115 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2116 | // search tree. |
| 2117 | Value *SV = SI.getOperand(0); |
| 2118 | |
| 2119 | // Push the initial CaseRec onto the worklist |
| 2120 | CaseRecVector WorkList; |
| 2121 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2122 | |
| 2123 | while (!WorkList.empty()) { |
| 2124 | // Grab a record representing a case range to process off the worklist |
| 2125 | CaseRec CR = WorkList.back(); |
| 2126 | WorkList.pop_back(); |
| 2127 | |
| 2128 | if (handleBitTestsSwitchCase(CR, WorkList, SV, Default)) |
| 2129 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2130 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2131 | // If the range has few cases (two or less) emit a series of specific |
| 2132 | // tests. |
| 2133 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2134 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2135 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2136 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2137 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2138 | // lowering the switch to a binary tree of conditional branches. |
| 2139 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2140 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2141 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2142 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2143 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2144 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2145 | } |
| 2146 | } |
| 2147 | |
| 2148 | |
| 2149 | void SelectionDAGLowering::visitSub(User &I) { |
| 2150 | // -0.0 - X --> fneg |
| 2151 | const Type *Ty = I.getType(); |
| 2152 | if (isa<VectorType>(Ty)) { |
| 2153 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2154 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2155 | const Type *ElTy = DestTy->getElementType(); |
| 2156 | if (ElTy->isFloatingPoint()) { |
| 2157 | unsigned VL = DestTy->getNumElements(); |
| 2158 | std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy)); |
| 2159 | Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size()); |
| 2160 | if (CV == CNZ) { |
| 2161 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2162 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2163 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2164 | return; |
| 2165 | } |
| 2166 | } |
| 2167 | } |
| 2168 | } |
| 2169 | if (Ty->isFloatingPoint()) { |
| 2170 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
| 2171 | if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) { |
| 2172 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2173 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2174 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2175 | return; |
| 2176 | } |
| 2177 | } |
| 2178 | |
| 2179 | visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB); |
| 2180 | } |
| 2181 | |
| 2182 | void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) { |
| 2183 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2184 | SDValue Op2 = getValue(I.getOperand(1)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2185 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2186 | setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2187 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2188 | } |
| 2189 | |
| 2190 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 2191 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2192 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2193 | if (!isa<VectorType>(I.getType()) && |
| 2194 | Op2.getValueType() != TLI.getShiftAmountTy()) { |
| 2195 | // If the operand is smaller than the shift count type, promote it. |
| 2196 | if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType())) |
| 2197 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
| 2198 | TLI.getShiftAmountTy(), Op2); |
| 2199 | // If the operand is larger than the shift count type but the shift |
| 2200 | // count type has enough bits to represent any shift value, truncate |
| 2201 | // it now. This is a common case and it exposes the truncate to |
| 2202 | // optimization early. |
| 2203 | else if (TLI.getShiftAmountTy().getSizeInBits() >= |
| 2204 | Log2_32_Ceil(Op2.getValueType().getSizeInBits())) |
| 2205 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2206 | TLI.getShiftAmountTy(), Op2); |
| 2207 | // Otherwise we'll need to temporarily settle for some other |
| 2208 | // convenient type; type legalization will make adjustments as |
| 2209 | // needed. |
| 2210 | else if (TLI.getPointerTy().bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2211 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2212 | TLI.getPointerTy(), Op2); |
| 2213 | else if (TLI.getPointerTy().bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2214 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2215 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2216 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2217 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2218 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2219 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2220 | } |
| 2221 | |
| 2222 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2223 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2224 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2225 | predicate = IC->getPredicate(); |
| 2226 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2227 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2228 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2229 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2230 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2231 | setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2232 | } |
| 2233 | |
| 2234 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2235 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2236 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2237 | predicate = FC->getPredicate(); |
| 2238 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2239 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2240 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2241 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2242 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2243 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2244 | } |
| 2245 | |
| 2246 | void SelectionDAGLowering::visitVICmp(User &I) { |
| 2247 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2248 | if (VICmpInst *IC = dyn_cast<VICmpInst>(&I)) |
| 2249 | predicate = IC->getPredicate(); |
| 2250 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2251 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2252 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2253 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2254 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2255 | setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2256 | Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2257 | } |
| 2258 | |
| 2259 | void SelectionDAGLowering::visitVFCmp(User &I) { |
| 2260 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2261 | if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I)) |
| 2262 | predicate = FC->getPredicate(); |
| 2263 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2264 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2265 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2266 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2267 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2268 | MVT DestVT = TLI.getValueType(I.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2269 | |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2270 | setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2271 | } |
| 2272 | |
| 2273 | void SelectionDAGLowering::visitSelect(User &I) { |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2274 | SmallVector<MVT, 4> ValueVTs; |
| 2275 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2276 | unsigned NumValues = ValueVTs.size(); |
| 2277 | if (NumValues != 0) { |
| 2278 | SmallVector<SDValue, 4> Values(NumValues); |
| 2279 | SDValue Cond = getValue(I.getOperand(0)); |
| 2280 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2281 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2282 | |
| 2283 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2284 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2285 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2286 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2287 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2288 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2289 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2290 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2291 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2292 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
| 2295 | |
| 2296 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2297 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2298 | SDValue N = getValue(I.getOperand(0)); |
| 2299 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2300 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2301 | } |
| 2302 | |
| 2303 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2304 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2305 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2306 | SDValue N = getValue(I.getOperand(0)); |
| 2307 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2308 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2312 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2313 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2314 | SDValue N = getValue(I.getOperand(0)); |
| 2315 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2316 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2317 | } |
| 2318 | |
| 2319 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2320 | // FPTrunc is never a no-op cast, no need to check |
| 2321 | SDValue N = getValue(I.getOperand(0)); |
| 2322 | MVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2323 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2324 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2325 | } |
| 2326 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2327 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2328 | // FPTrunc is never a no-op cast, no need to check |
| 2329 | SDValue N = getValue(I.getOperand(0)); |
| 2330 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2331 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2332 | } |
| 2333 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2334 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2335 | // FPToUI is never a no-op cast, no need to check |
| 2336 | SDValue N = getValue(I.getOperand(0)); |
| 2337 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2338 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2339 | } |
| 2340 | |
| 2341 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2342 | // FPToSI is never a no-op cast, no need to check |
| 2343 | SDValue N = getValue(I.getOperand(0)); |
| 2344 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2345 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2346 | } |
| 2347 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2348 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2349 | // UIToFP is never a no-op cast, no need to check |
| 2350 | SDValue N = getValue(I.getOperand(0)); |
| 2351 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2352 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2353 | } |
| 2354 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2355 | void SelectionDAGLowering::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2356 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2357 | SDValue N = getValue(I.getOperand(0)); |
| 2358 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2359 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2360 | } |
| 2361 | |
| 2362 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2363 | // What to do depends on the size of the integer and the size of the pointer. |
| 2364 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2365 | SDValue N = getValue(I.getOperand(0)); |
| 2366 | MVT SrcVT = N.getValueType(); |
| 2367 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2368 | SDValue Result; |
| 2369 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2370 | Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2371 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2372 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2373 | Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2374 | setValue(&I, Result); |
| 2375 | } |
| 2376 | |
| 2377 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2378 | // What to do depends on the size of the integer and the size of the pointer. |
| 2379 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2380 | SDValue N = getValue(I.getOperand(0)); |
| 2381 | MVT SrcVT = N.getValueType(); |
| 2382 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2383 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2384 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2385 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2386 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2387 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2388 | DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2389 | } |
| 2390 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2391 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2392 | SDValue N = getValue(I.getOperand(0)); |
| 2393 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2394 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2395 | // BitCast assures us that source and destination are the same size so this |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2396 | // is either a BIT_CONVERT or a no-op. |
| 2397 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2398 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2399 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2400 | else |
| 2401 | setValue(&I, N); // noop cast. |
| 2402 | } |
| 2403 | |
| 2404 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2405 | SDValue InVec = getValue(I.getOperand(0)); |
| 2406 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2407 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2408 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2409 | getValue(I.getOperand(2))); |
| 2410 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2411 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2412 | TLI.getValueType(I.getType()), |
| 2413 | InVec, InVal, InIdx)); |
| 2414 | } |
| 2415 | |
| 2416 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2417 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2418 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2419 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2420 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2421 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2422 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2423 | } |
| 2424 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2425 | |
| 2426 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2427 | // from SIndx and increasing to the element length (undefs are allowed). |
| 2428 | static bool SequentialMask(SDValue Mask, unsigned SIndx) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2429 | unsigned MaskNumElts = Mask.getNumOperands(); |
| 2430 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2431 | if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) { |
| 2432 | unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue(); |
| 2433 | if (Idx != i + SIndx) |
| 2434 | return false; |
| 2435 | } |
| 2436 | } |
| 2437 | return true; |
| 2438 | } |
| 2439 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2440 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2441 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2442 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2443 | SDValue Mask = getValue(I.getOperand(2)); |
| 2444 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2445 | MVT VT = TLI.getValueType(I.getType()); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2446 | MVT SrcVT = Src1.getValueType(); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2447 | int MaskNumElts = Mask.getNumOperands(); |
| 2448 | int SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2449 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2450 | if (SrcNumElts == MaskNumElts) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2451 | setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2452 | VT, Src1, Src2, Mask)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2453 | return; |
| 2454 | } |
| 2455 | |
| 2456 | // Normalize the shuffle vector since mask and vector length don't match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2457 | MVT MaskEltVT = Mask.getValueType().getVectorElementType(); |
| 2458 | |
| 2459 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2460 | // Mask is longer than the source vectors and is a multiple of the source |
| 2461 | // vectors. We can use concatenate vector to make the mask and vectors |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2462 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2463 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2464 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2465 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2466 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2467 | return; |
| 2468 | } |
| 2469 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2470 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2471 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2472 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2473 | |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2474 | SDValue* MOps1 = new SDValue[NumConcat]; |
| 2475 | SDValue* MOps2 = new SDValue[NumConcat]; |
| 2476 | MOps1[0] = Src1; |
| 2477 | MOps2[0] = Src2; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2478 | for (unsigned i = 1; i != NumConcat; ++i) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2479 | MOps1[i] = UndefVal; |
| 2480 | MOps2[i] = UndefVal; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2481 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2482 | Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2483 | VT, MOps1, NumConcat); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2484 | Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2485 | VT, MOps2, NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2486 | |
| 2487 | delete [] MOps1; |
| 2488 | delete [] MOps2; |
| 2489 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2490 | // Readjust mask for new input vector length. |
| 2491 | SmallVector<SDValue, 8> MappedOps; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2492 | for (int i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2493 | if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) { |
| 2494 | MappedOps.push_back(Mask.getOperand(i)); |
| 2495 | } else { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2496 | int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue(); |
| 2497 | if (Idx < SrcNumElts) |
| 2498 | MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT)); |
| 2499 | else |
| 2500 | MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts, |
| 2501 | MaskEltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2502 | } |
| 2503 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2504 | Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2505 | Mask.getValueType(), |
| 2506 | &MappedOps[0], MappedOps.size()); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2507 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2508 | setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2509 | VT, Src1, Src2, Mask)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2510 | return; |
| 2511 | } |
| 2512 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2513 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2514 | // Resulting vector is shorter than the incoming vector. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2515 | if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2516 | // Shuffle extracts 1st vector. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2517 | setValue(&I, Src1); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2518 | return; |
| 2519 | } |
| 2520 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2521 | if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2522 | // Shuffle extracts 2nd vector. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2523 | setValue(&I, Src2); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2524 | return; |
| 2525 | } |
| 2526 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2527 | // Analyze the access pattern of the vector to see if we can extract |
| 2528 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2529 | // the range of elements the mask access on both vectors. |
| 2530 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2531 | int MaxRange[2] = {-1, -1}; |
| 2532 | |
| 2533 | for (int i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2534 | SDValue Arg = Mask.getOperand(i); |
| 2535 | if (Arg.getOpcode() != ISD::UNDEF) { |
| 2536 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2537 | int Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
| 2538 | int Input = 0; |
| 2539 | if (Idx >= SrcNumElts) { |
| 2540 | Input = 1; |
| 2541 | Idx -= SrcNumElts; |
| 2542 | } |
| 2543 | if (Idx > MaxRange[Input]) |
| 2544 | MaxRange[Input] = Idx; |
| 2545 | if (Idx < MinRange[Input]) |
| 2546 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2547 | } |
| 2548 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2549 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2550 | // Check if the access is smaller than the vector size and can we find |
| 2551 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2552 | int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2553 | int StartIdx[2]; // StartIdx to extract from |
| 2554 | for (int Input=0; Input < 2; ++Input) { |
| 2555 | if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) { |
| 2556 | RangeUse[Input] = 0; // Unused |
| 2557 | StartIdx[Input] = 0; |
| 2558 | } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) { |
| 2559 | // Fits within range but we should see if we can find a good |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2560 | // start index that is a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2561 | if (MaxRange[Input] < MaskNumElts) { |
| 2562 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2563 | StartIdx[Input] = 0; |
| 2564 | } else { |
| 2565 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Mon P Wang | 6cce3da | 2008-11-23 04:35:05 +0000 | [diff] [blame] | 2566 | if (MaxRange[Input] - StartIdx[Input] < MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2567 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2568 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2569 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2570 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2571 | } |
| 2572 | |
| 2573 | if (RangeUse[0] == 0 && RangeUse[0] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2574 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2575 | return; |
| 2576 | } |
| 2577 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2578 | // Extract appropriate subvector and generate a vector shuffle |
| 2579 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2580 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2581 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2582 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2583 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2584 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2585 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2586 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2587 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2588 | // Calculate new mask. |
| 2589 | SmallVector<SDValue, 8> MappedOps; |
| 2590 | for (int i = 0; i != MaskNumElts; ++i) { |
| 2591 | SDValue Arg = Mask.getOperand(i); |
| 2592 | if (Arg.getOpcode() == ISD::UNDEF) { |
| 2593 | MappedOps.push_back(Arg); |
| 2594 | } else { |
| 2595 | int Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
| 2596 | if (Idx < SrcNumElts) |
| 2597 | MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT)); |
| 2598 | else { |
| 2599 | Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts; |
| 2600 | MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2601 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2602 | } |
| 2603 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2604 | Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2605 | Mask.getValueType(), |
| 2606 | &MappedOps[0], MappedOps.size()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2607 | setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2608 | VT, Src1, Src2, Mask)); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2609 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2610 | } |
| 2611 | } |
| 2612 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2613 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2614 | // replacing the shuffle with extract and build vector. |
| 2615 | // to insert and build vector. |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2616 | MVT EltVT = VT.getVectorElementType(); |
| 2617 | MVT PtrVT = TLI.getPointerTy(); |
| 2618 | SmallVector<SDValue,8> Ops; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2619 | for (int i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2620 | SDValue Arg = Mask.getOperand(i); |
| 2621 | if (Arg.getOpcode() == ISD::UNDEF) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2622 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2623 | } else { |
| 2624 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2625 | int Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
| 2626 | if (Idx < SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2627 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2628 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2629 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2630 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2631 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2632 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2633 | } |
| 2634 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2635 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2636 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2637 | } |
| 2638 | |
| 2639 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2640 | const Value *Op0 = I.getOperand(0); |
| 2641 | const Value *Op1 = I.getOperand(1); |
| 2642 | const Type *AggTy = I.getType(); |
| 2643 | const Type *ValTy = Op1->getType(); |
| 2644 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2645 | bool FromUndef = isa<UndefValue>(Op1); |
| 2646 | |
| 2647 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2648 | I.idx_begin(), I.idx_end()); |
| 2649 | |
| 2650 | SmallVector<MVT, 4> AggValueVTs; |
| 2651 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
| 2652 | SmallVector<MVT, 4> ValValueVTs; |
| 2653 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2654 | |
| 2655 | unsigned NumAggValues = AggValueVTs.size(); |
| 2656 | unsigned NumValValues = ValValueVTs.size(); |
| 2657 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2658 | |
| 2659 | SDValue Agg = getValue(Op0); |
| 2660 | SDValue Val = getValue(Op1); |
| 2661 | unsigned i = 0; |
| 2662 | // Copy the beginning value(s) from the original aggregate. |
| 2663 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2664 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2665 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2666 | // Copy values from the inserted value(s). |
| 2667 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2668 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2669 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2670 | // Copy remaining value(s) from the original aggregate. |
| 2671 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2672 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2673 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2674 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2675 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2676 | DAG.getVTList(&AggValueVTs[0], NumAggValues), |
| 2677 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2678 | } |
| 2679 | |
| 2680 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2681 | const Value *Op0 = I.getOperand(0); |
| 2682 | const Type *AggTy = Op0->getType(); |
| 2683 | const Type *ValTy = I.getType(); |
| 2684 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2685 | |
| 2686 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2687 | I.idx_begin(), I.idx_end()); |
| 2688 | |
| 2689 | SmallVector<MVT, 4> ValValueVTs; |
| 2690 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2691 | |
| 2692 | unsigned NumValValues = ValValueVTs.size(); |
| 2693 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2694 | |
| 2695 | SDValue Agg = getValue(Op0); |
| 2696 | // Copy out the selected value(s). |
| 2697 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2698 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2699 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2700 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2701 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2702 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2703 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2704 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2705 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2706 | } |
| 2707 | |
| 2708 | |
| 2709 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2710 | SDValue N = getValue(I.getOperand(0)); |
| 2711 | const Type *Ty = I.getOperand(0)->getType(); |
| 2712 | |
| 2713 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2714 | OI != E; ++OI) { |
| 2715 | Value *Idx = *OI; |
| 2716 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2717 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2718 | if (Field) { |
| 2719 | // N = N + Offset |
| 2720 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2721 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2722 | DAG.getIntPtrConstant(Offset)); |
| 2723 | } |
| 2724 | Ty = StTy->getElementType(Field); |
| 2725 | } else { |
| 2726 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2727 | |
| 2728 | // If this is a constant subscript, handle it quickly. |
| 2729 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2730 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2731 | uint64_t Offs = |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2732 | TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2733 | SDValue OffsVal; |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2734 | unsigned PtrBits = TLI.getPointerTy().getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2735 | if (PtrBits < 64) { |
| 2736 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2737 | TLI.getPointerTy(), |
| 2738 | DAG.getConstant(Offs, MVT::i64)); |
| 2739 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2740 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2741 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2742 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2743 | continue; |
| 2744 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2745 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2746 | // N = N + Idx * ElementSize; |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2747 | uint64_t ElementSize = TD->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2748 | SDValue IdxN = getValue(Idx); |
| 2749 | |
| 2750 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2751 | // it. |
| 2752 | if (IdxN.getValueType().bitsLT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2753 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2754 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2755 | else if (IdxN.getValueType().bitsGT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2756 | IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2757 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2758 | |
| 2759 | // If this is a multiply by a power of two, turn it into a shl |
| 2760 | // immediately. This is a very common case. |
| 2761 | if (ElementSize != 1) { |
| 2762 | if (isPowerOf2_64(ElementSize)) { |
| 2763 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2764 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2765 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2766 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2767 | } else { |
| 2768 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2769 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2770 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2771 | } |
| 2772 | } |
| 2773 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2774 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2775 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2776 | } |
| 2777 | } |
| 2778 | setValue(&I, N); |
| 2779 | } |
| 2780 | |
| 2781 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2782 | // If this is a fixed sized alloca in the entry block of the function, |
| 2783 | // allocate it statically on the stack. |
| 2784 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2785 | return; // getValue will auto-populate this. |
| 2786 | |
| 2787 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2788 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2789 | unsigned Align = |
| 2790 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2791 | I.getAlignment()); |
| 2792 | |
| 2793 | SDValue AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 2794 | |
| 2795 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(), |
| 2796 | AllocSize, |
| 2797 | DAG.getConstant(TySize, AllocSize.getValueType())); |
| 2798 | |
| 2799 | |
| 2800 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2801 | MVT IntPtr = TLI.getPointerTy(); |
| 2802 | if (IntPtr.bitsLT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2803 | AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2804 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2805 | else if (IntPtr.bitsGT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2806 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2807 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2808 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2809 | // Handle alignment. If the requested alignment is less than or equal to |
| 2810 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2811 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2812 | unsigned StackAlign = |
| 2813 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2814 | if (Align <= StackAlign) |
| 2815 | Align = 0; |
| 2816 | |
| 2817 | // Round the size of the allocation up to the stack alignment size |
| 2818 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2819 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2820 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2821 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2822 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2823 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2824 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2825 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2826 | |
| 2827 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2828 | SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2829 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2830 | VTs, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2831 | setValue(&I, DSA); |
| 2832 | DAG.setRoot(DSA.getValue(1)); |
| 2833 | |
| 2834 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2835 | // object. |
| 2836 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 2837 | } |
| 2838 | |
| 2839 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2840 | const Value *SV = I.getOperand(0); |
| 2841 | SDValue Ptr = getValue(SV); |
| 2842 | |
| 2843 | const Type *Ty = I.getType(); |
| 2844 | bool isVolatile = I.isVolatile(); |
| 2845 | unsigned Alignment = I.getAlignment(); |
| 2846 | |
| 2847 | SmallVector<MVT, 4> ValueVTs; |
| 2848 | SmallVector<uint64_t, 4> Offsets; |
| 2849 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2850 | unsigned NumValues = ValueVTs.size(); |
| 2851 | if (NumValues == 0) |
| 2852 | return; |
| 2853 | |
| 2854 | SDValue Root; |
| 2855 | bool ConstantMemory = false; |
| 2856 | if (I.isVolatile()) |
| 2857 | // Serialize volatile loads with other side effects. |
| 2858 | Root = getRoot(); |
| 2859 | else if (AA->pointsToConstantMemory(SV)) { |
| 2860 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2861 | Root = DAG.getEntryNode(); |
| 2862 | ConstantMemory = true; |
| 2863 | } else { |
| 2864 | // Do not serialize non-volatile loads against each other. |
| 2865 | Root = DAG.getRoot(); |
| 2866 | } |
| 2867 | |
| 2868 | SmallVector<SDValue, 4> Values(NumValues); |
| 2869 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2870 | MVT PtrVT = Ptr.getValueType(); |
| 2871 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2872 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2873 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2874 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2875 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2876 | SV, Offsets[i], |
| 2877 | isVolatile, Alignment); |
| 2878 | Values[i] = L; |
| 2879 | Chains[i] = L.getValue(1); |
| 2880 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2881 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2882 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2883 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2884 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2885 | &Chains[0], NumValues); |
| 2886 | if (isVolatile) |
| 2887 | DAG.setRoot(Chain); |
| 2888 | else |
| 2889 | PendingLoads.push_back(Chain); |
| 2890 | } |
| 2891 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2892 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2893 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2894 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2895 | } |
| 2896 | |
| 2897 | |
| 2898 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2899 | Value *SrcV = I.getOperand(0); |
| 2900 | Value *PtrV = I.getOperand(1); |
| 2901 | |
| 2902 | SmallVector<MVT, 4> ValueVTs; |
| 2903 | SmallVector<uint64_t, 4> Offsets; |
| 2904 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2905 | unsigned NumValues = ValueVTs.size(); |
| 2906 | if (NumValues == 0) |
| 2907 | return; |
| 2908 | |
| 2909 | // Get the lowered operands. Note that we do this after |
| 2910 | // checking if NumResults is zero, because with zero results |
| 2911 | // the operands won't have values in the map. |
| 2912 | SDValue Src = getValue(SrcV); |
| 2913 | SDValue Ptr = getValue(PtrV); |
| 2914 | |
| 2915 | SDValue Root = getRoot(); |
| 2916 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2917 | MVT PtrVT = Ptr.getValueType(); |
| 2918 | bool isVolatile = I.isVolatile(); |
| 2919 | unsigned Alignment = I.getAlignment(); |
| 2920 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2921 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2922 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2923 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2924 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2925 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2926 | PtrV, Offsets[i], |
| 2927 | isVolatile, Alignment); |
| 2928 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2929 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2930 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2931 | } |
| 2932 | |
| 2933 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2934 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2935 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2936 | unsigned Intrinsic) { |
| 2937 | bool HasChain = !I.doesNotAccessMemory(); |
| 2938 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2939 | |
| 2940 | // Build the operand list. |
| 2941 | SmallVector<SDValue, 8> Ops; |
| 2942 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2943 | if (OnlyLoad) { |
| 2944 | // We don't need to serialize loads against other loads. |
| 2945 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2946 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2947 | Ops.push_back(getRoot()); |
| 2948 | } |
| 2949 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2950 | |
| 2951 | // Info is set by getTgtMemInstrinsic |
| 2952 | TargetLowering::IntrinsicInfo Info; |
| 2953 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2954 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2955 | // Add the intrinsic ID as an integer operand if it's not a target intrinsic. |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2956 | if (!IsTgtIntrinsic) |
| 2957 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2958 | |
| 2959 | // Add all operands of the call to the operand list. |
| 2960 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2961 | SDValue Op = getValue(I.getOperand(i)); |
| 2962 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2963 | "Intrinsic uses a non-legal type?"); |
| 2964 | Ops.push_back(Op); |
| 2965 | } |
| 2966 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2967 | std::vector<MVT> VTArray; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2968 | if (I.getType() != Type::VoidTy) { |
| 2969 | MVT VT = TLI.getValueType(I.getType()); |
| 2970 | if (VT.isVector()) { |
| 2971 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2972 | MVT EltVT = TLI.getValueType(DestTy->getElementType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2973 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2974 | VT = MVT::getVectorVT(EltVT, DestTy->getNumElements()); |
| 2975 | assert(VT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 2976 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2977 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2978 | assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?"); |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2979 | VTArray.push_back(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2980 | } |
| 2981 | if (HasChain) |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2982 | VTArray.push_back(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2983 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2984 | SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2985 | |
| 2986 | // Create the node. |
| 2987 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2988 | if (IsTgtIntrinsic) { |
| 2989 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2990 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2991 | VTs, &Ops[0], Ops.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2992 | Info.memVT, Info.ptrVal, Info.offset, |
| 2993 | Info.align, Info.vol, |
| 2994 | Info.readMem, Info.writeMem); |
| 2995 | } |
| 2996 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2997 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2998 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2999 | else if (I.getType() != Type::VoidTy) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3000 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3001 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3002 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3003 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3004 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3005 | |
| 3006 | if (HasChain) { |
| 3007 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 3008 | if (OnlyLoad) |
| 3009 | PendingLoads.push_back(Chain); |
| 3010 | else |
| 3011 | DAG.setRoot(Chain); |
| 3012 | } |
| 3013 | if (I.getType() != Type::VoidTy) { |
| 3014 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
| 3015 | MVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3016 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3017 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3018 | setValue(&I, Result); |
| 3019 | } |
| 3020 | } |
| 3021 | |
| 3022 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 3023 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 3024 | V = V->stripPointerCasts(); |
| 3025 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 3026 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 3027 | "TypeInfo must be a global variable or NULL"); |
| 3028 | return GV; |
| 3029 | } |
| 3030 | |
| 3031 | namespace llvm { |
| 3032 | |
| 3033 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 3034 | /// call, and add them to the specified machine basic block. |
| 3035 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 3036 | MachineBasicBlock *MBB) { |
| 3037 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 3038 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 3039 | assert(CE->getOpcode() == Instruction::BitCast && |
| 3040 | isa<Function>(CE->getOperand(0)) && |
| 3041 | "Personality should be a function"); |
| 3042 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 3043 | |
| 3044 | // Gather all the type infos for this landing pad and pass them along to |
| 3045 | // MachineModuleInfo. |
| 3046 | std::vector<GlobalVariable *> TyInfo; |
| 3047 | unsigned N = I.getNumOperands(); |
| 3048 | |
| 3049 | for (unsigned i = N - 1; i > 2; --i) { |
| 3050 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 3051 | unsigned FilterLength = CI->getZExtValue(); |
| 3052 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 3053 | assert (FirstCatch <= N && "Invalid filter length"); |
| 3054 | |
| 3055 | if (FirstCatch < N) { |
| 3056 | TyInfo.reserve(N - FirstCatch); |
| 3057 | for (unsigned j = FirstCatch; j < N; ++j) |
| 3058 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3059 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3060 | TyInfo.clear(); |
| 3061 | } |
| 3062 | |
| 3063 | if (!FilterLength) { |
| 3064 | // Cleanup. |
| 3065 | MMI->addCleanup(MBB); |
| 3066 | } else { |
| 3067 | // Filter. |
| 3068 | TyInfo.reserve(FilterLength - 1); |
| 3069 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 3070 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3071 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 3072 | TyInfo.clear(); |
| 3073 | } |
| 3074 | |
| 3075 | N = i; |
| 3076 | } |
| 3077 | } |
| 3078 | |
| 3079 | if (N > 3) { |
| 3080 | TyInfo.reserve(N - 3); |
| 3081 | for (unsigned j = 3; j < N; ++j) |
| 3082 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3083 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3084 | } |
| 3085 | } |
| 3086 | |
| 3087 | } |
| 3088 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3089 | /// GetSignificand - Get the significand and build it into a floating-point |
| 3090 | /// number with exponent of 1: |
| 3091 | /// |
| 3092 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 3093 | /// |
| 3094 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3095 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3096 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
| 3097 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3098 | DAG.getConstant(0x007fffff, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3099 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3100 | DAG.getConstant(0x3f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3101 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3102 | } |
| 3103 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3104 | /// GetExponent - Get the exponent: |
| 3105 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3106 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3107 | /// |
| 3108 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3109 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3110 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3111 | DebugLoc dl) { |
| 3112 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3113 | DAG.getConstant(0x7f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3114 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3115 | DAG.getConstant(23, TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3116 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3117 | DAG.getConstant(127, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3118 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3119 | } |
| 3120 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3121 | /// getF32Constant - Get 32-bit floating point constant. |
| 3122 | static SDValue |
| 3123 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
| 3124 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
| 3125 | } |
| 3126 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3127 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3128 | /// visitIntrinsicCall: I is a call instruction |
| 3129 | /// Op is the associated NodeType for I |
| 3130 | const char * |
| 3131 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3132 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3133 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3134 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3135 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3136 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3137 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3138 | getValue(I.getOperand(2)), |
| 3139 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3140 | setValue(&I, L); |
| 3141 | DAG.setRoot(L.getValue(1)); |
| 3142 | return 0; |
| 3143 | } |
| 3144 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3145 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3146 | const char * |
| 3147 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3148 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3149 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3150 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3151 | SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); |
| 3152 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3153 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3154 | setValue(&I, Result); |
| 3155 | return 0; |
| 3156 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3157 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3158 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3159 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3160 | void |
| 3161 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3162 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3163 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3164 | |
| 3165 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3166 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3167 | SDValue Op = getValue(I.getOperand(1)); |
| 3168 | |
| 3169 | // Put the exponent in the right bit position for later addition to the |
| 3170 | // final result: |
| 3171 | // |
| 3172 | // #define LOG2OFe 1.4426950f |
| 3173 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3174 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3175 | getF32Constant(DAG, 0x3fb8aa3b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3176 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3177 | |
| 3178 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3179 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3180 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3181 | |
| 3182 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3183 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3184 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3185 | |
| 3186 | if (LimitFloatPrecision <= 6) { |
| 3187 | // For floating-point precision of 6: |
| 3188 | // |
| 3189 | // TwoToFractionalPartOfX = |
| 3190 | // 0.997535578f + |
| 3191 | // (0.735607626f + 0.252464424f * x) * x; |
| 3192 | // |
| 3193 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3194 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3195 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3196 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3197 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3198 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3199 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3200 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3201 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3202 | |
| 3203 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3204 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3205 | TwoToFracPartOfX, IntegerPartOfX); |
| 3206 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3207 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3208 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3209 | // For floating-point precision of 12: |
| 3210 | // |
| 3211 | // TwoToFractionalPartOfX = |
| 3212 | // 0.999892986f + |
| 3213 | // (0.696457318f + |
| 3214 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3215 | // |
| 3216 | // 0.000107046256 error, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3217 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3218 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3219 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3220 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3221 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3222 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3223 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3224 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3225 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3226 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3227 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3228 | |
| 3229 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3230 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3231 | TwoToFracPartOfX, IntegerPartOfX); |
| 3232 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3233 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3234 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3235 | // For floating-point precision of 18: |
| 3236 | // |
| 3237 | // TwoToFractionalPartOfX = |
| 3238 | // 0.999999982f + |
| 3239 | // (0.693148872f + |
| 3240 | // (0.240227044f + |
| 3241 | // (0.554906021e-1f + |
| 3242 | // (0.961591928e-2f + |
| 3243 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3244 | // |
| 3245 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3246 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3247 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3248 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3249 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3250 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3251 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3252 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3253 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3254 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3255 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3256 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3257 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3258 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3259 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3260 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3261 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3262 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3263 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3264 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3265 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3266 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3267 | |
| 3268 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3269 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3270 | TwoToFracPartOfX, IntegerPartOfX); |
| 3271 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3272 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3273 | } |
| 3274 | } else { |
| 3275 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3276 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3277 | getValue(I.getOperand(1)).getValueType(), |
| 3278 | getValue(I.getOperand(1))); |
| 3279 | } |
| 3280 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3281 | setValue(&I, result); |
| 3282 | } |
| 3283 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3284 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3285 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3286 | void |
| 3287 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3288 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3289 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3290 | |
| 3291 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3292 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3293 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3294 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3295 | |
| 3296 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3297 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3298 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3299 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3300 | |
| 3301 | // Get the significand and build it into a floating-point number with |
| 3302 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3303 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3304 | |
| 3305 | if (LimitFloatPrecision <= 6) { |
| 3306 | // For floating-point precision of 6: |
| 3307 | // |
| 3308 | // LogofMantissa = |
| 3309 | // -1.1609546f + |
| 3310 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3311 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3312 | // error 0.0034276066, which is better than 8 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3313 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3314 | getF32Constant(DAG, 0xbe74c456)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3315 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3316 | getF32Constant(DAG, 0x3fb3a2b1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3317 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3318 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3319 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3320 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3321 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3322 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3323 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3324 | // For floating-point precision of 12: |
| 3325 | // |
| 3326 | // LogOfMantissa = |
| 3327 | // -1.7417939f + |
| 3328 | // (2.8212026f + |
| 3329 | // (-1.4699568f + |
| 3330 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3331 | // |
| 3332 | // error 0.000061011436, which is 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3333 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3334 | getF32Constant(DAG, 0xbd67b6d6)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3335 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3336 | getF32Constant(DAG, 0x3ee4f4b8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3337 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3338 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3339 | getF32Constant(DAG, 0x3fbc278b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3340 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3341 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3342 | getF32Constant(DAG, 0x40348e95)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3343 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3344 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3345 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3346 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3347 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3348 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3349 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3350 | // For floating-point precision of 18: |
| 3351 | // |
| 3352 | // LogOfMantissa = |
| 3353 | // -2.1072184f + |
| 3354 | // (4.2372794f + |
| 3355 | // (-3.7029485f + |
| 3356 | // (2.2781945f + |
| 3357 | // (-0.87823314f + |
| 3358 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3359 | // |
| 3360 | // error 0.0000023660568, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3361 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3362 | getF32Constant(DAG, 0xbc91e5ac)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3363 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3364 | getF32Constant(DAG, 0x3e4350aa)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3365 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3366 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3367 | getF32Constant(DAG, 0x3f60d3e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3368 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3369 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3370 | getF32Constant(DAG, 0x4011cdf0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3371 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3372 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3373 | getF32Constant(DAG, 0x406cfd1c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3374 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3375 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3376 | getF32Constant(DAG, 0x408797cb)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3377 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3378 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3379 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3380 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3381 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3382 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3383 | } |
| 3384 | } else { |
| 3385 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3386 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3387 | getValue(I.getOperand(1)).getValueType(), |
| 3388 | getValue(I.getOperand(1))); |
| 3389 | } |
| 3390 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3391 | setValue(&I, result); |
| 3392 | } |
| 3393 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3394 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3395 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3396 | void |
| 3397 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3398 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3399 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3400 | |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3401 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3402 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3403 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3404 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3405 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3406 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3407 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3408 | |
| 3409 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3410 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3411 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3412 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3413 | // Different possible minimax approximations of significand in |
| 3414 | // floating-point for various degrees of accuracy over [1,2]. |
| 3415 | if (LimitFloatPrecision <= 6) { |
| 3416 | // For floating-point precision of 6: |
| 3417 | // |
| 3418 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3419 | // |
| 3420 | // error 0.0049451742, which is more than 7 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3421 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3422 | getF32Constant(DAG, 0xbeb08fe0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3423 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3424 | getF32Constant(DAG, 0x40019463)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3425 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3426 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3427 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3428 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3429 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3430 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3431 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3432 | // For floating-point precision of 12: |
| 3433 | // |
| 3434 | // Log2ofMantissa = |
| 3435 | // -2.51285454f + |
| 3436 | // (4.07009056f + |
| 3437 | // (-2.12067489f + |
| 3438 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3439 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3440 | // error 0.0000876136000, which is better than 13 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3441 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3442 | getF32Constant(DAG, 0xbda7262e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3443 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3444 | getF32Constant(DAG, 0x3f25280b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3445 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3446 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3447 | getF32Constant(DAG, 0x4007b923)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3448 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3449 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3450 | getF32Constant(DAG, 0x40823e2f)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3451 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3452 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3453 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3454 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3455 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3456 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3457 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3458 | // For floating-point precision of 18: |
| 3459 | // |
| 3460 | // Log2ofMantissa = |
| 3461 | // -3.0400495f + |
| 3462 | // (6.1129976f + |
| 3463 | // (-5.3420409f + |
| 3464 | // (3.2865683f + |
| 3465 | // (-1.2669343f + |
| 3466 | // (0.27515199f - |
| 3467 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3468 | // |
| 3469 | // error 0.0000018516, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3470 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3471 | getF32Constant(DAG, 0xbcd2769e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3472 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3473 | getF32Constant(DAG, 0x3e8ce0b9)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3474 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3475 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3476 | getF32Constant(DAG, 0x3fa22ae7)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3477 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3478 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3479 | getF32Constant(DAG, 0x40525723)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3480 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3481 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3482 | getF32Constant(DAG, 0x40aaf200)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3483 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3484 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3485 | getF32Constant(DAG, 0x40c39dad)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3486 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3487 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3488 | getF32Constant(DAG, 0x4042902c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3489 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3490 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3491 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3492 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3493 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3494 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3495 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3496 | getValue(I.getOperand(1)).getValueType(), |
| 3497 | getValue(I.getOperand(1))); |
| 3498 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3499 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3500 | setValue(&I, result); |
| 3501 | } |
| 3502 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3503 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3504 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3505 | void |
| 3506 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3507 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3508 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3509 | |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3510 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3511 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3512 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3513 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3514 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3515 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3516 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3517 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3518 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3519 | |
| 3520 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3521 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3522 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3523 | |
| 3524 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3525 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3526 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3527 | // Log10ofMantissa = |
| 3528 | // -0.50419619f + |
| 3529 | // (0.60948995f - 0.10380950f * x) * x; |
| 3530 | // |
| 3531 | // error 0.0014886165, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3532 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3533 | getF32Constant(DAG, 0xbdd49a13)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3534 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3535 | getF32Constant(DAG, 0x3f1c0789)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3536 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3537 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3538 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3539 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3540 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3541 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3542 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3543 | // For floating-point precision of 12: |
| 3544 | // |
| 3545 | // Log10ofMantissa = |
| 3546 | // -0.64831180f + |
| 3547 | // (0.91751397f + |
| 3548 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3549 | // |
| 3550 | // error 0.00019228036, which is better than 12 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3551 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3552 | getF32Constant(DAG, 0x3d431f31)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3553 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3554 | getF32Constant(DAG, 0x3ea21fb2)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3555 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3556 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3557 | getF32Constant(DAG, 0x3f6ae232)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3558 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3559 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3560 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3561 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3562 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3563 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3564 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3565 | // For floating-point precision of 18: |
| 3566 | // |
| 3567 | // Log10ofMantissa = |
| 3568 | // -0.84299375f + |
| 3569 | // (1.5327582f + |
| 3570 | // (-1.0688956f + |
| 3571 | // (0.49102474f + |
| 3572 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3573 | // |
| 3574 | // error 0.0000037995730, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3575 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3576 | getF32Constant(DAG, 0x3c5d51ce)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3577 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3578 | getF32Constant(DAG, 0x3e00685a)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3579 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3580 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3581 | getF32Constant(DAG, 0x3efb6798)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3582 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3583 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3584 | getF32Constant(DAG, 0x3f88d192)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3585 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3586 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3587 | getF32Constant(DAG, 0x3fc4316c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3588 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3589 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3590 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3591 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3592 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3593 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3594 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3595 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3596 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3597 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3598 | getValue(I.getOperand(1)).getValueType(), |
| 3599 | getValue(I.getOperand(1))); |
| 3600 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3601 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3602 | setValue(&I, result); |
| 3603 | } |
| 3604 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3605 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3606 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3607 | void |
| 3608 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3609 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3610 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3611 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3612 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3613 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3614 | SDValue Op = getValue(I.getOperand(1)); |
| 3615 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3616 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3617 | |
| 3618 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3619 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3620 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3621 | |
| 3622 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3623 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3624 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3625 | |
| 3626 | if (LimitFloatPrecision <= 6) { |
| 3627 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3628 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3629 | // TwoToFractionalPartOfX = |
| 3630 | // 0.997535578f + |
| 3631 | // (0.735607626f + 0.252464424f * x) * x; |
| 3632 | // |
| 3633 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3634 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3635 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3636 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3637 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3638 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3639 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3640 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3641 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3642 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3643 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3644 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3645 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3646 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3647 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3648 | // For floating-point precision of 12: |
| 3649 | // |
| 3650 | // TwoToFractionalPartOfX = |
| 3651 | // 0.999892986f + |
| 3652 | // (0.696457318f + |
| 3653 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3654 | // |
| 3655 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3656 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3657 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3658 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3659 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3660 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3661 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3662 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3663 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3664 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3665 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3666 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3667 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3668 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3669 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3670 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3671 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3672 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3673 | // For floating-point precision of 18: |
| 3674 | // |
| 3675 | // TwoToFractionalPartOfX = |
| 3676 | // 0.999999982f + |
| 3677 | // (0.693148872f + |
| 3678 | // (0.240227044f + |
| 3679 | // (0.554906021e-1f + |
| 3680 | // (0.961591928e-2f + |
| 3681 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3682 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3683 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3684 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3685 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3686 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3687 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3688 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3689 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3690 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3691 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3692 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3693 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3694 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3695 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3696 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3697 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3698 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3699 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3700 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3701 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3702 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3703 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3704 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3705 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3706 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3707 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3708 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3709 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3710 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3711 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3712 | getValue(I.getOperand(1)).getValueType(), |
| 3713 | getValue(I.getOperand(1))); |
| 3714 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3715 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3716 | setValue(&I, result); |
| 3717 | } |
| 3718 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3719 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3720 | /// limited-precision mode with x == 10.0f. |
| 3721 | void |
| 3722 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3723 | SDValue result; |
| 3724 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3725 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3726 | bool IsExp10 = false; |
| 3727 | |
| 3728 | if (getValue(Val).getValueType() == MVT::f32 && |
Bill Wendling | 277fc24 | 2008-09-10 00:24:59 +0000 | [diff] [blame] | 3729 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3730 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3731 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3732 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3733 | APFloat Ten(10.0f); |
| 3734 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3735 | } |
| 3736 | } |
| 3737 | } |
| 3738 | |
| 3739 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3740 | SDValue Op = getValue(I.getOperand(2)); |
| 3741 | |
| 3742 | // Put the exponent in the right bit position for later addition to the |
| 3743 | // final result: |
| 3744 | // |
| 3745 | // #define LOG2OF10 3.3219281f |
| 3746 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3747 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3748 | getF32Constant(DAG, 0x40549a78)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3749 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3750 | |
| 3751 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3752 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3753 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3754 | |
| 3755 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3756 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3757 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3758 | |
| 3759 | if (LimitFloatPrecision <= 6) { |
| 3760 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3761 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3762 | // twoToFractionalPartOfX = |
| 3763 | // 0.997535578f + |
| 3764 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3765 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3766 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3767 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3768 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3769 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3770 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3771 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3772 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3773 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3774 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3775 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3776 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3777 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3778 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
| 3779 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3780 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3781 | // For floating-point precision of 12: |
| 3782 | // |
| 3783 | // TwoToFractionalPartOfX = |
| 3784 | // 0.999892986f + |
| 3785 | // (0.696457318f + |
| 3786 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3787 | // |
| 3788 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3789 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3790 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3791 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3792 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3793 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3794 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3795 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3796 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3797 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3798 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3799 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3800 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3801 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3802 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3803 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3804 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3805 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3806 | // For floating-point precision of 18: |
| 3807 | // |
| 3808 | // TwoToFractionalPartOfX = |
| 3809 | // 0.999999982f + |
| 3810 | // (0.693148872f + |
| 3811 | // (0.240227044f + |
| 3812 | // (0.554906021e-1f + |
| 3813 | // (0.961591928e-2f + |
| 3814 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3815 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3816 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3817 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3818 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3819 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3820 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3821 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3822 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3823 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3824 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3825 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3826 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3827 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3828 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3829 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3830 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3831 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3832 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3833 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3834 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3835 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3836 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3837 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3838 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3839 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3840 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3841 | } |
| 3842 | } else { |
| 3843 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3844 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3845 | getValue(I.getOperand(1)).getValueType(), |
| 3846 | getValue(I.getOperand(1)), |
| 3847 | getValue(I.getOperand(2))); |
| 3848 | } |
| 3849 | |
| 3850 | setValue(&I, result); |
| 3851 | } |
| 3852 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3853 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3854 | /// we want to emit this as a call to a named external function, return the name |
| 3855 | /// otherwise lower it and return null. |
| 3856 | const char * |
| 3857 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3858 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3859 | switch (Intrinsic) { |
| 3860 | default: |
| 3861 | // By default, turn this into a target intrinsic node. |
| 3862 | visitTargetIntrinsic(I, Intrinsic); |
| 3863 | return 0; |
| 3864 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3865 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3866 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3867 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3868 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3869 | getValue(I.getOperand(1)))); |
| 3870 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3871 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3872 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3873 | getValue(I.getOperand(1)))); |
| 3874 | return 0; |
| 3875 | case Intrinsic::setjmp: |
| 3876 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3877 | break; |
| 3878 | case Intrinsic::longjmp: |
| 3879 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3880 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3881 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3882 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3883 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3884 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3885 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3886 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3887 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3888 | return 0; |
| 3889 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3890 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3891 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3892 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3893 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3894 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3895 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3896 | I.getOperand(1), 0)); |
| 3897 | return 0; |
| 3898 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3899 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3900 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3901 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3902 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3903 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3904 | |
| 3905 | // If the source and destination are known to not be aliases, we can |
| 3906 | // lower memmove as memcpy. |
| 3907 | uint64_t Size = -1ULL; |
| 3908 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3909 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3910 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3911 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3912 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3913 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3914 | return 0; |
| 3915 | } |
| 3916 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3917 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3918 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3919 | return 0; |
| 3920 | } |
| 3921 | case Intrinsic::dbg_stoppoint: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3922 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3923 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3924 | if (DW && DW->ValidDebugInfo(SPI.getContext(), Fast)) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3925 | MachineFunction &MF = DAG.getMachineFunction(); |
Dale Johannesen | beaec4c | 2009-03-25 17:36:08 +0000 | [diff] [blame] | 3926 | if (Fast) |
| 3927 | DAG.setRoot(DAG.getDbgStopPoint(getRoot(), |
| 3928 | SPI.getLine(), |
| 3929 | SPI.getColumn(), |
| 3930 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3931 | DICompileUnit CU(cast<GlobalVariable>(SPI.getContext())); |
Bill Wendling | 0582ae9 | 2009-03-13 04:39:26 +0000 | [diff] [blame] | 3932 | std::string Dir, FN; |
| 3933 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir), |
| 3934 | CU.getFilename(FN)); |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3935 | unsigned idx = MF.getOrCreateDebugLocID(SrcFile, |
| 3936 | SPI.getLine(), SPI.getColumn()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3937 | setCurDebugLoc(DebugLoc::get(idx)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3938 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3939 | return 0; |
| 3940 | } |
| 3941 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3942 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3943 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3944 | if (DW && DW->ValidDebugInfo(RSI.getContext(), Fast)) { |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3945 | unsigned LabelID = |
| 3946 | DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3947 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3948 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3949 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3950 | |
| 3951 | return 0; |
| 3952 | } |
| 3953 | case Intrinsic::dbg_region_end: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3954 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3955 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3956 | if (DW && DW->ValidDebugInfo(REI.getContext(), Fast)) { |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3957 | |
| 3958 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3959 | DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext())); |
| 3960 | std::string SPName; |
| 3961 | Subprogram.getLinkageName(SPName); |
| 3962 | if (!SPName.empty() |
| 3963 | && strcmp(SPName.c_str(), MF.getFunction()->getNameStart())) { |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3964 | // This is end of inlined function. Debugging information for |
| 3965 | // inlined function is not handled yet (only supported by FastISel). |
| 3966 | if (Fast) { |
| 3967 | unsigned ID = DW->RecordInlinedFnEnd(Subprogram); |
| 3968 | if (ID != 0) |
| 3969 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3970 | getRoot(), ID)); |
| 3971 | } |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3972 | return 0; |
| 3973 | } |
| 3974 | |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3975 | unsigned LabelID = |
| 3976 | DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3977 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3978 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3979 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3980 | |
| 3981 | return 0; |
| 3982 | } |
| 3983 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3984 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 3985 | if (!DW) return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3986 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
| 3987 | Value *SP = FSI.getSubprogram(); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3988 | if (SP && DW->ValidDebugInfo(SP, Fast)) { |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3989 | MachineFunction &MF = DAG.getMachineFunction(); |
Bill Wendling | 5aa4977 | 2009-02-24 02:35:30 +0000 | [diff] [blame] | 3990 | if (Fast) { |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3991 | // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is what |
| 3992 | // (most?) gdb expects. |
| 3993 | DebugLoc PrevLoc = CurDebugLoc; |
| 3994 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 3995 | DICompileUnit CompileUnit = Subprogram.getCompileUnit(); |
| 3996 | std::string Dir, FN; |
| 3997 | unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir), |
| 3998 | CompileUnit.getFilename(FN)); |
| 3999 | |
| 4000 | if (!Subprogram.describes(MF.getFunction())) { |
| 4001 | // This is a beginning of an inlined function. |
| 4002 | |
| 4003 | // Record the source line. |
| 4004 | unsigned Line = Subprogram.getLineNumber(); |
| 4005 | unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile); |
| 4006 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
| 4007 | |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 4008 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 4009 | getRoot(), LabelID)); |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 4010 | DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc); |
| 4011 | DW->RecordInlinedFnStart(&FSI, Subprogram, LabelID, |
| 4012 | PrevLocTpl.Src, |
| 4013 | PrevLocTpl.Line, |
| 4014 | PrevLocTpl.Col); |
| 4015 | } else { |
| 4016 | // Record the source line. |
| 4017 | unsigned Line = Subprogram.getLineNumber(); |
| 4018 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
Devang Patel | 906caf2 | 2009-04-16 15:07:09 +0000 | [diff] [blame^] | 4019 | DW->RecordSourceLine(Line, 0, SrcFile); |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 4020 | // llvm.dbg.func_start also defines beginning of function scope. |
| 4021 | DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram())); |
| 4022 | } |
| 4023 | } else { |
| 4024 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 4025 | |
| 4026 | std::string SPName; |
| 4027 | Subprogram.getLinkageName(SPName); |
| 4028 | if (!SPName.empty() |
| 4029 | && strcmp(SPName.c_str(), MF.getFunction()->getNameStart())) { |
| 4030 | // This is beginning of inlined function. Debugging information for |
| 4031 | // inlined function is not handled yet (only supported by FastISel). |
| 4032 | return 0; |
| 4033 | } |
| 4034 | |
| 4035 | // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is |
| 4036 | // what (most?) gdb expects. |
| 4037 | DICompileUnit CompileUnit = Subprogram.getCompileUnit(); |
| 4038 | std::string Dir, FN; |
| 4039 | unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir), |
| 4040 | CompileUnit.getFilename(FN)); |
| 4041 | |
| 4042 | // Record the source line but does not create a label for the normal |
| 4043 | // function start. It will be emitted at asm emission time. However, |
| 4044 | // create a label if this is a beginning of inlined function. |
| 4045 | unsigned Line = Subprogram.getLineNumber(); |
| 4046 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
| 4047 | // FIXME - Start new region because llvm.dbg.func_start also defines |
| 4048 | // beginning of function scope. |
| 4049 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4050 | } |
| 4051 | |
| 4052 | return 0; |
| 4053 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 4054 | case Intrinsic::dbg_declare: { |
Bill Wendling | 5aa4977 | 2009-02-24 02:35:30 +0000 | [diff] [blame] | 4055 | if (Fast) { |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 4056 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 4057 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 4058 | Value *Variable = DI.getVariable(); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 4059 | if (DW && DW->ValidDebugInfo(Variable, Fast)) |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 4060 | DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(), |
| 4061 | getValue(DI.getAddress()), getValue(Variable))); |
| 4062 | } else { |
| 4063 | // FIXME: Do something sensible here when we support debug declare. |
| 4064 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4065 | return 0; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 4066 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4067 | case Intrinsic::eh_exception: { |
| 4068 | if (!CurMBB->isLandingPad()) { |
| 4069 | // FIXME: Mark exception register as live in. Hack for PR1508. |
| 4070 | unsigned Reg = TLI.getExceptionAddressRegister(); |
| 4071 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4072 | } |
| 4073 | // Insert the EXCEPTIONADDR instruction. |
| 4074 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
| 4075 | SDValue Ops[1]; |
| 4076 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4077 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4078 | setValue(&I, Op); |
| 4079 | DAG.setRoot(Op.getValue(1)); |
| 4080 | return 0; |
| 4081 | } |
| 4082 | |
| 4083 | case Intrinsic::eh_selector_i32: |
| 4084 | case Intrinsic::eh_selector_i64: { |
| 4085 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4086 | MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? |
| 4087 | MVT::i32 : MVT::i64); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4088 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4089 | if (MMI) { |
| 4090 | if (CurMBB->isLandingPad()) |
| 4091 | AddCatchInfo(I, MMI, CurMBB); |
| 4092 | else { |
| 4093 | #ifndef NDEBUG |
| 4094 | FuncInfo.CatchInfoLost.insert(&I); |
| 4095 | #endif |
| 4096 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 4097 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 4098 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4099 | } |
| 4100 | |
| 4101 | // Insert the EHSELECTION instruction. |
| 4102 | SDVTList VTs = DAG.getVTList(VT, MVT::Other); |
| 4103 | SDValue Ops[2]; |
| 4104 | Ops[0] = getValue(I.getOperand(1)); |
| 4105 | Ops[1] = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4106 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4107 | setValue(&I, Op); |
| 4108 | DAG.setRoot(Op.getValue(1)); |
| 4109 | } else { |
| 4110 | setValue(&I, DAG.getConstant(0, VT)); |
| 4111 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4112 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4113 | return 0; |
| 4114 | } |
| 4115 | |
| 4116 | case Intrinsic::eh_typeid_for_i32: |
| 4117 | case Intrinsic::eh_typeid_for_i64: { |
| 4118 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4119 | MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
| 4120 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4121 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4122 | if (MMI) { |
| 4123 | // Find the type id for the given typeinfo. |
| 4124 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4125 | |
| 4126 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4127 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4128 | } else { |
| 4129 | // Return something different to eh_selector. |
| 4130 | setValue(&I, DAG.getConstant(1, VT)); |
| 4131 | } |
| 4132 | |
| 4133 | return 0; |
| 4134 | } |
| 4135 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4136 | case Intrinsic::eh_return_i32: |
| 4137 | case Intrinsic::eh_return_i64: |
| 4138 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4139 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4140 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4141 | MVT::Other, |
| 4142 | getControlRoot(), |
| 4143 | getValue(I.getOperand(1)), |
| 4144 | getValue(I.getOperand(2)))); |
| 4145 | } else { |
| 4146 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4147 | } |
| 4148 | |
| 4149 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4150 | case Intrinsic::eh_unwind_init: |
| 4151 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4152 | MMI->setCallsUnwindInit(true); |
| 4153 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4154 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4155 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4156 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4157 | case Intrinsic::eh_dwarf_cfa: { |
| 4158 | MVT VT = getValue(I.getOperand(1)).getValueType(); |
| 4159 | SDValue CfaArg; |
| 4160 | if (VT.bitsGT(TLI.getPointerTy())) |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4161 | CfaArg = DAG.getNode(ISD::TRUNCATE, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4162 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
| 4163 | else |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4164 | CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4165 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4166 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4167 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4168 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4169 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4170 | TLI.getPointerTy()), |
| 4171 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4172 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4173 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4174 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4175 | TLI.getPointerTy(), |
| 4176 | DAG.getConstant(0, |
| 4177 | TLI.getPointerTy())), |
| 4178 | Offset)); |
| 4179 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4180 | } |
| 4181 | |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4182 | case Intrinsic::convertff: |
| 4183 | case Intrinsic::convertfsi: |
| 4184 | case Intrinsic::convertfui: |
| 4185 | case Intrinsic::convertsif: |
| 4186 | case Intrinsic::convertuif: |
| 4187 | case Intrinsic::convertss: |
| 4188 | case Intrinsic::convertsu: |
| 4189 | case Intrinsic::convertus: |
| 4190 | case Intrinsic::convertuu: { |
| 4191 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4192 | switch (Intrinsic) { |
| 4193 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4194 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4195 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4196 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4197 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4198 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4199 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4200 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4201 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4202 | } |
| 4203 | MVT DestVT = TLI.getValueType(I.getType()); |
| 4204 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4205 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4206 | DAG.getValueType(DestVT), |
| 4207 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4208 | getValue(I.getOperand(2)), |
| 4209 | getValue(I.getOperand(3)), |
| 4210 | Code)); |
| 4211 | return 0; |
| 4212 | } |
| 4213 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4214 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4215 | setValue(&I, DAG.getNode(ISD::FSQRT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4216 | getValue(I.getOperand(1)).getValueType(), |
| 4217 | getValue(I.getOperand(1)))); |
| 4218 | return 0; |
| 4219 | case Intrinsic::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4220 | setValue(&I, DAG.getNode(ISD::FPOWI, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4221 | getValue(I.getOperand(1)).getValueType(), |
| 4222 | getValue(I.getOperand(1)), |
| 4223 | getValue(I.getOperand(2)))); |
| 4224 | return 0; |
| 4225 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4226 | setValue(&I, DAG.getNode(ISD::FSIN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4227 | getValue(I.getOperand(1)).getValueType(), |
| 4228 | getValue(I.getOperand(1)))); |
| 4229 | return 0; |
| 4230 | case Intrinsic::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4231 | setValue(&I, DAG.getNode(ISD::FCOS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4232 | getValue(I.getOperand(1)).getValueType(), |
| 4233 | getValue(I.getOperand(1)))); |
| 4234 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4235 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4236 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4237 | return 0; |
| 4238 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4239 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4240 | return 0; |
| 4241 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4242 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4243 | return 0; |
| 4244 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4245 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4246 | return 0; |
| 4247 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4248 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4249 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4250 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4251 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4252 | return 0; |
| 4253 | case Intrinsic::pcmarker: { |
| 4254 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4255 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4256 | return 0; |
| 4257 | } |
| 4258 | case Intrinsic::readcyclecounter: { |
| 4259 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4260 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4261 | DAG.getVTList(MVT::i64, MVT::Other), |
| 4262 | &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4263 | setValue(&I, Tmp); |
| 4264 | DAG.setRoot(Tmp.getValue(1)); |
| 4265 | return 0; |
| 4266 | } |
| 4267 | case Intrinsic::part_select: { |
| 4268 | // Currently not implemented: just abort |
| 4269 | assert(0 && "part_select intrinsic not implemented"); |
| 4270 | abort(); |
| 4271 | } |
| 4272 | case Intrinsic::part_set: { |
| 4273 | // Currently not implemented: just abort |
| 4274 | assert(0 && "part_set intrinsic not implemented"); |
| 4275 | abort(); |
| 4276 | } |
| 4277 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4278 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4279 | getValue(I.getOperand(1)).getValueType(), |
| 4280 | getValue(I.getOperand(1)))); |
| 4281 | return 0; |
| 4282 | case Intrinsic::cttz: { |
| 4283 | SDValue Arg = getValue(I.getOperand(1)); |
| 4284 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4285 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4286 | setValue(&I, result); |
| 4287 | return 0; |
| 4288 | } |
| 4289 | case Intrinsic::ctlz: { |
| 4290 | SDValue Arg = getValue(I.getOperand(1)); |
| 4291 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4292 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4293 | setValue(&I, result); |
| 4294 | return 0; |
| 4295 | } |
| 4296 | case Intrinsic::ctpop: { |
| 4297 | SDValue Arg = getValue(I.getOperand(1)); |
| 4298 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4299 | SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4300 | setValue(&I, result); |
| 4301 | return 0; |
| 4302 | } |
| 4303 | case Intrinsic::stacksave: { |
| 4304 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4305 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4306 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4307 | setValue(&I, Tmp); |
| 4308 | DAG.setRoot(Tmp.getValue(1)); |
| 4309 | return 0; |
| 4310 | } |
| 4311 | case Intrinsic::stackrestore: { |
| 4312 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4313 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4314 | return 0; |
| 4315 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4316 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4317 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4318 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4319 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 4320 | MVT PtrTy = TLI.getPointerTy(); |
| 4321 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4322 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4323 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4324 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4325 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4326 | MFI->setStackProtectorIndex(FI); |
| 4327 | |
| 4328 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4329 | |
| 4330 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4331 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4332 | PseudoSourceValue::getFixedStack(FI), |
| 4333 | 0, true); |
| 4334 | setValue(&I, Result); |
| 4335 | DAG.setRoot(Result); |
| 4336 | return 0; |
| 4337 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4338 | case Intrinsic::var_annotation: |
| 4339 | // Discard annotate attributes |
| 4340 | return 0; |
| 4341 | |
| 4342 | case Intrinsic::init_trampoline: { |
| 4343 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4344 | |
| 4345 | SDValue Ops[6]; |
| 4346 | Ops[0] = getRoot(); |
| 4347 | Ops[1] = getValue(I.getOperand(1)); |
| 4348 | Ops[2] = getValue(I.getOperand(2)); |
| 4349 | Ops[3] = getValue(I.getOperand(3)); |
| 4350 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4351 | Ops[5] = DAG.getSrcValue(F); |
| 4352 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4353 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4354 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), |
| 4355 | Ops, 6); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4356 | |
| 4357 | setValue(&I, Tmp); |
| 4358 | DAG.setRoot(Tmp.getValue(1)); |
| 4359 | return 0; |
| 4360 | } |
| 4361 | |
| 4362 | case Intrinsic::gcroot: |
| 4363 | if (GFI) { |
| 4364 | Value *Alloca = I.getOperand(1); |
| 4365 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4366 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4367 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4368 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4369 | } |
| 4370 | return 0; |
| 4371 | |
| 4372 | case Intrinsic::gcread: |
| 4373 | case Intrinsic::gcwrite: |
| 4374 | assert(0 && "GC failed to lower gcread/gcwrite intrinsics!"); |
| 4375 | return 0; |
| 4376 | |
| 4377 | case Intrinsic::flt_rounds: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4378 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4379 | return 0; |
| 4380 | } |
| 4381 | |
| 4382 | case Intrinsic::trap: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4383 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4384 | return 0; |
| 4385 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4386 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4387 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4388 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4389 | case Intrinsic::sadd_with_overflow: |
| 4390 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4391 | case Intrinsic::usub_with_overflow: |
| 4392 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4393 | case Intrinsic::ssub_with_overflow: |
| 4394 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4395 | case Intrinsic::umul_with_overflow: |
| 4396 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4397 | case Intrinsic::smul_with_overflow: |
| 4398 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4399 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4400 | case Intrinsic::prefetch: { |
| 4401 | SDValue Ops[4]; |
| 4402 | Ops[0] = getRoot(); |
| 4403 | Ops[1] = getValue(I.getOperand(1)); |
| 4404 | Ops[2] = getValue(I.getOperand(2)); |
| 4405 | Ops[3] = getValue(I.getOperand(3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4406 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4407 | return 0; |
| 4408 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4409 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4410 | case Intrinsic::memory_barrier: { |
| 4411 | SDValue Ops[6]; |
| 4412 | Ops[0] = getRoot(); |
| 4413 | for (int x = 1; x < 6; ++x) |
| 4414 | Ops[x] = getValue(I.getOperand(x)); |
| 4415 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4416 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4417 | return 0; |
| 4418 | } |
| 4419 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4420 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4421 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4422 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4423 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4424 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4425 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4426 | getValue(I.getOperand(2)), |
| 4427 | getValue(I.getOperand(3)), |
| 4428 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4429 | setValue(&I, L); |
| 4430 | DAG.setRoot(L.getValue(1)); |
| 4431 | return 0; |
| 4432 | } |
| 4433 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4434 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4435 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4436 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4437 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4438 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4439 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4440 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4441 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4442 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4443 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4444 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4445 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4446 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4447 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4448 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4449 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4450 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4451 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4452 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4453 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4454 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4455 | } |
| 4456 | } |
| 4457 | |
| 4458 | |
| 4459 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
| 4460 | bool IsTailCall, |
| 4461 | MachineBasicBlock *LandingPad) { |
| 4462 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4463 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4464 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4465 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4466 | |
| 4467 | TargetLowering::ArgListTy Args; |
| 4468 | TargetLowering::ArgListEntry Entry; |
| 4469 | Args.reserve(CS.arg_size()); |
| 4470 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 4471 | i != e; ++i) { |
| 4472 | SDValue ArgNode = getValue(*i); |
| 4473 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4474 | |
| 4475 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4476 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4477 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4478 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4479 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4480 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4481 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4482 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4483 | Args.push_back(Entry); |
| 4484 | } |
| 4485 | |
| 4486 | if (LandingPad && MMI) { |
| 4487 | // Insert a label before the invoke call to mark the try range. This can be |
| 4488 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4489 | BeginLabel = MMI->NextLabelID(); |
| 4490 | // Both PendingLoads and PendingExports must be flushed here; |
| 4491 | // this call might not return. |
| 4492 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4493 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4494 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4495 | } |
| 4496 | |
| 4497 | std::pair<SDValue,SDValue> Result = |
| 4498 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4499 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4500 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
| 4501 | CS.paramHasAttr(0, Attribute::InReg), |
| 4502 | CS.getCallingConv(), |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 4503 | IsTailCall && PerformTailCallOpt, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4504 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4505 | if (CS.getType() != Type::VoidTy) |
| 4506 | setValue(CS.getInstruction(), Result.first); |
| 4507 | DAG.setRoot(Result.second); |
| 4508 | |
| 4509 | if (LandingPad && MMI) { |
| 4510 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4511 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4512 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4513 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4514 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4515 | |
| 4516 | // Inform MachineModuleInfo of range. |
| 4517 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4518 | } |
| 4519 | } |
| 4520 | |
| 4521 | |
| 4522 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4523 | const char *RenameFn = 0; |
| 4524 | if (Function *F = I.getCalledFunction()) { |
| 4525 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4526 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4527 | if (II) { |
| 4528 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4529 | RenameFn = visitIntrinsicCall(I, IID); |
| 4530 | if (!RenameFn) |
| 4531 | return; |
| 4532 | } |
| 4533 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4534 | if (unsigned IID = F->getIntrinsicID()) { |
| 4535 | RenameFn = visitIntrinsicCall(I, IID); |
| 4536 | if (!RenameFn) |
| 4537 | return; |
| 4538 | } |
| 4539 | } |
| 4540 | |
| 4541 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4542 | // can't be a library call. |
| 4543 | unsigned NameLen = F->getNameLen(); |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 4544 | if (!F->hasLocalLinkage() && NameLen) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4545 | const char *NameStr = F->getNameStart(); |
| 4546 | if (NameStr[0] == 'c' && |
| 4547 | ((NameLen == 8 && !strcmp(NameStr, "copysign")) || |
| 4548 | (NameLen == 9 && !strcmp(NameStr, "copysignf")))) { |
| 4549 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4550 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4551 | I.getType() == I.getOperand(1)->getType() && |
| 4552 | I.getType() == I.getOperand(2)->getType()) { |
| 4553 | SDValue LHS = getValue(I.getOperand(1)); |
| 4554 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4555 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4556 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4557 | return; |
| 4558 | } |
| 4559 | } else if (NameStr[0] == 'f' && |
| 4560 | ((NameLen == 4 && !strcmp(NameStr, "fabs")) || |
| 4561 | (NameLen == 5 && !strcmp(NameStr, "fabsf")) || |
| 4562 | (NameLen == 5 && !strcmp(NameStr, "fabsl")))) { |
| 4563 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4564 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4565 | I.getType() == I.getOperand(1)->getType()) { |
| 4566 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4567 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4568 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4569 | return; |
| 4570 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4571 | } else if (NameStr[0] == 's' && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4572 | ((NameLen == 3 && !strcmp(NameStr, "sin")) || |
| 4573 | (NameLen == 4 && !strcmp(NameStr, "sinf")) || |
| 4574 | (NameLen == 4 && !strcmp(NameStr, "sinl")))) { |
| 4575 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4576 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4577 | I.getType() == I.getOperand(1)->getType()) { |
| 4578 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4579 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4580 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4581 | return; |
| 4582 | } |
| 4583 | } else if (NameStr[0] == 'c' && |
| 4584 | ((NameLen == 3 && !strcmp(NameStr, "cos")) || |
| 4585 | (NameLen == 4 && !strcmp(NameStr, "cosf")) || |
| 4586 | (NameLen == 4 && !strcmp(NameStr, "cosl")))) { |
| 4587 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4588 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4589 | I.getType() == I.getOperand(1)->getType()) { |
| 4590 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4591 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4592 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4593 | return; |
| 4594 | } |
| 4595 | } |
| 4596 | } |
| 4597 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4598 | visitInlineAsm(&I); |
| 4599 | return; |
| 4600 | } |
| 4601 | |
| 4602 | SDValue Callee; |
| 4603 | if (!RenameFn) |
| 4604 | Callee = getValue(I.getOperand(0)); |
| 4605 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4606 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4607 | |
| 4608 | LowerCallTo(&I, Callee, I.isTailCall()); |
| 4609 | } |
| 4610 | |
| 4611 | |
| 4612 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4613 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4614 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4615 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4616 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4617 | SDValue &Chain, |
| 4618 | SDValue *Flag) const { |
| 4619 | // Assemble the legal parts into the final values. |
| 4620 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4621 | SmallVector<SDValue, 8> Parts; |
| 4622 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4623 | // Copy the legal parts from the registers. |
| 4624 | MVT ValueVT = ValueVTs[Value]; |
| 4625 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 4626 | MVT RegisterVT = RegVTs[Value]; |
| 4627 | |
| 4628 | Parts.resize(NumRegs); |
| 4629 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4630 | SDValue P; |
| 4631 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4632 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4633 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4634 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4635 | *Flag = P.getValue(2); |
| 4636 | } |
| 4637 | Chain = P.getValue(1); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4638 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4639 | // If the source register was virtual and if we know something about it, |
| 4640 | // add an assert node. |
| 4641 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4642 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4643 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4644 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4645 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4646 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4647 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4648 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4649 | unsigned NumSignBits = LOI.NumSignBits; |
| 4650 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4651 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4652 | // FIXME: We capture more information than the dag can represent. For |
| 4653 | // now, just use the tightest assertzext/assertsext possible. |
| 4654 | bool isSExt = true; |
| 4655 | MVT FromVT(MVT::Other); |
| 4656 | if (NumSignBits == RegSize) |
| 4657 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
| 4658 | else if (NumZeroBits >= RegSize-1) |
| 4659 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
| 4660 | else if (NumSignBits > RegSize-8) |
| 4661 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4662 | else if (NumZeroBits >= RegSize-8) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4663 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
| 4664 | else if (NumSignBits > RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4665 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4666 | else if (NumZeroBits >= RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4667 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4668 | else if (NumSignBits > RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4669 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4670 | else if (NumZeroBits >= RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4671 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4672 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4673 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4674 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4675 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4676 | |
| 4677 | } |
| 4678 | } |
| 4679 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4680 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4681 | Parts[i] = P; |
| 4682 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4683 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4684 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4685 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4686 | Part += NumRegs; |
| 4687 | Parts.clear(); |
| 4688 | } |
| 4689 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4690 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4691 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4692 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4693 | } |
| 4694 | |
| 4695 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4696 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4697 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4698 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4699 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4700 | SDValue &Chain, SDValue *Flag) const { |
| 4701 | // Get the list of the values's legal parts. |
| 4702 | unsigned NumRegs = Regs.size(); |
| 4703 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4704 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4705 | MVT ValueVT = ValueVTs[Value]; |
| 4706 | unsigned NumParts = TLI->getNumRegisters(ValueVT); |
| 4707 | MVT RegisterVT = RegVTs[Value]; |
| 4708 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4709 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4710 | &Parts[Part], NumParts, RegisterVT); |
| 4711 | Part += NumParts; |
| 4712 | } |
| 4713 | |
| 4714 | // Copy the parts into the registers. |
| 4715 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4716 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4717 | SDValue Part; |
| 4718 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4719 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4720 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4721 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4722 | *Flag = Part.getValue(1); |
| 4723 | } |
| 4724 | Chains[i] = Part.getValue(0); |
| 4725 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4726 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4727 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4728 | // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4729 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4730 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4731 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4732 | // user as well as a successor (the TF operands are flagged to the user). |
| 4733 | // c1, f1 = CopyToReg |
| 4734 | // c2, f2 = CopyToReg |
| 4735 | // c3 = TokenFactor c1, c2 |
| 4736 | // ... |
| 4737 | // = op c3, ..., f2 |
| 4738 | Chain = Chains[NumRegs-1]; |
| 4739 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4740 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4741 | } |
| 4742 | |
| 4743 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4744 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4745 | /// values added into it. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4746 | void RegsForValue::AddInlineAsmOperands(unsigned Code, |
| 4747 | bool HasMatching,unsigned MatchingIdx, |
| 4748 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4749 | std::vector<SDValue> &Ops) const { |
| 4750 | MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4751 | assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!"); |
| 4752 | unsigned Flag = Code | (Regs.size() << 3); |
| 4753 | if (HasMatching) |
| 4754 | Flag |= 0x80000000 | (MatchingIdx << 16); |
| 4755 | Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4756 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4757 | unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]); |
| 4758 | MVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4759 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4760 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4761 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4762 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4763 | } |
| 4764 | } |
| 4765 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4766 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4767 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4768 | /// register class for the register. Otherwise, return null. |
| 4769 | static const TargetRegisterClass * |
| 4770 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4771 | const TargetLowering &TLI, |
| 4772 | const TargetRegisterInfo *TRI) { |
| 4773 | MVT FoundVT = MVT::Other; |
| 4774 | const TargetRegisterClass *FoundRC = 0; |
| 4775 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4776 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
| 4777 | MVT ThisVT = MVT::Other; |
| 4778 | |
| 4779 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4780 | // If none of the the value types for this register class are valid, we |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4781 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4782 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4783 | I != E; ++I) { |
| 4784 | if (TLI.isTypeLegal(*I)) { |
| 4785 | // If we have already found this register in a different register class, |
| 4786 | // choose the one with the largest VT specified. For example, on |
| 4787 | // PowerPC, we favor f64 register classes over f32. |
| 4788 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
| 4789 | ThisVT = *I; |
| 4790 | break; |
| 4791 | } |
| 4792 | } |
| 4793 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4794 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4795 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4796 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4797 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4798 | // frame pointer in functions that need it (due to them not being taken |
| 4799 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4800 | // yet). This is a slight code pessimization, but should still work. |
| 4801 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4802 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4803 | if (*I == Reg) { |
| 4804 | // We found a matching register class. Keep looking at others in case |
| 4805 | // we find one with larger registers that this physreg is also in. |
| 4806 | FoundRC = RC; |
| 4807 | FoundVT = ThisVT; |
| 4808 | break; |
| 4809 | } |
| 4810 | } |
| 4811 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4812 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4813 | |
| 4814 | |
| 4815 | namespace llvm { |
| 4816 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4817 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4818 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4819 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4820 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4821 | /// CallOperand - If this is the result output operand or a clobber |
| 4822 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4823 | /// This gets modified as the asm is processed. |
| 4824 | SDValue CallOperand; |
| 4825 | |
| 4826 | /// AssignedRegs - If this is a register or register class operand, this |
| 4827 | /// contains the set of register corresponding to the operand. |
| 4828 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4829 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4830 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4831 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4832 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4833 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4834 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4835 | /// busy in OutputRegs/InputRegs. |
| 4836 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4837 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4838 | std::set<unsigned> &InputRegs, |
| 4839 | const TargetRegisterInfo &TRI) const { |
| 4840 | if (isOutReg) { |
| 4841 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4842 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4843 | } |
| 4844 | if (isInReg) { |
| 4845 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4846 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4847 | } |
| 4848 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4849 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4850 | /// getCallOperandValMVT - Return the MVT of the Value* that this operand |
| 4851 | /// corresponds to. If there is no Value* for this operand, it returns |
| 4852 | /// MVT::Other. |
| 4853 | MVT getCallOperandValMVT(const TargetLowering &TLI, |
| 4854 | const TargetData *TD) const { |
| 4855 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4856 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4857 | if (isa<BasicBlock>(CallOperandVal)) |
| 4858 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4859 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4860 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4861 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4862 | // If this is an indirect operand, the operand is a pointer to the |
| 4863 | // accessed type. |
| 4864 | if (isIndirect) |
| 4865 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4866 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4867 | // If OpTy is not a single value, it may be a struct/union that we |
| 4868 | // can tile with integers. |
| 4869 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4870 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4871 | switch (BitSize) { |
| 4872 | default: break; |
| 4873 | case 1: |
| 4874 | case 8: |
| 4875 | case 16: |
| 4876 | case 32: |
| 4877 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4878 | case 128: |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4879 | OpTy = IntegerType::get(BitSize); |
| 4880 | break; |
| 4881 | } |
| 4882 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4883 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4884 | return TLI.getValueType(OpTy, true); |
| 4885 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4886 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4887 | private: |
| 4888 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4889 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4890 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4891 | const TargetRegisterInfo &TRI) { |
| 4892 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4893 | Regs.insert(Reg); |
| 4894 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4895 | for (; *Aliases; ++Aliases) |
| 4896 | Regs.insert(*Aliases); |
| 4897 | } |
| 4898 | }; |
| 4899 | } // end llvm namespace. |
| 4900 | |
| 4901 | |
| 4902 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4903 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4904 | /// register allocator handle the assignment process. However, if the asm uses |
| 4905 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4906 | /// allocation. This produces generally horrible, but correct, code. |
| 4907 | /// |
| 4908 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4909 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4910 | /// |
| 4911 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4912 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4913 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4914 | std::set<unsigned> &InputRegs) { |
| 4915 | // Compute whether this value requires an input register, an output register, |
| 4916 | // or both. |
| 4917 | bool isOutReg = false; |
| 4918 | bool isInReg = false; |
| 4919 | switch (OpInfo.Type) { |
| 4920 | case InlineAsm::isOutput: |
| 4921 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4922 | |
| 4923 | // If there is an input constraint that matches this, we need to reserve |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4924 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4925 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4926 | break; |
| 4927 | case InlineAsm::isInput: |
| 4928 | isInReg = true; |
| 4929 | isOutReg = false; |
| 4930 | break; |
| 4931 | case InlineAsm::isClobber: |
| 4932 | isOutReg = true; |
| 4933 | isInReg = true; |
| 4934 | break; |
| 4935 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4936 | |
| 4937 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4938 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4939 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4940 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4941 | // If this is a constraint for a single physreg, or a constraint for a |
| 4942 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4943 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4944 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4945 | OpInfo.ConstraintVT); |
| 4946 | |
| 4947 | unsigned NumRegs = 1; |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4948 | if (OpInfo.ConstraintVT != MVT::Other) { |
| 4949 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4950 | // cast of the input value. More generally, handle any case where the input |
| 4951 | // value disagrees with the register class we plan to stick this in. |
| 4952 | if (OpInfo.Type == InlineAsm::isInput && |
| 4953 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
| 4954 | // Try to convert to the first MVT that the reg class contains. If the |
| 4955 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4956 | // vector types). |
| 4957 | MVT RegVT = *PhysReg.second->vt_begin(); |
| 4958 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4959 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4960 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4961 | OpInfo.ConstraintVT = RegVT; |
| 4962 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4963 | // If the input is a FP value and we want it in FP registers, do a |
| 4964 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4965 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4966 | // machine. |
| 4967 | RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4968 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4969 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4970 | OpInfo.ConstraintVT = RegVT; |
| 4971 | } |
| 4972 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4973 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4974 | NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4975 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4976 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4977 | MVT RegVT; |
| 4978 | MVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4979 | |
| 4980 | // If this is a constraint for a specific physical register, like {r17}, |
| 4981 | // assign it now. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4982 | if (unsigned AssignedReg = PhysReg.first) { |
| 4983 | const TargetRegisterClass *RC = PhysReg.second; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4984 | if (OpInfo.ConstraintVT == MVT::Other) |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4985 | ValueVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4986 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4987 | // Get the actual register value type. This is important, because the user |
| 4988 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4989 | // remember that AX is actually i16 to get the right extension. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4990 | RegVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4991 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4992 | // This is a explicit reference to a physical register. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4993 | Regs.push_back(AssignedReg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4994 | |
| 4995 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4996 | if (NumRegs != 1) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4997 | TargetRegisterClass::iterator I = RC->begin(); |
| 4998 | for (; *I != AssignedReg; ++I) |
| 4999 | assert(I != RC->end() && "Didn't find reg!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5000 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5001 | // Already added the first reg. |
| 5002 | --NumRegs; ++I; |
| 5003 | for (; NumRegs; --NumRegs, ++I) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 5004 | assert(I != RC->end() && "Ran out of registers to allocate!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5005 | Regs.push_back(*I); |
| 5006 | } |
| 5007 | } |
| 5008 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 5009 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 5010 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 5011 | return; |
| 5012 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5013 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5014 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 5015 | // for this reference. |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 5016 | if (const TargetRegisterClass *RC = PhysReg.second) { |
| 5017 | RegVT = *RC->vt_begin(); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5018 | if (OpInfo.ConstraintVT == MVT::Other) |
| 5019 | ValueVT = RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5020 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5021 | // Create the appropriate number of virtual registers. |
| 5022 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 5023 | for (; NumRegs; --NumRegs) |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 5024 | Regs.push_back(RegInfo.createVirtualRegister(RC)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5025 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5026 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 5027 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5028 | } |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5029 | |
| 5030 | // This is a reference to a register class that doesn't directly correspond |
| 5031 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 5032 | // registers from the class. |
| 5033 | std::vector<unsigned> RegClassRegs |
| 5034 | = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 5035 | OpInfo.ConstraintVT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5036 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5037 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 5038 | unsigned NumAllocated = 0; |
| 5039 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 5040 | unsigned Reg = RegClassRegs[i]; |
| 5041 | // See if this register is available. |
| 5042 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 5043 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 5044 | // Make sure we find consecutive registers. |
| 5045 | NumAllocated = 0; |
| 5046 | continue; |
| 5047 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5048 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5049 | // Check to see if this register is allocatable (i.e. don't give out the |
| 5050 | // stack pointer). |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5051 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 5052 | if (!RC) { // Couldn't allocate this register. |
| 5053 | // Reset NumAllocated to make sure we return consecutive registers. |
| 5054 | NumAllocated = 0; |
| 5055 | continue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5056 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5057 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5058 | // Okay, this register is good, we can use it. |
| 5059 | ++NumAllocated; |
| 5060 | |
| 5061 | // If we allocated enough consecutive registers, succeed. |
| 5062 | if (NumAllocated == NumRegs) { |
| 5063 | unsigned RegStart = (i-NumAllocated)+1; |
| 5064 | unsigned RegEnd = i+1; |
| 5065 | // Mark all of the allocated registers used. |
| 5066 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 5067 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5068 | |
| 5069 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5070 | OpInfo.ConstraintVT); |
| 5071 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 5072 | return; |
| 5073 | } |
| 5074 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5075 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5076 | // Otherwise, we couldn't allocate enough registers for this. |
| 5077 | } |
| 5078 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5079 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 5080 | /// processed uses a memory 'm' constraint. |
| 5081 | static bool |
| 5082 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 5083 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5084 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 5085 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 5086 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 5087 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 5088 | if (CType == TargetLowering::C_Memory) |
| 5089 | return true; |
| 5090 | } |
| 5091 | } |
| 5092 | |
| 5093 | return false; |
| 5094 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5095 | |
| 5096 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 5097 | /// |
| 5098 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 5099 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 5100 | |
| 5101 | /// ConstraintOperands - Information about all of the constraints. |
| 5102 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5103 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5104 | SDValue Chain = getRoot(); |
| 5105 | SDValue Flag; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5106 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5107 | std::set<unsigned> OutputRegs, InputRegs; |
| 5108 | |
| 5109 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 5110 | // ConstraintOperands list. |
| 5111 | std::vector<InlineAsm::ConstraintInfo> |
| 5112 | ConstraintInfos = IA->ParseConstraints(); |
| 5113 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5114 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5115 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5116 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5117 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5118 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5119 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5120 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5121 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5122 | MVT OpVT = MVT::Other; |
| 5123 | |
| 5124 | // Compute the value type for each operand. |
| 5125 | switch (OpInfo.Type) { |
| 5126 | case InlineAsm::isOutput: |
| 5127 | // Indirect outputs just consume an argument. |
| 5128 | if (OpInfo.isIndirect) { |
| 5129 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5130 | break; |
| 5131 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5132 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5133 | // The return value of the call is this value. As such, there is no |
| 5134 | // corresponding argument. |
| 5135 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5136 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5137 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5138 | } else { |
| 5139 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5140 | OpVT = TLI.getValueType(CS.getType()); |
| 5141 | } |
| 5142 | ++ResNo; |
| 5143 | break; |
| 5144 | case InlineAsm::isInput: |
| 5145 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5146 | break; |
| 5147 | case InlineAsm::isClobber: |
| 5148 | // Nothing to do. |
| 5149 | break; |
| 5150 | } |
| 5151 | |
| 5152 | // If this is an input or an indirect output, process the call argument. |
| 5153 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5154 | if (OpInfo.CallOperandVal) { |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5155 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5156 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5157 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5158 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5159 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5160 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5161 | OpVT = OpInfo.getCallOperandValMVT(TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5162 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5163 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5164 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5165 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5166 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5167 | // Second pass over the constraints: compute which constraint option to use |
| 5168 | // and assign registers to constraints that want a specific physreg. |
| 5169 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5170 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5171 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5172 | // If this is an output operand with a matching input operand, look up the |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5173 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5174 | // other is floating point, or their sizes are different, flag it as an |
| 5175 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5176 | if (OpInfo.hasMatchingInput()) { |
| 5177 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5178 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5179 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5180 | Input.ConstraintVT.isInteger()) || |
| 5181 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5182 | Input.ConstraintVT.getSizeInBits())) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5183 | cerr << "llvm: error: Unsupported asm: input constraint with a " |
| 5184 | << "matching output constraint of incompatible type!\n"; |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5185 | exit(1); |
| 5186 | } |
| 5187 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5188 | } |
| 5189 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5190 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5191 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5192 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5193 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5194 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5195 | // need to to provide an address for the memory input. |
| 5196 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5197 | !OpInfo.isIndirect) { |
| 5198 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5199 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5200 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5201 | // Memory operands really want the address of the value. If we don't have |
| 5202 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5203 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5204 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5205 | // If the operand is a float, integer, or vector constant, spill to a |
| 5206 | // constant pool entry to get its address. |
| 5207 | Value *OpVal = OpInfo.CallOperandVal; |
| 5208 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5209 | isa<ConstantVector>(OpVal)) { |
| 5210 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5211 | TLI.getPointerTy()); |
| 5212 | } else { |
| 5213 | // Otherwise, create a stack slot and emit a store to it before the |
| 5214 | // asm. |
| 5215 | const Type *Ty = OpVal->getType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5216 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5217 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5218 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5219 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5220 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5221 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5222 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5223 | OpInfo.CallOperand = StackSlot; |
| 5224 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5225 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5226 | // There is no longer a Value* corresponding to this operand. |
| 5227 | OpInfo.CallOperandVal = 0; |
| 5228 | // It is now an indirect operand. |
| 5229 | OpInfo.isIndirect = true; |
| 5230 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5231 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5232 | // If this constraint is for a specific register, allocate it before |
| 5233 | // anything else. |
| 5234 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5235 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5236 | } |
| 5237 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5238 | |
| 5239 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5240 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5241 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5242 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5243 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5244 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5245 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5246 | // to be. |
| 5247 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5248 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5249 | } |
| 5250 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5251 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5252 | std::vector<SDValue> AsmNodeOperands; |
| 5253 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5254 | AsmNodeOperands.push_back( |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5255 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5256 | |
| 5257 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5258 | // Loop over all of the inputs, copying the operand values into the |
| 5259 | // appropriate registers and processing the output regs. |
| 5260 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5261 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5262 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5263 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5264 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5265 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5266 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5267 | |
| 5268 | switch (OpInfo.Type) { |
| 5269 | case InlineAsm::isOutput: { |
| 5270 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5271 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5272 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5273 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5274 | |
| 5275 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5276 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5277 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5278 | TLI.getPointerTy())); |
| 5279 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5280 | break; |
| 5281 | } |
| 5282 | |
| 5283 | // Otherwise, this is a register or register class output. |
| 5284 | |
| 5285 | // Copy the output from the appropriate register. Find a register that |
| 5286 | // we can use. |
| 5287 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5288 | cerr << "llvm: error: Couldn't allocate output reg for constraint '" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5289 | << OpInfo.ConstraintCode << "'!\n"; |
| 5290 | exit(1); |
| 5291 | } |
| 5292 | |
| 5293 | // If this is an indirect operand, store through the pointer after the |
| 5294 | // asm. |
| 5295 | if (OpInfo.isIndirect) { |
| 5296 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5297 | OpInfo.CallOperandVal)); |
| 5298 | } else { |
| 5299 | // This is the result value of the call. |
| 5300 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5301 | // Concatenate this output onto the outputs list. |
| 5302 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5303 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5304 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5305 | // Add information to the INLINEASM node to know that this register is |
| 5306 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5307 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5308 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5309 | 2 /* REGDEF */ , |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5310 | false, |
| 5311 | 0, |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5312 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5313 | break; |
| 5314 | } |
| 5315 | case InlineAsm::isInput: { |
| 5316 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5317 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5318 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5319 | // If this is required to match an output register we have already set, |
| 5320 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5321 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5322 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5323 | // Scan until we find the definition we already emitted of this operand. |
| 5324 | // When we find it, create a RegsForValue operand. |
| 5325 | unsigned CurOp = 2; // The first operand. |
| 5326 | for (; OperandNo; --OperandNo) { |
| 5327 | // Advance to the next operand. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5328 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5329 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5330 | assert(((OpFlag & 7) == 2 /*REGDEF*/ || |
| 5331 | (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
| 5332 | (OpFlag & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5333 | "Skipped past definitions?"); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5334 | CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5335 | } |
| 5336 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5337 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5338 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5339 | if ((OpFlag & 7) == 2 /*REGDEF*/ |
| 5340 | || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
| 5341 | // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5342 | RegsForValue MatchedRegs; |
| 5343 | MatchedRegs.TLI = &TLI; |
| 5344 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5345 | MVT RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
| 5346 | MatchedRegs.RegVTs.push_back(RegVT); |
| 5347 | MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5348 | for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5349 | i != e; ++i) |
| 5350 | MatchedRegs.Regs. |
| 5351 | push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT))); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5352 | |
| 5353 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5354 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5355 | Chain, &Flag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5356 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, |
| 5357 | true, OpInfo.getMatchedOperand(), |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5358 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5359 | break; |
| 5360 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5361 | assert(((OpFlag & 7) == 4) && "Unknown matching constraint!"); |
| 5362 | assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 && |
| 5363 | "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5364 | // Add information to the INLINEASM node to know about this input. |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5365 | // See InlineAsm.h isUseOperandTiedToDef. |
| 5366 | OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5367 | AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5368 | TLI.getPointerTy())); |
| 5369 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5370 | break; |
| 5371 | } |
| 5372 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5373 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5374 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5375 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5376 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5377 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5378 | std::vector<SDValue> Ops; |
| 5379 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5380 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5381 | if (Ops.empty()) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5382 | cerr << "llvm: error: Invalid operand for inline asm constraint '" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5383 | << OpInfo.ConstraintCode << "'!\n"; |
| 5384 | exit(1); |
| 5385 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5386 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5387 | // Add information to the INLINEASM node to know about this input. |
| 5388 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5389 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5390 | TLI.getPointerTy())); |
| 5391 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5392 | break; |
| 5393 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5394 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5395 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5396 | "Memory operands expect pointer values"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5397 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5398 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5399 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5400 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5401 | TLI.getPointerTy())); |
| 5402 | AsmNodeOperands.push_back(InOperandVal); |
| 5403 | break; |
| 5404 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5405 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5406 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5407 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5408 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5409 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5410 | "Don't know how to handle indirect register inputs yet!"); |
| 5411 | |
| 5412 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5413 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5414 | cerr << "llvm: error: Couldn't allocate output reg for constraint '" |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5415 | << OpInfo.ConstraintCode << "'!\n"; |
| 5416 | exit(1); |
| 5417 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5418 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5419 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5420 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5421 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5422 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0, |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5423 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5424 | break; |
| 5425 | } |
| 5426 | case InlineAsm::isClobber: { |
| 5427 | // Add the clobbered value to the operand list, so that the register |
| 5428 | // allocator is aware that the physreg got clobbered. |
| 5429 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5430 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5431 | false, 0, DAG,AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5432 | break; |
| 5433 | } |
| 5434 | } |
| 5435 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5436 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5437 | // Finish up input operands. |
| 5438 | AsmNodeOperands[0] = Chain; |
| 5439 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5440 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5441 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5442 | DAG.getVTList(MVT::Other, MVT::Flag), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5443 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5444 | Flag = Chain.getValue(1); |
| 5445 | |
| 5446 | // If this asm returns a register value, copy the result from that register |
| 5447 | // and set it as the value of the call. |
| 5448 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5449 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5450 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5451 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5452 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5453 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
| 5454 | MVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5455 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5456 | // If any of the results of the inline asm is a vector, it may have the |
| 5457 | // wrong width/num elts. This can happen for register classes that can |
| 5458 | // contain multiple different value types. The preg or vreg allocated may |
| 5459 | // not have the same VT as was expected. Convert it to the right type |
| 5460 | // with bit_convert. |
| 5461 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5462 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5463 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5464 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5465 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5466 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5467 | // If a result value was tied to an input value, the computed result may |
| 5468 | // have a wider width than the expected result. Extract the relevant |
| 5469 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5470 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5471 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5472 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5473 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5474 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5475 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5476 | setValue(CS.getInstruction(), Val); |
Dale Johannesen | ec65a7d | 2009-04-14 00:56:56 +0000 | [diff] [blame] | 5477 | // Don't need to use this as a chain in this case. |
| 5478 | if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) |
| 5479 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5480 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5481 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5482 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5483 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5484 | // Process indirect outputs, first output all of the flagged copies out of |
| 5485 | // physregs. |
| 5486 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5487 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5488 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5489 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5490 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5491 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
| 5492 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5493 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5494 | // Emit the non-flagged stores from the physregs. |
| 5495 | SmallVector<SDValue, 8> OutChains; |
| 5496 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5497 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5498 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5499 | getValue(StoresToEmit[i].second), |
| 5500 | StoresToEmit[i].second, 0)); |
| 5501 | if (!OutChains.empty()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5502 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5503 | &OutChains[0], OutChains.size()); |
| 5504 | DAG.setRoot(Chain); |
| 5505 | } |
| 5506 | |
| 5507 | |
| 5508 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5509 | SDValue Src = getValue(I.getOperand(0)); |
| 5510 | |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5511 | // Scale up by the type size in the original i32 type width. Various |
| 5512 | // mid-level optimizers may make assumptions about demanded bits etc from the |
| 5513 | // i32-ness of the optimizer: we do not want to promote to i64 and then |
| 5514 | // multiply on 64-bit targets. |
| 5515 | // FIXME: Malloc inst should go away: PR715. |
| 5516 | uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType()); |
| 5517 | if (ElementSize != 1) |
| 5518 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
| 5519 | Src, DAG.getConstant(ElementSize, Src.getValueType())); |
| 5520 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5521 | MVT IntPtr = TLI.getPointerTy(); |
| 5522 | |
| 5523 | if (IntPtr.bitsLT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5524 | Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5525 | else if (IntPtr.bitsGT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5526 | Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5527 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5528 | TargetLowering::ArgListTy Args; |
| 5529 | TargetLowering::ArgListEntry Entry; |
| 5530 | Entry.Node = Src; |
| 5531 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5532 | Args.push_back(Entry); |
| 5533 | |
| 5534 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5535 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5536 | CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5537 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5538 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5539 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5540 | DAG.setRoot(Result.second); |
| 5541 | } |
| 5542 | |
| 5543 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5544 | TargetLowering::ArgListTy Args; |
| 5545 | TargetLowering::ArgListEntry Entry; |
| 5546 | Entry.Node = getValue(I.getOperand(0)); |
| 5547 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5548 | Args.push_back(Entry); |
| 5549 | MVT IntPtr = TLI.getPointerTy(); |
| 5550 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5551 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false, |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5552 | CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5553 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5554 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5555 | DAG.setRoot(Result.second); |
| 5556 | } |
| 5557 | |
| 5558 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5559 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5560 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5561 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5562 | DAG.getSrcValue(I.getOperand(1)))); |
| 5563 | } |
| 5564 | |
| 5565 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5566 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5567 | getRoot(), getValue(I.getOperand(0)), |
| 5568 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5569 | setValue(&I, V); |
| 5570 | DAG.setRoot(V.getValue(1)); |
| 5571 | } |
| 5572 | |
| 5573 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5574 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5575 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5576 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5577 | DAG.getSrcValue(I.getOperand(1)))); |
| 5578 | } |
| 5579 | |
| 5580 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5581 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5582 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5583 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5584 | getValue(I.getOperand(2)), |
| 5585 | DAG.getSrcValue(I.getOperand(1)), |
| 5586 | DAG.getSrcValue(I.getOperand(2)))); |
| 5587 | } |
| 5588 | |
| 5589 | /// TargetLowering::LowerArguments - This is the default LowerArguments |
| 5590 | /// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5591 | /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5592 | /// integrated into SDISel. |
| 5593 | void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5594 | SmallVectorImpl<SDValue> &ArgValues, |
| 5595 | DebugLoc dl) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5596 | // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node. |
| 5597 | SmallVector<SDValue, 3+16> Ops; |
| 5598 | Ops.push_back(DAG.getRoot()); |
| 5599 | Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy())); |
| 5600 | Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy())); |
| 5601 | |
| 5602 | // Add one result value for each formal argument. |
| 5603 | SmallVector<MVT, 16> RetVals; |
| 5604 | unsigned j = 1; |
| 5605 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5606 | I != E; ++I, ++j) { |
| 5607 | SmallVector<MVT, 4> ValueVTs; |
| 5608 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5609 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5610 | Value != NumValues; ++Value) { |
| 5611 | MVT VT = ValueVTs[Value]; |
| 5612 | const Type *ArgTy = VT.getTypeForMVT(); |
| 5613 | ISD::ArgFlagsTy Flags; |
| 5614 | unsigned OriginalAlignment = |
| 5615 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5616 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5617 | if (F.paramHasAttr(j, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5618 | Flags.setZExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5619 | if (F.paramHasAttr(j, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5620 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5621 | if (F.paramHasAttr(j, Attribute::InReg)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5622 | Flags.setInReg(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5623 | if (F.paramHasAttr(j, Attribute::StructRet)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5624 | Flags.setSRet(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5625 | if (F.paramHasAttr(j, Attribute::ByVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5626 | Flags.setByVal(); |
| 5627 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5628 | const Type *ElementTy = Ty->getElementType(); |
| 5629 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5630 | unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5631 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5632 | // this info is not there but there are cases it cannot get right. |
| 5633 | if (F.getParamAlignment(j)) |
| 5634 | FrameAlign = F.getParamAlignment(j); |
| 5635 | Flags.setByValAlign(FrameAlign); |
| 5636 | Flags.setByValSize(FrameSize); |
| 5637 | } |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5638 | if (F.paramHasAttr(j, Attribute::Nest)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5639 | Flags.setNest(); |
| 5640 | Flags.setOrigAlign(OriginalAlignment); |
| 5641 | |
| 5642 | MVT RegisterVT = getRegisterType(VT); |
| 5643 | unsigned NumRegs = getNumRegisters(VT); |
| 5644 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5645 | RetVals.push_back(RegisterVT); |
| 5646 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5647 | if (NumRegs > 1 && i == 0) |
| 5648 | MyFlags.setSplit(); |
| 5649 | // if it isn't first piece, alignment must be 1 |
| 5650 | else if (i > 0) |
| 5651 | MyFlags.setOrigAlign(1); |
| 5652 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5653 | } |
| 5654 | } |
| 5655 | } |
| 5656 | |
| 5657 | RetVals.push_back(MVT::Other); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5658 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5659 | // Create the node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5660 | SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5661 | DAG.getVTList(&RetVals[0], RetVals.size()), |
| 5662 | &Ops[0], Ops.size()).getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5663 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5664 | // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but |
| 5665 | // allows exposing the loads that may be part of the argument access to the |
| 5666 | // first DAGCombiner pass. |
| 5667 | SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5668 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5669 | // The number of results should match up, except that the lowered one may have |
| 5670 | // an extra flag result. |
| 5671 | assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() || |
| 5672 | (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() && |
| 5673 | TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag)) |
| 5674 | && "Lowering produced unexpected number of results!"); |
| 5675 | |
| 5676 | // The FORMAL_ARGUMENTS node itself is likely no longer needed. |
| 5677 | if (Result != TmpRes.getNode() && Result->use_empty()) { |
| 5678 | HandleSDNode Dummy(DAG.getRoot()); |
| 5679 | DAG.RemoveDeadNode(Result); |
| 5680 | } |
| 5681 | |
| 5682 | Result = TmpRes.getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5683 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5684 | unsigned NumArgRegs = Result->getNumValues() - 1; |
| 5685 | DAG.setRoot(SDValue(Result, NumArgRegs)); |
| 5686 | |
| 5687 | // Set up the return result vector. |
| 5688 | unsigned i = 0; |
| 5689 | unsigned Idx = 1; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5690 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5691 | ++I, ++Idx) { |
| 5692 | SmallVector<MVT, 4> ValueVTs; |
| 5693 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5694 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5695 | Value != NumValues; ++Value) { |
| 5696 | MVT VT = ValueVTs[Value]; |
| 5697 | MVT PartVT = getRegisterType(VT); |
| 5698 | |
| 5699 | unsigned NumParts = getNumRegisters(VT); |
| 5700 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5701 | for (unsigned j = 0; j != NumParts; ++j) |
| 5702 | Parts[j] = SDValue(Result, i++); |
| 5703 | |
| 5704 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5705 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5706 | AssertOp = ISD::AssertSext; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5707 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5708 | AssertOp = ISD::AssertZext; |
| 5709 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5710 | ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts, |
| 5711 | PartVT, VT, AssertOp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5712 | } |
| 5713 | } |
| 5714 | assert(i == NumArgRegs && "Argument register count mismatch!"); |
| 5715 | } |
| 5716 | |
| 5717 | |
| 5718 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
| 5719 | /// implementation, which just inserts an ISD::CALL node, which is later custom |
| 5720 | /// lowered by the target to something concrete. FIXME: When all targets are |
| 5721 | /// migrated to using ISD::CALL, this hook should be integrated into SDISel. |
| 5722 | std::pair<SDValue, SDValue> |
| 5723 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5724 | bool RetSExt, bool RetZExt, bool isVarArg, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5725 | bool isInreg, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5726 | unsigned CallingConv, bool isTailCall, |
| 5727 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5728 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5729 | assert((!isTailCall || PerformTailCallOpt) && |
| 5730 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5731 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5732 | SmallVector<SDValue, 32> Ops; |
| 5733 | Ops.push_back(Chain); // Op#0 - Chain |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5734 | Ops.push_back(Callee); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5735 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5736 | // Handle all of the outgoing arguments. |
| 5737 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 5738 | SmallVector<MVT, 4> ValueVTs; |
| 5739 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5740 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5741 | Value != NumValues; ++Value) { |
| 5742 | MVT VT = ValueVTs[Value]; |
| 5743 | const Type *ArgTy = VT.getTypeForMVT(); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5744 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5745 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5746 | ISD::ArgFlagsTy Flags; |
| 5747 | unsigned OriginalAlignment = |
| 5748 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5749 | |
| 5750 | if (Args[i].isZExt) |
| 5751 | Flags.setZExt(); |
| 5752 | if (Args[i].isSExt) |
| 5753 | Flags.setSExt(); |
| 5754 | if (Args[i].isInReg) |
| 5755 | Flags.setInReg(); |
| 5756 | if (Args[i].isSRet) |
| 5757 | Flags.setSRet(); |
| 5758 | if (Args[i].isByVal) { |
| 5759 | Flags.setByVal(); |
| 5760 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5761 | const Type *ElementTy = Ty->getElementType(); |
| 5762 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5763 | unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5764 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5765 | // info is not there but there are cases it cannot get right. |
| 5766 | if (Args[i].Alignment) |
| 5767 | FrameAlign = Args[i].Alignment; |
| 5768 | Flags.setByValAlign(FrameAlign); |
| 5769 | Flags.setByValSize(FrameSize); |
| 5770 | } |
| 5771 | if (Args[i].isNest) |
| 5772 | Flags.setNest(); |
| 5773 | Flags.setOrigAlign(OriginalAlignment); |
| 5774 | |
| 5775 | MVT PartVT = getRegisterType(VT); |
| 5776 | unsigned NumParts = getNumRegisters(VT); |
| 5777 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5778 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5779 | |
| 5780 | if (Args[i].isSExt) |
| 5781 | ExtendKind = ISD::SIGN_EXTEND; |
| 5782 | else if (Args[i].isZExt) |
| 5783 | ExtendKind = ISD::ZERO_EXTEND; |
| 5784 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5785 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5786 | |
| 5787 | for (unsigned i = 0; i != NumParts; ++i) { |
| 5788 | // if it isn't first piece, alignment must be 1 |
| 5789 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5790 | if (NumParts > 1 && i == 0) |
| 5791 | MyFlags.setSplit(); |
| 5792 | else if (i != 0) |
| 5793 | MyFlags.setOrigAlign(1); |
| 5794 | |
| 5795 | Ops.push_back(Parts[i]); |
| 5796 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5797 | } |
| 5798 | } |
| 5799 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5800 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5801 | // Figure out the result value types. We start by making a list of |
| 5802 | // the potentially illegal return value types. |
| 5803 | SmallVector<MVT, 4> LoweredRetTys; |
| 5804 | SmallVector<MVT, 4> RetTys; |
| 5805 | ComputeValueVTs(*this, RetTy, RetTys); |
| 5806 | |
| 5807 | // Then we translate that to a list of legal types. |
| 5808 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5809 | MVT VT = RetTys[I]; |
| 5810 | MVT RegisterVT = getRegisterType(VT); |
| 5811 | unsigned NumRegs = getNumRegisters(VT); |
| 5812 | for (unsigned i = 0; i != NumRegs; ++i) |
| 5813 | LoweredRetTys.push_back(RegisterVT); |
| 5814 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5815 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5816 | LoweredRetTys.push_back(MVT::Other); // Always has a chain. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5817 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5818 | // Create the CALL node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5819 | SDValue Res = DAG.getCall(CallingConv, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5820 | isVarArg, isTailCall, isInreg, |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5821 | DAG.getVTList(&LoweredRetTys[0], |
| 5822 | LoweredRetTys.size()), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5823 | &Ops[0], Ops.size() |
| 5824 | ); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5825 | Chain = Res.getValue(LoweredRetTys.size() - 1); |
| 5826 | |
| 5827 | // Gather up the call result into a single value. |
Dan Gohman | b5cc34d | 2008-10-07 00:12:37 +0000 | [diff] [blame] | 5828 | if (RetTy != Type::VoidTy && !RetTys.empty()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5829 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5830 | |
| 5831 | if (RetSExt) |
| 5832 | AssertOp = ISD::AssertSext; |
| 5833 | else if (RetZExt) |
| 5834 | AssertOp = ISD::AssertZext; |
| 5835 | |
| 5836 | SmallVector<SDValue, 4> ReturnValues; |
| 5837 | unsigned RegNo = 0; |
| 5838 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5839 | MVT VT = RetTys[I]; |
| 5840 | MVT RegisterVT = getRegisterType(VT); |
| 5841 | unsigned NumRegs = getNumRegisters(VT); |
| 5842 | unsigned RegNoEnd = NumRegs + RegNo; |
| 5843 | SmallVector<SDValue, 4> Results; |
| 5844 | for (; RegNo != RegNoEnd; ++RegNo) |
| 5845 | Results.push_back(Res.getValue(RegNo)); |
| 5846 | SDValue ReturnValue = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5847 | getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5848 | AssertOp); |
| 5849 | ReturnValues.push_back(ReturnValue); |
| 5850 | } |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5851 | Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 5852 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5853 | &ReturnValues[0], ReturnValues.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5854 | } |
| 5855 | |
| 5856 | return std::make_pair(Res, Chain); |
| 5857 | } |
| 5858 | |
Duncan Sands | 9fbc7e2 | 2009-01-21 09:00:29 +0000 | [diff] [blame] | 5859 | void TargetLowering::LowerOperationWrapper(SDNode *N, |
| 5860 | SmallVectorImpl<SDValue> &Results, |
| 5861 | SelectionDAG &DAG) { |
| 5862 | SDValue Res = LowerOperation(SDValue(N, 0), DAG); |
Sanjiv Gupta | bb326bb | 2009-01-21 04:48:39 +0000 | [diff] [blame] | 5863 | if (Res.getNode()) |
| 5864 | Results.push_back(Res); |
| 5865 | } |
| 5866 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5867 | SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
| 5868 | assert(0 && "LowerOperation not implemented for this target!"); |
| 5869 | abort(); |
| 5870 | return SDValue(); |
| 5871 | } |
| 5872 | |
| 5873 | |
| 5874 | void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) { |
| 5875 | SDValue Op = getValue(V); |
| 5876 | assert((Op.getOpcode() != ISD::CopyFromReg || |
| 5877 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
| 5878 | "Copy from a reg to the same reg!"); |
| 5879 | assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); |
| 5880 | |
| 5881 | RegsForValue RFV(TLI, Reg, V->getType()); |
| 5882 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5883 | RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5884 | PendingExports.push_back(Chain); |
| 5885 | } |
| 5886 | |
| 5887 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 5888 | |
| 5889 | void SelectionDAGISel:: |
| 5890 | LowerArguments(BasicBlock *LLVMBB) { |
| 5891 | // If this is the entry block, emit arguments. |
| 5892 | Function &F = *LLVMBB->getParent(); |
| 5893 | SDValue OldRoot = SDL->DAG.getRoot(); |
| 5894 | SmallVector<SDValue, 16> Args; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5895 | TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5896 | |
| 5897 | unsigned a = 0; |
| 5898 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 5899 | AI != E; ++AI) { |
| 5900 | SmallVector<MVT, 4> ValueVTs; |
| 5901 | ComputeValueVTs(TLI, AI->getType(), ValueVTs); |
| 5902 | unsigned NumValues = ValueVTs.size(); |
| 5903 | if (!AI->use_empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5904 | SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues, |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 5905 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5906 | // If this argument is live outside of the entry block, insert a copy from |
| 5907 | // whereever we got it to the vreg that other BB's will reference it as. |
| 5908 | DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI); |
| 5909 | if (VMI != FuncInfo->ValueMap.end()) { |
| 5910 | SDL->CopyValueToVirtualRegister(AI, VMI->second); |
| 5911 | } |
| 5912 | } |
| 5913 | a += NumValues; |
| 5914 | } |
| 5915 | |
| 5916 | // Finally, if the target has anything special to do, allow it to do so. |
| 5917 | // FIXME: this should insert code into the DAG! |
| 5918 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5919 | } |
| 5920 | |
| 5921 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5922 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5923 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5924 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5925 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5926 | /// the end. |
| 5927 | /// |
| 5928 | void |
| 5929 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5930 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5931 | |
| 5932 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5933 | |
| 5934 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5935 | // from this block. |
| 5936 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5937 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5938 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5939 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5940 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5941 | // If this terminator has multiple identical successors (common for |
| 5942 | // switches), only handle each succ once. |
| 5943 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5944 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5945 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5946 | PHINode *PN; |
| 5947 | |
| 5948 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5949 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5950 | // emitted yet. |
| 5951 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5952 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5953 | // Ignore dead phi's. |
| 5954 | if (PN->use_empty()) continue; |
| 5955 | |
| 5956 | unsigned Reg; |
| 5957 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5958 | |
| 5959 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5960 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5961 | if (RegOut == 0) { |
| 5962 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5963 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5964 | } |
| 5965 | Reg = RegOut; |
| 5966 | } else { |
| 5967 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5968 | if (Reg == 0) { |
| 5969 | assert(isa<AllocaInst>(PHIOp) && |
| 5970 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5971 | "Didn't codegen value into a register!??"); |
| 5972 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5973 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5974 | } |
| 5975 | } |
| 5976 | |
| 5977 | // Remember that this register needs to added to the machine PHI node as |
| 5978 | // the input for this MBB. |
| 5979 | SmallVector<MVT, 4> ValueVTs; |
| 5980 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5981 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 5982 | MVT VT = ValueVTs[vti]; |
| 5983 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
| 5984 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5985 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5986 | Reg += NumRegisters; |
| 5987 | } |
| 5988 | } |
| 5989 | } |
| 5990 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5991 | } |
| 5992 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5993 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5994 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5995 | /// creating SelectionDAG nodes. |
| 5996 | /// |
| 5997 | bool |
| 5998 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 5999 | FastISel *F) { |
| 6000 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 6001 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6002 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 6003 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 6004 | |
| 6005 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 6006 | // from this block. |
| 6007 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 6008 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 6009 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 6010 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6011 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6012 | // If this terminator has multiple identical successors (common for |
| 6013 | // switches), only handle each succ once. |
| 6014 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6015 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6016 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 6017 | PHINode *PN; |
| 6018 | |
| 6019 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 6020 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 6021 | // emitted yet. |
| 6022 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 6023 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 6024 | // Ignore dead phi's. |
| 6025 | if (PN->use_empty()) continue; |
| 6026 | |
| 6027 | // Only handle legal types. Two interesting things to note here. First, |
| 6028 | // by bailing out early, we may leave behind some dead instructions, |
| 6029 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 6030 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 6031 | // use CreateRegForValue to create registers, so it always creates |
| 6032 | // exactly one register for each non-void instruction. |
| 6033 | MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 6034 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 6035 | // Promote MVT::i1. |
| 6036 | if (VT == MVT::i1) |
| 6037 | VT = TLI.getTypeToTransformTo(VT); |
| 6038 | else { |
| 6039 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6040 | return false; |
| 6041 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6042 | } |
| 6043 | |
| 6044 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 6045 | |
| 6046 | unsigned Reg = F->getRegForValue(PHIOp); |
| 6047 | if (Reg == 0) { |
| 6048 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6049 | return false; |
| 6050 | } |
| 6051 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 6052 | } |
| 6053 | } |
| 6054 | |
| 6055 | return true; |
| 6056 | } |