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" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 48 | #include "llvm/Target/TargetOptions.h" |
| 49 | #include "llvm/Support/Compiler.h" |
Mikhail Glushenkov | 2388a58 | 2009-01-16 07:02:28 +0000 | [diff] [blame] | 50 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 51 | #include "llvm/Support/Debug.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 52 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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 | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 132 | uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(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 | } |
Dan Gohman | 5e5558b | 2009-04-23 22:50:03 +0000 | [diff] [blame] | 138 | // Interpret void as zero return values. |
| 139 | if (Ty == Type::VoidTy) |
| 140 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 141 | // Base case: we can get an MVT for this LLVM IR type. |
| 142 | ValueVTs.push_back(TLI.getValueType(Ty)); |
| 143 | if (Offsets) |
| 144 | Offsets->push_back(StartingOffset); |
| 145 | } |
| 146 | |
Dan Gohman | 2a7c671 | 2008-09-03 23:18:39 +0000 | [diff] [blame] | 147 | namespace llvm { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 148 | /// RegsForValue - This struct represents the registers (physical or virtual) |
| 149 | /// that a particular set of values is assigned, and the type information about |
| 150 | /// the value. The most common situation is to represent one value at a time, |
| 151 | /// but struct or array values are handled element-wise as multiple values. |
| 152 | /// The splitting of aggregates is performed recursively, so that we never |
| 153 | /// have aggregate-typed registers. The values at this point do not necessarily |
| 154 | /// have legal types, so each value may require one or more registers of some |
| 155 | /// legal type. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 156 | /// |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 157 | struct VISIBILITY_HIDDEN RegsForValue { |
| 158 | /// TLI - The TargetLowering object. |
| 159 | /// |
| 160 | const TargetLowering *TLI; |
| 161 | |
| 162 | /// ValueVTs - The value types of the values, which may not be legal, and |
| 163 | /// may need be promoted or synthesized from one or more registers. |
| 164 | /// |
| 165 | SmallVector<MVT, 4> ValueVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 166 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 167 | /// RegVTs - The value types of the registers. This is the same size as |
| 168 | /// ValueVTs and it records, for each value, what the type of the assigned |
| 169 | /// register or registers are. (Individual values are never synthesized |
| 170 | /// from more than one type of register.) |
| 171 | /// |
| 172 | /// With virtual registers, the contents of RegVTs is redundant with TLI's |
| 173 | /// getRegisterType member function, however when with physical registers |
| 174 | /// it is necessary to have a separate record of the types. |
| 175 | /// |
| 176 | SmallVector<MVT, 4> RegVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 177 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 178 | /// Regs - This list holds the registers assigned to the values. |
| 179 | /// Each legal or promoted value requires one register, and each |
| 180 | /// expanded value requires multiple registers. |
| 181 | /// |
| 182 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 183 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 184 | RegsForValue() : TLI(0) {} |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 185 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 186 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 187 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 188 | MVT regvt, MVT valuevt) |
| 189 | : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {} |
| 190 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 191 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 192 | const SmallVector<MVT, 4> ®vts, |
| 193 | const SmallVector<MVT, 4> &valuevts) |
| 194 | : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {} |
| 195 | RegsForValue(const TargetLowering &tli, |
| 196 | unsigned Reg, const Type *Ty) : TLI(&tli) { |
| 197 | ComputeValueVTs(tli, Ty, ValueVTs); |
| 198 | |
| 199 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 200 | MVT ValueVT = ValueVTs[Value]; |
| 201 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 202 | MVT RegisterVT = TLI->getRegisterType(ValueVT); |
| 203 | for (unsigned i = 0; i != NumRegs; ++i) |
| 204 | Regs.push_back(Reg + i); |
| 205 | RegVTs.push_back(RegisterVT); |
| 206 | Reg += NumRegs; |
| 207 | } |
| 208 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 209 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 210 | /// append - Add the specified values to this one. |
| 211 | void append(const RegsForValue &RHS) { |
| 212 | TLI = RHS.TLI; |
| 213 | ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end()); |
| 214 | RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end()); |
| 215 | Regs.append(RHS.Regs.begin(), RHS.Regs.end()); |
| 216 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 217 | |
| 218 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 219 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 220 | /// this value and returns the result as a ValueVTs value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 221 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 222 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 223 | SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 224 | SDValue &Chain, SDValue *Flag) const; |
| 225 | |
| 226 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 227 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 228 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 229 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 230 | void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 231 | SDValue &Chain, SDValue *Flag) const; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 232 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 233 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 234 | /// operand list. This adds the code marker, matching input operand index |
| 235 | /// (if applicable), and includes the number of values added into it. |
| 236 | void AddInlineAsmOperands(unsigned Code, |
| 237 | bool HasMatching, unsigned MatchingIdx, |
| 238 | SelectionDAG &DAG, std::vector<SDValue> &Ops) const; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 239 | }; |
| 240 | } |
| 241 | |
| 242 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 243 | /// 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] | 244 | /// switch or atomic instruction, which may expand to multiple basic blocks. |
| 245 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 246 | if (isa<PHINode>(I)) return true; |
| 247 | BasicBlock *BB = I->getParent(); |
| 248 | 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] | 249 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 250 | return true; |
| 251 | return false; |
| 252 | } |
| 253 | |
| 254 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
| 255 | /// entry block, return true. This includes arguments used by switches, since |
| 256 | /// the switch may expand into multiple basic blocks. |
| 257 | static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) { |
| 258 | // With FastISel active, we may be splitting blocks, so force creation |
| 259 | // of virtual registers for all non-dead arguments. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 260 | // Don't force virtual registers for byval arguments though, because |
| 261 | // fast-isel can't handle those in all cases. |
| 262 | if (EnableFastISel && !A->hasByValAttr()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 263 | return A->use_empty(); |
| 264 | |
| 265 | BasicBlock *Entry = A->getParent()->begin(); |
| 266 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
| 267 | if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) |
| 268 | return false; // Use not in entry block. |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli) |
| 273 | : TLI(tli) { |
| 274 | } |
| 275 | |
| 276 | void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf, |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 277 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 278 | bool EnableFastISel) { |
| 279 | Fn = &fn; |
| 280 | MF = &mf; |
| 281 | RegInfo = &MF->getRegInfo(); |
| 282 | |
| 283 | // Create a vreg for each argument register that is not dead and is used |
| 284 | // outside of the entry block for the function. |
| 285 | for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end(); |
| 286 | AI != E; ++AI) |
| 287 | if (!isOnlyUsedInEntryBlock(AI, EnableFastISel)) |
| 288 | InitializeRegForValue(AI); |
| 289 | |
| 290 | // Initialize the mapping of values to registers. This is only set up for |
| 291 | // instruction values that are used outside of the block that defines |
| 292 | // them. |
| 293 | Function::iterator BB = Fn->begin(), EB = Fn->end(); |
| 294 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 295 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 296 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { |
| 297 | const Type *Ty = AI->getAllocatedType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 298 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 299 | unsigned Align = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 300 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 301 | AI->getAlignment()); |
| 302 | |
| 303 | TySize *= CUI->getZExtValue(); // Get total allocated size. |
| 304 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
| 305 | StaticAllocaMap[AI] = |
| 306 | MF->getFrameInfo()->CreateStackObject(TySize, Align); |
| 307 | } |
| 308 | |
| 309 | for (; BB != EB; ++BB) |
| 310 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 311 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 312 | if (!isa<AllocaInst>(I) || |
| 313 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 314 | InitializeRegForValue(I); |
| 315 | |
| 316 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 317 | // also creates the initial PHI MachineInstrs, though none of the input |
| 318 | // operands are populated. |
| 319 | for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) { |
| 320 | MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB); |
| 321 | MBBMap[BB] = MBB; |
| 322 | MF->push_back(MBB); |
| 323 | |
| 324 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 325 | // appropriate. |
| 326 | PHINode *PN; |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 327 | DebugLoc DL; |
| 328 | for (BasicBlock::iterator |
| 329 | I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 330 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 331 | if (Function *F = CI->getCalledFunction()) { |
| 332 | switch (F->getIntrinsicID()) { |
| 333 | default: break; |
| 334 | case Intrinsic::dbg_stoppoint: { |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 335 | DbgStopPointInst *SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 336 | if (isValidDebugInfoIntrinsic(*SPI, CodeGenOpt::Default)) |
| 337 | DL = ExtractDebugLocation(*SPI, MF->getDebugLocInfo()); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 338 | break; |
| 339 | } |
| 340 | case Intrinsic::dbg_func_start: { |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 341 | DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 342 | if (isValidDebugInfoIntrinsic(*FSI, CodeGenOpt::Default)) |
| 343 | DL = ExtractDebugLocation(*FSI, MF->getDebugLocInfo()); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 344 | break; |
| 345 | } |
| 346 | } |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | PN = dyn_cast<PHINode>(I); |
| 351 | if (!PN || PN->use_empty()) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 352 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 353 | unsigned PHIReg = ValueMap[PN]; |
| 354 | assert(PHIReg && "PHI node does not have an assigned virtual register!"); |
| 355 | |
| 356 | SmallVector<MVT, 4> ValueVTs; |
| 357 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 358 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 359 | MVT VT = ValueVTs[vti]; |
| 360 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
Dan Gohman | 6448d91 | 2008-09-04 15:39:15 +0000 | [diff] [blame] | 361 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 362 | for (unsigned i = 0; i != NumRegisters; ++i) |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 363 | BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 364 | PHIReg += NumRegisters; |
| 365 | } |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | unsigned FunctionLoweringInfo::MakeReg(MVT VT) { |
| 371 | return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 372 | } |
| 373 | |
| 374 | /// CreateRegForValue - Allocate the appropriate number of virtual registers of |
| 375 | /// the correctly promoted or expanded types. Assign these registers |
| 376 | /// consecutive vreg numbers and return the first assigned number. |
| 377 | /// |
| 378 | /// In the case that the given value has struct or array type, this function |
| 379 | /// will assign registers for each member or element. |
| 380 | /// |
| 381 | unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) { |
| 382 | SmallVector<MVT, 4> ValueVTs; |
| 383 | ComputeValueVTs(TLI, V->getType(), ValueVTs); |
| 384 | |
| 385 | unsigned FirstReg = 0; |
| 386 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 387 | MVT ValueVT = ValueVTs[Value]; |
| 388 | MVT RegisterVT = TLI.getRegisterType(ValueVT); |
| 389 | |
| 390 | unsigned NumRegs = TLI.getNumRegisters(ValueVT); |
| 391 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 392 | unsigned R = MakeReg(RegisterVT); |
| 393 | if (!FirstReg) FirstReg = R; |
| 394 | } |
| 395 | } |
| 396 | return FirstReg; |
| 397 | } |
| 398 | |
| 399 | /// getCopyFromParts - Create a value that contains the specified legal parts |
| 400 | /// combined into the value they represent. If the parts combine to a type |
| 401 | /// larger then ValueVT then AssertOp can be used to specify whether the extra |
| 402 | /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT |
| 403 | /// (ISD::AssertSext). |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 404 | static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, |
| 405 | const SDValue *Parts, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 406 | unsigned NumParts, MVT PartVT, MVT ValueVT, |
| 407 | ISD::NodeType AssertOp = ISD::DELETED_NODE) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 408 | assert(NumParts > 0 && "No parts to assemble!"); |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 409 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 410 | SDValue Val = Parts[0]; |
| 411 | |
| 412 | if (NumParts > 1) { |
| 413 | // Assemble the value from multiple parts. |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 414 | if (!ValueVT.isVector() && ValueVT.isInteger()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 415 | unsigned PartBits = PartVT.getSizeInBits(); |
| 416 | unsigned ValueBits = ValueVT.getSizeInBits(); |
| 417 | |
| 418 | // Assemble the power of 2 part. |
| 419 | unsigned RoundParts = NumParts & (NumParts - 1) ? |
| 420 | 1 << Log2_32(NumParts) : NumParts; |
| 421 | unsigned RoundBits = PartBits * RoundParts; |
| 422 | MVT RoundVT = RoundBits == ValueBits ? |
| 423 | ValueVT : MVT::getIntegerVT(RoundBits); |
| 424 | SDValue Lo, Hi; |
| 425 | |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 426 | MVT HalfVT = MVT::getIntegerVT(RoundBits/2); |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 427 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 428 | if (RoundParts > 2) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 429 | Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT); |
| 430 | Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 431 | PartVT, HalfVT); |
| 432 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 433 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]); |
| 434 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 435 | } |
| 436 | if (TLI.isBigEndian()) |
| 437 | std::swap(Lo, Hi); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 438 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 439 | |
| 440 | if (RoundParts < NumParts) { |
| 441 | // Assemble the trailing non-power-of-2 part. |
| 442 | unsigned OddParts = NumParts - RoundParts; |
| 443 | MVT OddVT = MVT::getIntegerVT(OddParts * PartBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 444 | Hi = getCopyFromParts(DAG, dl, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 445 | Parts+RoundParts, OddParts, PartVT, OddVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 446 | |
| 447 | // Combine the round and odd parts. |
| 448 | Lo = Val; |
| 449 | if (TLI.isBigEndian()) |
| 450 | std::swap(Lo, Hi); |
| 451 | MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 452 | Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi); |
| 453 | Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 454 | DAG.getConstant(Lo.getValueType().getSizeInBits(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 455 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 456 | Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo); |
| 457 | Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 458 | } |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 459 | } else if (ValueVT.isVector()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 460 | // Handle a multi-element vector. |
| 461 | MVT IntermediateVT, RegisterVT; |
| 462 | unsigned NumIntermediates; |
| 463 | unsigned NumRegs = |
| 464 | TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 465 | RegisterVT); |
| 466 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 467 | NumParts = NumRegs; // Silence a compiler warning. |
| 468 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 469 | assert(RegisterVT == Parts[0].getValueType() && |
| 470 | "Part type doesn't match part!"); |
| 471 | |
| 472 | // Assemble the parts into intermediate operands. |
| 473 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 474 | if (NumIntermediates == NumParts) { |
| 475 | // If the register was not expanded, truncate or copy the value, |
| 476 | // as appropriate. |
| 477 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 478 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 479 | PartVT, IntermediateVT); |
| 480 | } else if (NumParts > 0) { |
| 481 | // If the intermediate type was expanded, build the intermediate operands |
| 482 | // from the parts. |
| 483 | assert(NumParts % NumIntermediates == 0 && |
| 484 | "Must expand into a divisible number of parts!"); |
| 485 | unsigned Factor = NumParts / NumIntermediates; |
| 486 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 487 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 488 | PartVT, IntermediateVT); |
| 489 | } |
| 490 | |
| 491 | // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate |
| 492 | // operands. |
| 493 | Val = DAG.getNode(IntermediateVT.isVector() ? |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 494 | ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 495 | ValueVT, &Ops[0], NumIntermediates); |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 496 | } else if (PartVT.isFloatingPoint()) { |
| 497 | // FP split into multiple FP parts (for ppcf128) |
| 498 | assert(ValueVT == MVT(MVT::ppcf128) && PartVT == MVT(MVT::f64) && |
| 499 | "Unexpected split"); |
| 500 | SDValue Lo, Hi; |
| 501 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[0]); |
| 502 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[1]); |
| 503 | if (TLI.isBigEndian()) |
| 504 | std::swap(Lo, Hi); |
| 505 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi); |
| 506 | } else { |
| 507 | // FP split into integer parts (soft fp) |
| 508 | assert(ValueVT.isFloatingPoint() && PartVT.isInteger() && |
| 509 | !PartVT.isVector() && "Unexpected split"); |
| 510 | MVT IntVT = MVT::getIntegerVT(ValueVT.getSizeInBits()); |
| 511 | Val = getCopyFromParts(DAG, dl, Parts, NumParts, PartVT, IntVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | |
| 515 | // There is now one part, held in Val. Correct it to match ValueVT. |
| 516 | PartVT = Val.getValueType(); |
| 517 | |
| 518 | if (PartVT == ValueVT) |
| 519 | return Val; |
| 520 | |
| 521 | if (PartVT.isVector()) { |
| 522 | assert(ValueVT.isVector() && "Unknown vector conversion!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 523 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | if (ValueVT.isVector()) { |
| 527 | assert(ValueVT.getVectorElementType() == PartVT && |
| 528 | ValueVT.getVectorNumElements() == 1 && |
| 529 | "Only trivial scalar-to-vector conversions should get here!"); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 530 | return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | if (PartVT.isInteger() && |
| 534 | ValueVT.isInteger()) { |
| 535 | if (ValueVT.bitsLT(PartVT)) { |
| 536 | // For a truncate, see if we have any information to |
| 537 | // indicate whether the truncated bits will always be |
| 538 | // zero or sign-extension. |
| 539 | if (AssertOp != ISD::DELETED_NODE) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 540 | Val = DAG.getNode(AssertOp, dl, PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 541 | DAG.getValueType(ValueVT)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 542 | return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 543 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 544 | return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 545 | } |
| 546 | } |
| 547 | |
| 548 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 549 | if (ValueVT.bitsLT(Val.getValueType())) |
| 550 | // FP_ROUND's are always exact here. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 551 | return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 552 | DAG.getIntPtrConstant(1)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 553 | return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 557 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 558 | |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 559 | llvm_unreachable("Unknown mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 560 | return SDValue(); |
| 561 | } |
| 562 | |
| 563 | /// getCopyToParts - Create a series of nodes that contain the specified value |
| 564 | /// split into legal parts. If the parts contain more bits than Val, then, for |
| 565 | /// 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] | 566 | static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val, |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 567 | SDValue *Parts, unsigned NumParts, MVT PartVT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 568 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 569 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 570 | MVT PtrVT = TLI.getPointerTy(); |
| 571 | MVT ValueVT = Val.getValueType(); |
| 572 | unsigned PartBits = PartVT.getSizeInBits(); |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 573 | unsigned OrigNumParts = NumParts; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 574 | assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!"); |
| 575 | |
| 576 | if (!NumParts) |
| 577 | return; |
| 578 | |
| 579 | if (!ValueVT.isVector()) { |
| 580 | if (PartVT == ValueVT) { |
| 581 | assert(NumParts == 1 && "No-op copy with multiple parts!"); |
| 582 | Parts[0] = Val; |
| 583 | return; |
| 584 | } |
| 585 | |
| 586 | if (NumParts * PartBits > ValueVT.getSizeInBits()) { |
| 587 | // If the parts cover more bits than the value has, promote the value. |
| 588 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 589 | assert(NumParts == 1 && "Do not know what to promote to!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 590 | Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 591 | } else if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 592 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 593 | Val = DAG.getNode(ExtendKind, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 594 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 595 | llvm_unreachable("Unknown mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 596 | } |
| 597 | } else if (PartBits == ValueVT.getSizeInBits()) { |
| 598 | // Different types of the same size. |
| 599 | assert(NumParts == 1 && PartVT != ValueVT); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 600 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 601 | } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { |
| 602 | // If the parts cover less bits than value has, truncate the value. |
| 603 | if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 604 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 605 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 606 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 607 | llvm_unreachable("Unknown mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 608 | } |
| 609 | } |
| 610 | |
| 611 | // The value may have changed - recompute ValueVT. |
| 612 | ValueVT = Val.getValueType(); |
| 613 | assert(NumParts * PartBits == ValueVT.getSizeInBits() && |
| 614 | "Failed to tile the value with PartVT!"); |
| 615 | |
| 616 | if (NumParts == 1) { |
| 617 | assert(PartVT == ValueVT && "Type conversion failed!"); |
| 618 | Parts[0] = Val; |
| 619 | return; |
| 620 | } |
| 621 | |
| 622 | // Expand the value into multiple parts. |
| 623 | if (NumParts & (NumParts - 1)) { |
| 624 | // The number of parts is not a power of 2. Split off and copy the tail. |
| 625 | assert(PartVT.isInteger() && ValueVT.isInteger() && |
| 626 | "Do not know what to expand to!"); |
| 627 | unsigned RoundParts = 1 << Log2_32(NumParts); |
| 628 | unsigned RoundBits = RoundParts * PartBits; |
| 629 | unsigned OddParts = NumParts - RoundParts; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 630 | SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 631 | DAG.getConstant(RoundBits, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 632 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 633 | getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 634 | if (TLI.isBigEndian()) |
| 635 | // The odd parts were reversed by getCopyToParts - unreverse them. |
| 636 | std::reverse(Parts + RoundParts, Parts + NumParts); |
| 637 | NumParts = RoundParts; |
| 638 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 639 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | // The number of parts is a power of 2. Repeatedly bisect the value using |
| 643 | // EXTRACT_ELEMENT. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 644 | Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 645 | MVT::getIntegerVT(ValueVT.getSizeInBits()), |
| 646 | Val); |
| 647 | for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { |
| 648 | for (unsigned i = 0; i < NumParts; i += StepSize) { |
| 649 | unsigned ThisBits = StepSize * PartBits / 2; |
| 650 | MVT ThisVT = MVT::getIntegerVT (ThisBits); |
| 651 | SDValue &Part0 = Parts[i]; |
| 652 | SDValue &Part1 = Parts[i+StepSize/2]; |
| 653 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 654 | Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 655 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 656 | DAG.getConstant(1, PtrVT)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 657 | Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 658 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 659 | DAG.getConstant(0, PtrVT)); |
| 660 | |
| 661 | if (ThisBits == PartBits && ThisVT != PartVT) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 662 | Part0 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 663 | PartVT, Part0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 664 | Part1 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 665 | PartVT, Part1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 666 | } |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | if (TLI.isBigEndian()) |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 671 | std::reverse(Parts, Parts + OrigNumParts); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 672 | |
| 673 | return; |
| 674 | } |
| 675 | |
| 676 | // Vector ValueVT. |
| 677 | if (NumParts == 1) { |
| 678 | if (PartVT != ValueVT) { |
| 679 | if (PartVT.isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 680 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 681 | } else { |
| 682 | assert(ValueVT.getVectorElementType() == PartVT && |
| 683 | ValueVT.getVectorNumElements() == 1 && |
| 684 | "Only trivial vector-to-scalar conversions should get here!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 685 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 686 | PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 687 | DAG.getConstant(0, PtrVT)); |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | Parts[0] = Val; |
| 692 | return; |
| 693 | } |
| 694 | |
| 695 | // Handle a multi-element vector. |
| 696 | MVT IntermediateVT, RegisterVT; |
| 697 | unsigned NumIntermediates; |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 698 | unsigned NumRegs = TLI |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 699 | .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 700 | RegisterVT); |
| 701 | unsigned NumElements = ValueVT.getVectorNumElements(); |
| 702 | |
| 703 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 704 | NumParts = NumRegs; // Silence a compiler warning. |
| 705 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 706 | |
| 707 | // Split the vector into intermediate operands. |
| 708 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 709 | for (unsigned i = 0; i != NumIntermediates; ++i) |
| 710 | if (IntermediateVT.isVector()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 711 | Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 712 | IntermediateVT, Val, |
| 713 | DAG.getConstant(i * (NumElements / NumIntermediates), |
| 714 | PtrVT)); |
| 715 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 716 | Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 717 | IntermediateVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 718 | DAG.getConstant(i, PtrVT)); |
| 719 | |
| 720 | // Split the intermediate operands into legal parts. |
| 721 | if (NumParts == NumIntermediates) { |
| 722 | // If the register was not expanded, promote or copy the value, |
| 723 | // as appropriate. |
| 724 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 725 | getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 726 | } else if (NumParts > 0) { |
| 727 | // If the intermediate type was expanded, split each the value into |
| 728 | // legal parts. |
| 729 | assert(NumParts % NumIntermediates == 0 && |
| 730 | "Must expand into a divisible number of parts!"); |
| 731 | unsigned Factor = NumParts / NumIntermediates; |
| 732 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 733 | getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 734 | } |
| 735 | } |
| 736 | |
| 737 | |
| 738 | void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) { |
| 739 | AA = &aa; |
| 740 | GFI = gfi; |
| 741 | TD = DAG.getTarget().getTargetData(); |
| 742 | } |
| 743 | |
| 744 | /// clear - Clear out the curret SelectionDAG and the associated |
| 745 | /// state and prepare this SelectionDAGLowering object to be used |
| 746 | /// for a new block. This doesn't clear out information about |
| 747 | /// additional blocks that are needed to complete switch lowering |
| 748 | /// or PHI node updating; that information is cleared out as it is |
| 749 | /// consumed. |
| 750 | void SelectionDAGLowering::clear() { |
| 751 | NodeMap.clear(); |
| 752 | PendingLoads.clear(); |
| 753 | PendingExports.clear(); |
| 754 | DAG.clear(); |
Bill Wendling | 8fcf170 | 2009-02-06 21:36:23 +0000 | [diff] [blame] | 755 | CurDebugLoc = DebugLoc::getUnknownLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 759 | /// flushing any PendingLoad items. This must be done before emitting |
| 760 | /// a store or any other node that may need to be ordered after any |
| 761 | /// prior load instructions. |
| 762 | /// |
| 763 | SDValue SelectionDAGLowering::getRoot() { |
| 764 | if (PendingLoads.empty()) |
| 765 | return DAG.getRoot(); |
| 766 | |
| 767 | if (PendingLoads.size() == 1) { |
| 768 | SDValue Root = PendingLoads[0]; |
| 769 | DAG.setRoot(Root); |
| 770 | PendingLoads.clear(); |
| 771 | return Root; |
| 772 | } |
| 773 | |
| 774 | // Otherwise, we have to make a token factor node. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 775 | SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 776 | &PendingLoads[0], PendingLoads.size()); |
| 777 | PendingLoads.clear(); |
| 778 | DAG.setRoot(Root); |
| 779 | return Root; |
| 780 | } |
| 781 | |
| 782 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 783 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 784 | /// to do this before emitting a terminator instruction. |
| 785 | /// |
| 786 | SDValue SelectionDAGLowering::getControlRoot() { |
| 787 | SDValue Root = DAG.getRoot(); |
| 788 | |
| 789 | if (PendingExports.empty()) |
| 790 | return Root; |
| 791 | |
| 792 | // Turn all of the CopyToReg chains into one factored node. |
| 793 | if (Root.getOpcode() != ISD::EntryToken) { |
| 794 | unsigned i = 0, e = PendingExports.size(); |
| 795 | for (; i != e; ++i) { |
| 796 | assert(PendingExports[i].getNode()->getNumOperands() > 1); |
| 797 | if (PendingExports[i].getNode()->getOperand(0) == Root) |
| 798 | break; // Don't add the root if we already indirectly depend on it. |
| 799 | } |
| 800 | |
| 801 | if (i == e) |
| 802 | PendingExports.push_back(Root); |
| 803 | } |
| 804 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 805 | Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 806 | &PendingExports[0], |
| 807 | PendingExports.size()); |
| 808 | PendingExports.clear(); |
| 809 | DAG.setRoot(Root); |
| 810 | return Root; |
| 811 | } |
| 812 | |
| 813 | void SelectionDAGLowering::visit(Instruction &I) { |
| 814 | visit(I.getOpcode(), I); |
| 815 | } |
| 816 | |
| 817 | void SelectionDAGLowering::visit(unsigned Opcode, User &I) { |
| 818 | // Note: this doesn't use InstVisitor, because it has to work with |
| 819 | // ConstantExpr's in addition to instructions. |
| 820 | switch (Opcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 821 | default: llvm_unreachable("Unknown instruction type encountered!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 822 | // Build the switch statement using the Instruction.def file. |
| 823 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 824 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 825 | #include "llvm/Instruction.def" |
| 826 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 827 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 828 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 829 | SDValue SelectionDAGLowering::getValue(const Value *V) { |
| 830 | SDValue &N = NodeMap[V]; |
| 831 | if (N.getNode()) return N; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 832 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 833 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
| 834 | MVT VT = TLI.getValueType(V->getType(), true); |
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 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 837 | return N = DAG.getConstant(*CI, VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 838 | |
| 839 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 840 | return N = DAG.getGlobalAddress(GV, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 841 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 842 | if (isa<ConstantPointerNull>(C)) |
| 843 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 844 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 845 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 846 | return N = DAG.getConstantFP(*CFP, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 847 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 848 | if (isa<UndefValue>(C) && !V->getType()->isAggregateType()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 849 | return N = DAG.getUNDEF(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 850 | |
| 851 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 852 | visit(CE->getOpcode(), *CE); |
| 853 | SDValue N1 = NodeMap[V]; |
| 854 | assert(N1.getNode() && "visit didn't populate the ValueMap!"); |
| 855 | return N1; |
| 856 | } |
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 (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { |
| 859 | SmallVector<SDValue, 4> Constants; |
| 860 | for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); |
| 861 | OI != OE; ++OI) { |
| 862 | SDNode *Val = getValue(*OI).getNode(); |
| 863 | for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) |
| 864 | Constants.push_back(SDValue(Val, i)); |
| 865 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 866 | return DAG.getMergeValues(&Constants[0], Constants.size(), |
| 867 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) { |
| 871 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 872 | "Unknown struct or array constant!"); |
| 873 | |
| 874 | SmallVector<MVT, 4> ValueVTs; |
| 875 | ComputeValueVTs(TLI, C->getType(), ValueVTs); |
| 876 | unsigned NumElts = ValueVTs.size(); |
| 877 | if (NumElts == 0) |
| 878 | return SDValue(); // empty struct |
| 879 | SmallVector<SDValue, 4> Constants(NumElts); |
| 880 | for (unsigned i = 0; i != NumElts; ++i) { |
| 881 | MVT EltVT = ValueVTs[i]; |
| 882 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 883 | Constants[i] = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 884 | else if (EltVT.isFloatingPoint()) |
| 885 | Constants[i] = DAG.getConstantFP(0, EltVT); |
| 886 | else |
| 887 | Constants[i] = DAG.getConstant(0, EltVT); |
| 888 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 889 | return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | const VectorType *VecTy = cast<VectorType>(V->getType()); |
| 893 | unsigned NumElements = VecTy->getNumElements(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 894 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 895 | // Now that we know the number and type of the elements, get that number of |
| 896 | // elements into the Ops array based on what kind of constant it is. |
| 897 | SmallVector<SDValue, 16> Ops; |
| 898 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { |
| 899 | for (unsigned i = 0; i != NumElements; ++i) |
| 900 | Ops.push_back(getValue(CP->getOperand(i))); |
| 901 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 902 | assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 903 | MVT EltVT = TLI.getValueType(VecTy->getElementType()); |
| 904 | |
| 905 | SDValue Op; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 906 | if (EltVT.isFloatingPoint()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 907 | Op = DAG.getConstantFP(0, EltVT); |
| 908 | else |
| 909 | Op = DAG.getConstant(0, EltVT); |
| 910 | Ops.assign(NumElements, Op); |
| 911 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 912 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 913 | // Create a BUILD_VECTOR node. |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 914 | return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 915 | VT, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 916 | } |
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 | // If this is a static alloca, generate it as the frameindex instead of |
| 919 | // computation. |
| 920 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 921 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 922 | FuncInfo.StaticAllocaMap.find(AI); |
| 923 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 924 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 925 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 926 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 927 | unsigned InReg = FuncInfo.ValueMap[V]; |
| 928 | assert(InReg && "Value not in map!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 929 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 930 | RegsForValue RFV(TLI, InReg, V->getType()); |
| 931 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 932 | return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | |
| 936 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
| 937 | if (I.getNumOperands() == 0) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 938 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 939 | MVT::Other, getControlRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 940 | return; |
| 941 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 942 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 943 | SmallVector<SDValue, 8> NewValues; |
| 944 | NewValues.push_back(getControlRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 945 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 946 | SmallVector<MVT, 4> ValueVTs; |
| 947 | ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 948 | unsigned NumValues = ValueVTs.size(); |
| 949 | if (NumValues == 0) continue; |
| 950 | |
| 951 | SDValue RetOp = getValue(I.getOperand(i)); |
| 952 | for (unsigned j = 0, f = NumValues; j != f; ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 953 | MVT VT = ValueVTs[j]; |
| 954 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 955 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 956 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 957 | const Function *F = I.getParent()->getParent(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 958 | if (F->paramHasAttr(0, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 959 | ExtendKind = ISD::SIGN_EXTEND; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 960 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 961 | ExtendKind = ISD::ZERO_EXTEND; |
| 962 | |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 963 | // FIXME: C calling convention requires the return type to be promoted to |
| 964 | // at least 32-bit. But this is not necessary for non-C calling |
| 965 | // conventions. The frontend should mark functions whose return values |
| 966 | // require promoting with signext or zeroext attributes. |
| 967 | if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) { |
| 968 | MVT MinVT = TLI.getRegisterType(MVT::i32); |
| 969 | if (VT.bitsLT(MinVT)) |
| 970 | VT = MinVT; |
| 971 | } |
| 972 | |
| 973 | unsigned NumParts = TLI.getNumRegisters(VT); |
| 974 | MVT PartVT = TLI.getRegisterType(VT); |
| 975 | SmallVector<SDValue, 4> Parts(NumParts); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 976 | getCopyToParts(DAG, getCurDebugLoc(), |
| 977 | SDValue(RetOp.getNode(), RetOp.getResNo() + j), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 978 | &Parts[0], NumParts, PartVT, ExtendKind); |
| 979 | |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 980 | // 'inreg' on function refers to return value |
| 981 | ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 982 | if (F->paramHasAttr(0, Attribute::InReg)) |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 983 | Flags.setInReg(); |
Anton Korobeynikov | 0692fab | 2009-07-16 13:35:48 +0000 | [diff] [blame] | 984 | |
| 985 | // Propagate extension type if any |
| 986 | if (F->paramHasAttr(0, Attribute::SExt)) |
| 987 | Flags.setSExt(); |
| 988 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
| 989 | Flags.setZExt(); |
| 990 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 991 | for (unsigned i = 0; i < NumParts; ++i) { |
| 992 | NewValues.push_back(Parts[i]); |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 993 | NewValues.push_back(DAG.getArgFlags(Flags)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 994 | } |
| 995 | } |
| 996 | } |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 997 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 998 | &NewValues[0], NewValues.size())); |
| 999 | } |
| 1000 | |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1001 | /// CopyToExportRegsIfNeeded - If the given value has virtual registers |
| 1002 | /// created for it, emit nodes to copy the value into the virtual |
| 1003 | /// registers. |
| 1004 | void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) { |
| 1005 | if (!V->use_empty()) { |
| 1006 | DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); |
| 1007 | if (VMI != FuncInfo.ValueMap.end()) |
| 1008 | CopyValueToVirtualRegister(V, VMI->second); |
| 1009 | } |
| 1010 | } |
| 1011 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1012 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1013 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1014 | /// CopyTo/FromReg. |
| 1015 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1016 | // No need to export constants. |
| 1017 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1018 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1019 | // Already exported? |
| 1020 | if (FuncInfo.isExportedInst(V)) return; |
| 1021 | |
| 1022 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1023 | CopyValueToVirtualRegister(V, Reg); |
| 1024 | } |
| 1025 | |
| 1026 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1027 | const BasicBlock *FromBB) { |
| 1028 | // The operands of the setcc have to be in this block. We don't know |
| 1029 | // how to export them from some other block. |
| 1030 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1031 | // Can export from current BB. |
| 1032 | if (VI->getParent() == FromBB) |
| 1033 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1034 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1035 | // Is already exported, noop. |
| 1036 | return FuncInfo.isExportedInst(V); |
| 1037 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1038 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1039 | // If this is an argument, we can export it if the BB is the entry block or |
| 1040 | // if it is already exported. |
| 1041 | if (isa<Argument>(V)) { |
| 1042 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1043 | return true; |
| 1044 | |
| 1045 | // Otherwise, can only export this if it is already exported. |
| 1046 | return FuncInfo.isExportedInst(V); |
| 1047 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1048 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1049 | // Otherwise, constants can always be exported. |
| 1050 | return true; |
| 1051 | } |
| 1052 | |
| 1053 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1054 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1055 | return I->getParent() == BB; |
| 1056 | return true; |
| 1057 | } |
| 1058 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1059 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1060 | /// the given LLVM IR floating-point condition code. This includes |
| 1061 | /// consideration of global floating-point math flags. |
| 1062 | /// |
| 1063 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1064 | ISD::CondCode FPC, FOC; |
| 1065 | switch (Pred) { |
| 1066 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1067 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1068 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1069 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1070 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1071 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1072 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1073 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1074 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1075 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1076 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1077 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1078 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1079 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1080 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1081 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1082 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1083 | llvm_unreachable("Invalid FCmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1084 | FOC = FPC = ISD::SETFALSE; |
| 1085 | break; |
| 1086 | } |
| 1087 | if (FiniteOnlyFPMath()) |
| 1088 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1089 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1090 | return FPC; |
| 1091 | } |
| 1092 | |
| 1093 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1094 | /// the given LLVM IR integer condition code. |
| 1095 | /// |
| 1096 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1097 | switch (Pred) { |
| 1098 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1099 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1100 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1101 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1102 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1103 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1104 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1105 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1106 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1107 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1108 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1109 | llvm_unreachable("Invalid ICmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1110 | return ISD::SETNE; |
| 1111 | } |
| 1112 | } |
| 1113 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1114 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1115 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1116 | /// AND operator tree. |
| 1117 | /// |
| 1118 | void |
| 1119 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1120 | MachineBasicBlock *TBB, |
| 1121 | MachineBasicBlock *FBB, |
| 1122 | MachineBasicBlock *CurBB) { |
| 1123 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1124 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1125 | // If the leaf of the tree is a comparison, merge the condition into |
| 1126 | // the caseblock. |
| 1127 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1128 | // The operands of the cmp have to be in this block. We don't know |
| 1129 | // how to export them from some other block. If this is the first block |
| 1130 | // of the sequence, no exporting is needed. |
| 1131 | if (CurBB == CurMBB || |
| 1132 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1133 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1134 | ISD::CondCode Condition; |
| 1135 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1136 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1137 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1138 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1139 | } else { |
| 1140 | Condition = ISD::SETEQ; // silence warning. |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1141 | llvm_unreachable("Unknown compare instruction"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1142 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1143 | |
| 1144 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1145 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1146 | SwitchCases.push_back(CB); |
| 1147 | return; |
| 1148 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | // Create a CaseBlock record representing this branch. |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame^] | 1152 | CaseBlock CB(ISD::SETEQ, Cond, DAG.getContext()->getConstantIntTrue(), |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1153 | NULL, TBB, FBB, CurBB); |
| 1154 | SwitchCases.push_back(CB); |
| 1155 | } |
| 1156 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1157 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1158 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1159 | MachineBasicBlock *TBB, |
| 1160 | MachineBasicBlock *FBB, |
| 1161 | MachineBasicBlock *CurBB, |
| 1162 | unsigned Opc) { |
| 1163 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1164 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1165 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1166 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1167 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1168 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1169 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1170 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1171 | return; |
| 1172 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1173 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1174 | // Create TmpBB after CurBB. |
| 1175 | MachineFunction::iterator BBI = CurBB; |
| 1176 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1177 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1178 | CurBB->getParent()->insert(++BBI, TmpBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1179 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1180 | if (Opc == Instruction::Or) { |
| 1181 | // Codegen X | Y as: |
| 1182 | // jmp_if_X TBB |
| 1183 | // jmp TmpBB |
| 1184 | // TmpBB: |
| 1185 | // jmp_if_Y TBB |
| 1186 | // jmp FBB |
| 1187 | // |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1188 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1189 | // Emit the LHS condition. |
| 1190 | FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1191 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1192 | // Emit the RHS condition into TmpBB. |
| 1193 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1194 | } else { |
| 1195 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1196 | // Codegen X & Y as: |
| 1197 | // jmp_if_X TmpBB |
| 1198 | // jmp FBB |
| 1199 | // TmpBB: |
| 1200 | // jmp_if_Y TBB |
| 1201 | // jmp FBB |
| 1202 | // |
| 1203 | // This requires creation of TmpBB after CurBB. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1204 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1205 | // Emit the LHS condition. |
| 1206 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1207 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1208 | // Emit the RHS condition into TmpBB. |
| 1209 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1210 | } |
| 1211 | } |
| 1212 | |
| 1213 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1214 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1215 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1216 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1217 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1218 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1219 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1220 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1221 | // will get folded into a single comparison, so don't emit two blocks. |
| 1222 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1223 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1224 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1225 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1226 | return false; |
| 1227 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1228 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1229 | return true; |
| 1230 | } |
| 1231 | |
| 1232 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1233 | // Update machine-CFG edges. |
| 1234 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1235 | |
| 1236 | // Figure out which block is immediately after the current one. |
| 1237 | MachineBasicBlock *NextBlock = 0; |
| 1238 | MachineFunction::iterator BBI = CurMBB; |
| 1239 | if (++BBI != CurMBB->getParent()->end()) |
| 1240 | NextBlock = BBI; |
| 1241 | |
| 1242 | if (I.isUnconditional()) { |
| 1243 | // Update machine-CFG edges. |
| 1244 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1245 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1246 | // If this is not a fall-through branch, emit the branch. |
| 1247 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1248 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1249 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1250 | DAG.getBasicBlock(Succ0MBB))); |
| 1251 | return; |
| 1252 | } |
| 1253 | |
| 1254 | // If this condition is one of the special cases we handle, do special stuff |
| 1255 | // now. |
| 1256 | Value *CondVal = I.getCondition(); |
| 1257 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1258 | |
| 1259 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1260 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1261 | // For example, instead of something like: |
| 1262 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1263 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1264 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1265 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1266 | // or C, F |
| 1267 | // jnz foo |
| 1268 | // Emit: |
| 1269 | // cmp A, B |
| 1270 | // je foo |
| 1271 | // cmp D, E |
| 1272 | // jle foo |
| 1273 | // |
| 1274 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1275 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1276 | (BOp->getOpcode() == Instruction::And || |
| 1277 | BOp->getOpcode() == Instruction::Or)) { |
| 1278 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1279 | // If the compares in later blocks need to use values not currently |
| 1280 | // exported from this block, export them now. This block should always |
| 1281 | // be the first entry. |
| 1282 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1283 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1284 | // Allow some cases to be rejected. |
| 1285 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1286 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1287 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1288 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1289 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1290 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1291 | // Emit the branch for this block. |
| 1292 | visitSwitchCase(SwitchCases[0]); |
| 1293 | SwitchCases.erase(SwitchCases.begin()); |
| 1294 | return; |
| 1295 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1296 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1297 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1298 | // SwitchCases. |
| 1299 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
| 1300 | CurMBB->getParent()->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1301 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1302 | SwitchCases.clear(); |
| 1303 | } |
| 1304 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1305 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1306 | // Create a CaseBlock record representing this branch. |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame^] | 1307 | CaseBlock CB(ISD::SETEQ, CondVal, DAG.getContext()->getConstantIntTrue(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1308 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1309 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1310 | // cond branch. |
| 1311 | visitSwitchCase(CB); |
| 1312 | } |
| 1313 | |
| 1314 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1315 | /// the binary search tree resulting from lowering a switch instruction. |
| 1316 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1317 | SDValue Cond; |
| 1318 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1319 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1320 | |
| 1321 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1322 | if (CB.CmpMHS == NULL) { |
| 1323 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1324 | // handle common cases produced by branch lowering. |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame^] | 1325 | if (CB.CmpRHS == DAG.getContext()->getConstantIntTrue() && |
| 1326 | CB.CC == ISD::SETEQ) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1327 | Cond = CondLHS; |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame^] | 1328 | else if (CB.CmpRHS == DAG.getContext()->getConstantIntFalse() && |
| 1329 | CB.CC == ISD::SETEQ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1330 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1331 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1332 | } else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1333 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1334 | } else { |
| 1335 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1336 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1337 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1338 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1339 | |
| 1340 | SDValue CmpOp = getValue(CB.CmpMHS); |
| 1341 | MVT VT = CmpOp.getValueType(); |
| 1342 | |
| 1343 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1344 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1345 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1346 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1347 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1348 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1349 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1350 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1351 | } |
| 1352 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1353 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1354 | // Update successor info |
| 1355 | CurMBB->addSuccessor(CB.TrueBB); |
| 1356 | CurMBB->addSuccessor(CB.FalseBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1357 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1358 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1359 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1360 | MachineBasicBlock *NextBlock = 0; |
| 1361 | MachineFunction::iterator BBI = CurMBB; |
| 1362 | if (++BBI != CurMBB->getParent()->end()) |
| 1363 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1364 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1365 | // If the lhs block is the next block, invert the condition so that we can |
| 1366 | // fall through to the lhs instead of the rhs block. |
| 1367 | if (CB.TrueBB == NextBlock) { |
| 1368 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1369 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1370 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1371 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1372 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1373 | MVT::Other, getControlRoot(), Cond, |
| 1374 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1375 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1376 | // If the branch was constant folded, fix up the CFG. |
| 1377 | if (BrCond.getOpcode() == ISD::BR) { |
| 1378 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1379 | DAG.setRoot(BrCond); |
| 1380 | } else { |
| 1381 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1382 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1383 | CurMBB->removeSuccessor(CB.TrueBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1384 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1385 | if (CB.FalseBB == NextBlock) |
| 1386 | DAG.setRoot(BrCond); |
| 1387 | else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1388 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1389 | DAG.getBasicBlock(CB.FalseBB))); |
| 1390 | } |
| 1391 | } |
| 1392 | |
| 1393 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1394 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1395 | // Emit the code for the jump table |
| 1396 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
| 1397 | MVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1398 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1399 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1400 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1401 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1402 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1403 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1404 | } |
| 1405 | |
| 1406 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1407 | /// in the JumpTable from switch case. |
| 1408 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1409 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1410 | // Subtract the lowest switch case value from the value being switched on and |
| 1411 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1412 | // difference between smallest and largest cases. |
| 1413 | SDValue SwitchOp = getValue(JTH.SValue); |
| 1414 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1415 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1416 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1417 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1418 | // The SDNode we just created, which holds the value being switched on minus |
| 1419 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1420 | // can be used as an index into the jump table in a subsequent basic block. |
| 1421 | // This value may be smaller or larger than the target's pointer type, and |
| 1422 | // therefore require extension or truncating. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1423 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1424 | SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1425 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1426 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1427 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1428 | TLI.getPointerTy(), SUB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1429 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1430 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1431 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1432 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1433 | JT.Reg = JumpTableReg; |
| 1434 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1435 | // Emit the range check for the jump table, and branch to the default block |
| 1436 | // for the switch statement if the value being switched on exceeds the largest |
| 1437 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1438 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1439 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1440 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1441 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1442 | |
| 1443 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1444 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1445 | MachineBasicBlock *NextBlock = 0; |
| 1446 | MachineFunction::iterator BBI = CurMBB; |
| 1447 | if (++BBI != CurMBB->getParent()->end()) |
| 1448 | NextBlock = BBI; |
| 1449 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1450 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1451 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1452 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1453 | |
| 1454 | if (JT.MBB == NextBlock) |
| 1455 | DAG.setRoot(BrCond); |
| 1456 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1457 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1458 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1459 | } |
| 1460 | |
| 1461 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1462 | /// suitable for "bit tests" |
| 1463 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1464 | // Subtract the minimum value |
| 1465 | SDValue SwitchOp = getValue(B.SValue); |
| 1466 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1467 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1468 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1469 | |
| 1470 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1471 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1472 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1473 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1474 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1475 | |
| 1476 | SDValue ShiftOp; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1477 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1478 | ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1479 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1480 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1481 | ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1482 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1483 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1484 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1485 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1486 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1487 | |
| 1488 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1489 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1490 | MachineBasicBlock *NextBlock = 0; |
| 1491 | MachineFunction::iterator BBI = CurMBB; |
| 1492 | if (++BBI != CurMBB->getParent()->end()) |
| 1493 | NextBlock = BBI; |
| 1494 | |
| 1495 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1496 | |
| 1497 | CurMBB->addSuccessor(B.Default); |
| 1498 | CurMBB->addSuccessor(MBB); |
| 1499 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1500 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1501 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1502 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1503 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1504 | if (MBB == NextBlock) |
| 1505 | DAG.setRoot(BrRange); |
| 1506 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1507 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1508 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1509 | } |
| 1510 | |
| 1511 | /// visitBitTestCase - this function produces one "bit test" |
| 1512 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1513 | unsigned Reg, |
| 1514 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1515 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1516 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1517 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1518 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1519 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1520 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1521 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1522 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1523 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1524 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1525 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1526 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1527 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1528 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1529 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1530 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1531 | |
| 1532 | CurMBB->addSuccessor(B.TargetBB); |
| 1533 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1534 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1535 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1536 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1537 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1538 | |
| 1539 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1540 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1541 | MachineBasicBlock *NextBlock = 0; |
| 1542 | MachineFunction::iterator BBI = CurMBB; |
| 1543 | if (++BBI != CurMBB->getParent()->end()) |
| 1544 | NextBlock = BBI; |
| 1545 | |
| 1546 | if (NextMBB == NextBlock) |
| 1547 | DAG.setRoot(BrAnd); |
| 1548 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1549 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1550 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1554 | // Retrieve successors. |
| 1555 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1556 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1557 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1558 | const Value *Callee(I.getCalledValue()); |
| 1559 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1560 | visitInlineAsm(&I); |
| 1561 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1562 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1563 | |
| 1564 | // If the value of the invoke is used outside of its defining block, make it |
| 1565 | // available as a virtual register. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1566 | CopyToExportRegsIfNeeded(&I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1567 | |
| 1568 | // Update successor info |
| 1569 | CurMBB->addSuccessor(Return); |
| 1570 | CurMBB->addSuccessor(LandingPad); |
| 1571 | |
| 1572 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1573 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1574 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1575 | DAG.getBasicBlock(Return))); |
| 1576 | } |
| 1577 | |
| 1578 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1579 | } |
| 1580 | |
| 1581 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1582 | /// small case ranges). |
| 1583 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1584 | CaseRecVector& WorkList, |
| 1585 | Value* SV, |
| 1586 | MachineBasicBlock* Default) { |
| 1587 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1588 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1589 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1590 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1591 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1592 | return false; |
| 1593 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1594 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1595 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1596 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1597 | |
| 1598 | // Figure out which block is immediately after the current one. |
| 1599 | MachineBasicBlock *NextBlock = 0; |
| 1600 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1601 | |
| 1602 | if (++BBI != CurMBB->getParent()->end()) |
| 1603 | NextBlock = BBI; |
| 1604 | |
| 1605 | // TODO: If any two of the cases has the same destination, and if one value |
| 1606 | // is the same as the other, but has one bit unset that the other has set, |
| 1607 | // use bit manipulation to do two compares at once. For example: |
| 1608 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1609 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1610 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1611 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1612 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1613 | // branches in this order. See if rearranging a case value would help. |
| 1614 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1615 | if (I->BB == NextBlock) { |
| 1616 | std::swap(*I, BackCase); |
| 1617 | break; |
| 1618 | } |
| 1619 | } |
| 1620 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1621 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1622 | // Create a CaseBlock record representing a conditional branch to |
| 1623 | // the Case's target mbb if the value being switched on SV is equal |
| 1624 | // to C. |
| 1625 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1626 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1627 | MachineBasicBlock *FallThrough; |
| 1628 | if (I != E-1) { |
| 1629 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1630 | CurMF->insert(BBI, FallThrough); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1631 | |
| 1632 | // Put SV in a virtual register to make it available from the new blocks. |
| 1633 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1634 | } else { |
| 1635 | // If the last case doesn't match, go to the default block. |
| 1636 | FallThrough = Default; |
| 1637 | } |
| 1638 | |
| 1639 | Value *RHS, *LHS, *MHS; |
| 1640 | ISD::CondCode CC; |
| 1641 | if (I->High == I->Low) { |
| 1642 | // This is just small small case range :) containing exactly 1 case |
| 1643 | CC = ISD::SETEQ; |
| 1644 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1645 | } else { |
| 1646 | CC = ISD::SETLE; |
| 1647 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1648 | } |
| 1649 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1650 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1651 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1652 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1653 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1654 | // before the next MBB. |
| 1655 | if (CurBlock == CurMBB) |
| 1656 | visitSwitchCase(CB); |
| 1657 | else |
| 1658 | SwitchCases.push_back(CB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1659 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1660 | CurBlock = FallThrough; |
| 1661 | } |
| 1662 | |
| 1663 | return true; |
| 1664 | } |
| 1665 | |
| 1666 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1667 | return !DisableJumpTables && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 1668 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1669 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1670 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1671 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1672 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1673 | APInt LastExt(Last), FirstExt(First); |
| 1674 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1675 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1676 | return (LastExt - FirstExt + 1ULL); |
| 1677 | } |
| 1678 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1679 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1680 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1681 | CaseRecVector& WorkList, |
| 1682 | Value* SV, |
| 1683 | MachineBasicBlock* Default) { |
| 1684 | Case& FrontCase = *CR.Range.first; |
| 1685 | Case& BackCase = *(CR.Range.second-1); |
| 1686 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1687 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1688 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1689 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1690 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1691 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1692 | I!=E; ++I) |
| 1693 | TSize += I->size(); |
| 1694 | |
| 1695 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1696 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1697 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1698 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1699 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1700 | if (Density < 0.4) |
| 1701 | return false; |
| 1702 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1703 | DEBUG(errs() << "Lowering jump table\n" |
| 1704 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1705 | << "Range: " << Range |
| 1706 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1707 | |
| 1708 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1709 | // inserting any additional MBBs necessary to represent the switch. |
| 1710 | MachineFunction *CurMF = CurMBB->getParent(); |
| 1711 | |
| 1712 | // Figure out which block is immediately after the current one. |
| 1713 | MachineBasicBlock *NextBlock = 0; |
| 1714 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1715 | |
| 1716 | if (++BBI != CurMBB->getParent()->end()) |
| 1717 | NextBlock = BBI; |
| 1718 | |
| 1719 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1720 | |
| 1721 | // Create a new basic block to hold the code for loading the address |
| 1722 | // of the jump table, and jumping to it. Update successor information; |
| 1723 | // we will either branch to the default case for the switch, or the jump |
| 1724 | // table. |
| 1725 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1726 | CurMF->insert(BBI, JumpTableBB); |
| 1727 | CR.CaseBB->addSuccessor(Default); |
| 1728 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1729 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1730 | // Build a vector of destination BBs, corresponding to each target |
| 1731 | // of the jump table. If the value of the jump table slot corresponds to |
| 1732 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1733 | // the default BB. |
| 1734 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1735 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1736 | 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] | 1737 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1738 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1739 | |
| 1740 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1741 | DestBBs.push_back(I->BB); |
| 1742 | if (TEI==High) |
| 1743 | ++I; |
| 1744 | } else { |
| 1745 | DestBBs.push_back(Default); |
| 1746 | } |
| 1747 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1748 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1749 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1750 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1751 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1752 | E = DestBBs.end(); I != E; ++I) { |
| 1753 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1754 | SuccsHandled[(*I)->getNumber()] = true; |
| 1755 | JumpTableBB->addSuccessor(*I); |
| 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 | // Create a jump table index for this jump table, or return an existing |
| 1760 | // one. |
| 1761 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1762 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1763 | // Set the jump table information so that we can codegen it as a second |
| 1764 | // MachineBasicBlock |
| 1765 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1766 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1767 | if (CR.CaseBB == CurMBB) |
| 1768 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1769 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1770 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1771 | |
| 1772 | return true; |
| 1773 | } |
| 1774 | |
| 1775 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1776 | /// 2 subtrees. |
| 1777 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1778 | CaseRecVector& WorkList, |
| 1779 | Value* SV, |
| 1780 | MachineBasicBlock* Default) { |
| 1781 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1782 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1783 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1784 | |
| 1785 | // Figure out which block is immediately after the current one. |
| 1786 | MachineBasicBlock *NextBlock = 0; |
| 1787 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1788 | |
| 1789 | if (++BBI != CurMBB->getParent()->end()) |
| 1790 | NextBlock = BBI; |
| 1791 | |
| 1792 | Case& FrontCase = *CR.Range.first; |
| 1793 | Case& BackCase = *(CR.Range.second-1); |
| 1794 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1795 | |
| 1796 | // Size is the number of Cases represented by this range. |
| 1797 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1798 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1799 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1800 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1801 | double FMetric = 0; |
| 1802 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1803 | |
| 1804 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1805 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1806 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1807 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1808 | I!=E; ++I) |
| 1809 | TSize += I->size(); |
| 1810 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1811 | size_t LSize = FrontCase.size(); |
| 1812 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1813 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1814 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1815 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1816 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1817 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1818 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1819 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1820 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1821 | assert((Range - 2ULL).isNonNegative() && |
| 1822 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1823 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1824 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1825 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1826 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1827 | DEBUG(errs() <<"=>Step\n" |
| 1828 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1829 | << "LDensity: " << LDensity |
| 1830 | << ", RDensity: " << RDensity << '\n' |
| 1831 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1832 | if (FMetric < Metric) { |
| 1833 | Pivot = J; |
| 1834 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1835 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1836 | } |
| 1837 | |
| 1838 | LSize += J->size(); |
| 1839 | RSize -= J->size(); |
| 1840 | } |
| 1841 | if (areJTsAllowed(TLI)) { |
| 1842 | // If our case is dense we *really* should handle it earlier! |
| 1843 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1844 | } else { |
| 1845 | Pivot = CR.Range.first + Size/2; |
| 1846 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1847 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1848 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1849 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1850 | Constant *C = Pivot->Low; |
| 1851 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1852 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1853 | // 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] | 1854 | // 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] | 1855 | // 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] | 1856 | // 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] | 1857 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1858 | // rather than creating a leaf node for it. |
| 1859 | if ((LHSR.second - LHSR.first) == 1 && |
| 1860 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1861 | cast<ConstantInt>(C)->getValue() == |
| 1862 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1863 | TrueBB = LHSR.first->BB; |
| 1864 | } else { |
| 1865 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1866 | CurMF->insert(BBI, TrueBB); |
| 1867 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1868 | |
| 1869 | // Put SV in a virtual register to make it available from the new blocks. |
| 1870 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1871 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1872 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1873 | // Similar to the optimization above, if the Value being switched on is |
| 1874 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1875 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1876 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1877 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1878 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1879 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1880 | FalseBB = RHSR.first->BB; |
| 1881 | } else { |
| 1882 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1883 | CurMF->insert(BBI, FalseBB); |
| 1884 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1885 | |
| 1886 | // Put SV in a virtual register to make it available from the new blocks. |
| 1887 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1888 | } |
| 1889 | |
| 1890 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1891 | // 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] | 1892 | // Otherwise, branch to LHS. |
| 1893 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1894 | |
| 1895 | if (CR.CaseBB == CurMBB) |
| 1896 | visitSwitchCase(CB); |
| 1897 | else |
| 1898 | SwitchCases.push_back(CB); |
| 1899 | |
| 1900 | return true; |
| 1901 | } |
| 1902 | |
| 1903 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1904 | /// range span less, than machine word bitwidth, encode case range into series |
| 1905 | /// of masks and emit bit tests with these masks. |
| 1906 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1907 | CaseRecVector& WorkList, |
| 1908 | Value* SV, |
| 1909 | MachineBasicBlock* Default){ |
| 1910 | unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits(); |
| 1911 | |
| 1912 | Case& FrontCase = *CR.Range.first; |
| 1913 | Case& BackCase = *(CR.Range.second-1); |
| 1914 | |
| 1915 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1916 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1917 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1918 | |
Anton Korobeynikov | d34167a | 2009-05-08 18:51:34 +0000 | [diff] [blame] | 1919 | // If target does not have legal shift left, do not emit bit tests at all. |
| 1920 | if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy())) |
| 1921 | return false; |
| 1922 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1923 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1924 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1925 | I!=E; ++I) { |
| 1926 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1927 | numCmps += (I->Low == I->High ? 1 : 2); |
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 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1930 | // Count unique destinations |
| 1931 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1932 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1933 | Dests.insert(I->BB); |
| 1934 | if (Dests.size() > 3) |
| 1935 | // Don't bother the code below, if there are too much unique destinations |
| 1936 | return false; |
| 1937 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1938 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1939 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1940 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1941 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1942 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1943 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1944 | APInt cmpRange = maxValue - minValue; |
| 1945 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1946 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1947 | << "Low bound: " << minValue << '\n' |
| 1948 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1949 | |
| 1950 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1951 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1952 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1953 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1954 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1955 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1956 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1957 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1958 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1959 | // Optimize the case where all the case values fit in a |
| 1960 | // word without having to subtract minValue. In this case, |
| 1961 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1962 | if (minValue.isNonNegative() && |
| 1963 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1964 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1965 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1966 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1967 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1968 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1969 | CaseBitsVector CasesBits; |
| 1970 | unsigned i, count = 0; |
| 1971 | |
| 1972 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1973 | MachineBasicBlock* Dest = I->BB; |
| 1974 | for (i = 0; i < count; ++i) |
| 1975 | if (Dest == CasesBits[i].BB) |
| 1976 | break; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1977 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1978 | if (i == count) { |
| 1979 | assert((count < 3) && "Too much destinations to test!"); |
| 1980 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1981 | count++; |
| 1982 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1983 | |
| 1984 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1985 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1986 | |
| 1987 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 1988 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 1989 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1990 | for (uint64_t j = lo; j <= hi; j++) { |
| 1991 | CasesBits[i].Mask |= 1ULL << j; |
| 1992 | CasesBits[i].Bits++; |
| 1993 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1994 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1995 | } |
| 1996 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1997 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1998 | BitTestInfo BTC; |
| 1999 | |
| 2000 | // Figure out which block is immediately after the current one. |
| 2001 | MachineFunction::iterator BBI = CR.CaseBB; |
| 2002 | ++BBI; |
| 2003 | |
| 2004 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 2005 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2006 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2007 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2008 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2009 | << ", Bits: " << CasesBits[i].Bits |
| 2010 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2011 | |
| 2012 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2013 | CurMF->insert(BBI, CaseBB); |
| 2014 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2015 | CaseBB, |
| 2016 | CasesBits[i].BB)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 2017 | |
| 2018 | // Put SV in a virtual register to make it available from the new blocks. |
| 2019 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2020 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2021 | |
| 2022 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2023 | -1U, (CR.CaseBB == CurMBB), |
| 2024 | CR.CaseBB, Default, BTC); |
| 2025 | |
| 2026 | if (CR.CaseBB == CurMBB) |
| 2027 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2028 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2029 | BitTestCases.push_back(BTB); |
| 2030 | |
| 2031 | return true; |
| 2032 | } |
| 2033 | |
| 2034 | |
| 2035 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2036 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2037 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2038 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2039 | |
| 2040 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2041 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2042 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2043 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2044 | SI.getSuccessorValue(i), |
| 2045 | SMBB)); |
| 2046 | } |
| 2047 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2048 | |
| 2049 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2050 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2051 | // Must recompute end() each iteration because it may be |
| 2052 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2053 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2054 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2055 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2056 | MachineBasicBlock* nextBB = J->BB; |
| 2057 | MachineBasicBlock* currentBB = I->BB; |
| 2058 | |
| 2059 | // If the two neighboring cases go to the same destination, merge them |
| 2060 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2061 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2062 | I->High = J->High; |
| 2063 | J = Cases.erase(J); |
| 2064 | } else { |
| 2065 | I = J++; |
| 2066 | } |
| 2067 | } |
| 2068 | |
| 2069 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2070 | if (I->Low != I->High) |
| 2071 | // A range counts double, since it requires two compares. |
| 2072 | ++numCmps; |
| 2073 | } |
| 2074 | |
| 2075 | return numCmps; |
| 2076 | } |
| 2077 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2078 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2079 | // Figure out which block is immediately after the current one. |
| 2080 | MachineBasicBlock *NextBlock = 0; |
| 2081 | MachineFunction::iterator BBI = CurMBB; |
| 2082 | |
| 2083 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2084 | |
| 2085 | // If there is only the default destination, branch to it if it is not the |
| 2086 | // next basic block. Otherwise, just fall through. |
| 2087 | if (SI.getNumOperands() == 2) { |
| 2088 | // Update machine-CFG edges. |
| 2089 | |
| 2090 | // If this is not a fall-through branch, emit the branch. |
| 2091 | CurMBB->addSuccessor(Default); |
| 2092 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2093 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2094 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2095 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2096 | return; |
| 2097 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2098 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2099 | // If there are any non-default case statements, create a vector of Cases |
| 2100 | // representing each one, and sort the vector so that we can efficiently |
| 2101 | // create a binary search tree from them. |
| 2102 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2103 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2104 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2105 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2106 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2107 | |
| 2108 | // Get the Value to be switched on and default basic blocks, which will be |
| 2109 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2110 | // search tree. |
| 2111 | Value *SV = SI.getOperand(0); |
| 2112 | |
| 2113 | // Push the initial CaseRec onto the worklist |
| 2114 | CaseRecVector WorkList; |
| 2115 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2116 | |
| 2117 | while (!WorkList.empty()) { |
| 2118 | // Grab a record representing a case range to process off the worklist |
| 2119 | CaseRec CR = WorkList.back(); |
| 2120 | WorkList.pop_back(); |
| 2121 | |
| 2122 | if (handleBitTestsSwitchCase(CR, WorkList, SV, Default)) |
| 2123 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2124 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2125 | // If the range has few cases (two or less) emit a series of specific |
| 2126 | // tests. |
| 2127 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2128 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2129 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2130 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2131 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2132 | // lowering the switch to a binary tree of conditional branches. |
| 2133 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2134 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2135 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2136 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2137 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2138 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2139 | } |
| 2140 | } |
| 2141 | |
| 2142 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2143 | void SelectionDAGLowering::visitFSub(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2144 | // -0.0 - X --> fneg |
| 2145 | const Type *Ty = I.getType(); |
| 2146 | if (isa<VectorType>(Ty)) { |
| 2147 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2148 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2149 | const Type *ElTy = DestTy->getElementType(); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2150 | unsigned VL = DestTy->getNumElements(); |
Owen Anderson | 914e50c | 2009-07-16 19:05:41 +0000 | [diff] [blame] | 2151 | std::vector<Constant*> NZ(VL, |
| 2152 | DAG.getContext()->getConstantFPNegativeZero(ElTy)); |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 2153 | Constant *CNZ = DAG.getContext()->getConstantVector(&NZ[0], NZ.size()); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2154 | if (CV == CNZ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2155 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2156 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2157 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2158 | return; |
| 2159 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2160 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2161 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2162 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
Owen Anderson | 0a5372e | 2009-07-13 04:09:18 +0000 | [diff] [blame] | 2163 | if (CFP->isExactlyValue( |
Owen Anderson | 914e50c | 2009-07-16 19:05:41 +0000 | [diff] [blame] | 2164 | DAG.getContext()->getConstantFPNegativeZero(Ty)->getValueAPF())) { |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2165 | SDValue Op2 = getValue(I.getOperand(1)); |
| 2166 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
| 2167 | Op2.getValueType(), Op2)); |
| 2168 | return; |
| 2169 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2170 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2171 | visitBinary(I, ISD::FSUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) { |
| 2175 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2176 | SDValue Op2 = getValue(I.getOperand(1)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2177 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2178 | setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2179 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2180 | } |
| 2181 | |
| 2182 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 2183 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2184 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2185 | if (!isa<VectorType>(I.getType()) && |
| 2186 | Op2.getValueType() != TLI.getShiftAmountTy()) { |
| 2187 | // If the operand is smaller than the shift count type, promote it. |
| 2188 | if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType())) |
| 2189 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
| 2190 | TLI.getShiftAmountTy(), Op2); |
| 2191 | // If the operand is larger than the shift count type but the shift |
| 2192 | // count type has enough bits to represent any shift value, truncate |
| 2193 | // it now. This is a common case and it exposes the truncate to |
| 2194 | // optimization early. |
| 2195 | else if (TLI.getShiftAmountTy().getSizeInBits() >= |
| 2196 | Log2_32_Ceil(Op2.getValueType().getSizeInBits())) |
| 2197 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2198 | TLI.getShiftAmountTy(), Op2); |
| 2199 | // Otherwise we'll need to temporarily settle for some other |
| 2200 | // convenient type; type legalization will make adjustments as |
| 2201 | // needed. |
| 2202 | else if (TLI.getPointerTy().bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2203 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2204 | TLI.getPointerTy(), Op2); |
| 2205 | else if (TLI.getPointerTy().bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2206 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2207 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2208 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2209 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2210 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2211 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2212 | } |
| 2213 | |
| 2214 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2215 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2216 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2217 | predicate = IC->getPredicate(); |
| 2218 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2219 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2220 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2221 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2222 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2223 | |
| 2224 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2225 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2226 | } |
| 2227 | |
| 2228 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2229 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2230 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2231 | predicate = FC->getPredicate(); |
| 2232 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2233 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2234 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2235 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2236 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2237 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2238 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2239 | } |
| 2240 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2241 | void SelectionDAGLowering::visitSelect(User &I) { |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2242 | SmallVector<MVT, 4> ValueVTs; |
| 2243 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2244 | unsigned NumValues = ValueVTs.size(); |
| 2245 | if (NumValues != 0) { |
| 2246 | SmallVector<SDValue, 4> Values(NumValues); |
| 2247 | SDValue Cond = getValue(I.getOperand(0)); |
| 2248 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2249 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2250 | |
| 2251 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2252 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2253 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2254 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2255 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2256 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2257 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2258 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2259 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2260 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | |
| 2264 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2265 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2266 | SDValue N = getValue(I.getOperand(0)); |
| 2267 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2268 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2269 | } |
| 2270 | |
| 2271 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2272 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2273 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2274 | SDValue N = getValue(I.getOperand(0)); |
| 2275 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2276 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2277 | } |
| 2278 | |
| 2279 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2280 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2281 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2282 | SDValue N = getValue(I.getOperand(0)); |
| 2283 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2284 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2285 | } |
| 2286 | |
| 2287 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2288 | // FPTrunc is never a no-op cast, no need to check |
| 2289 | SDValue N = getValue(I.getOperand(0)); |
| 2290 | MVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2291 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2292 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2295 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2296 | // FPTrunc is never a no-op cast, no need to check |
| 2297 | SDValue N = getValue(I.getOperand(0)); |
| 2298 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2299 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2300 | } |
| 2301 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2302 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2303 | // FPToUI is never a no-op cast, no need to check |
| 2304 | SDValue N = getValue(I.getOperand(0)); |
| 2305 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2306 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2307 | } |
| 2308 | |
| 2309 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2310 | // FPToSI is never a no-op cast, no need to check |
| 2311 | SDValue N = getValue(I.getOperand(0)); |
| 2312 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2313 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2314 | } |
| 2315 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2316 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2317 | // UIToFP is never a no-op cast, no need to check |
| 2318 | SDValue N = getValue(I.getOperand(0)); |
| 2319 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2320 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2321 | } |
| 2322 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2323 | void SelectionDAGLowering::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2324 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2325 | SDValue N = getValue(I.getOperand(0)); |
| 2326 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2327 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2328 | } |
| 2329 | |
| 2330 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2331 | // What to do depends on the size of the integer and the size of the pointer. |
| 2332 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2333 | SDValue N = getValue(I.getOperand(0)); |
| 2334 | MVT SrcVT = N.getValueType(); |
| 2335 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2336 | SDValue Result; |
| 2337 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2338 | Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2339 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2340 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2341 | Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2342 | setValue(&I, Result); |
| 2343 | } |
| 2344 | |
| 2345 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2346 | // What to do depends on the size of the integer and the size of the pointer. |
| 2347 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2348 | SDValue N = getValue(I.getOperand(0)); |
| 2349 | MVT SrcVT = N.getValueType(); |
| 2350 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2351 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2352 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2353 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2354 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2355 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2356 | DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2357 | } |
| 2358 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2359 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2360 | SDValue N = getValue(I.getOperand(0)); |
| 2361 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2362 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2363 | // 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] | 2364 | // is either a BIT_CONVERT or a no-op. |
| 2365 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2366 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2367 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2368 | else |
| 2369 | setValue(&I, N); // noop cast. |
| 2370 | } |
| 2371 | |
| 2372 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2373 | SDValue InVec = getValue(I.getOperand(0)); |
| 2374 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2375 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2376 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2377 | getValue(I.getOperand(2))); |
| 2378 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2379 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2380 | TLI.getValueType(I.getType()), |
| 2381 | InVec, InVal, InIdx)); |
| 2382 | } |
| 2383 | |
| 2384 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2385 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2386 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2387 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2388 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2389 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2390 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2391 | } |
| 2392 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2393 | |
| 2394 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2395 | // from SIndx and increasing to the element length (undefs are allowed). |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2396 | static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) { |
| 2397 | unsigned MaskNumElts = Mask.size(); |
| 2398 | for (unsigned i = 0; i != MaskNumElts; ++i) |
| 2399 | if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx))) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2400 | return false; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2401 | return true; |
| 2402 | } |
| 2403 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2404 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2405 | SmallVector<int, 8> Mask; |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2406 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2407 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2408 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2409 | // Convert the ConstantVector mask operand into an array of ints, with -1 |
| 2410 | // representing undef values. |
| 2411 | SmallVector<Constant*, 8> MaskElts; |
Owen Anderson | 001dbfe | 2009-07-16 18:04:31 +0000 | [diff] [blame] | 2412 | cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(), |
| 2413 | MaskElts); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2414 | unsigned MaskNumElts = MaskElts.size(); |
| 2415 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2416 | if (isa<UndefValue>(MaskElts[i])) |
| 2417 | Mask.push_back(-1); |
| 2418 | else |
| 2419 | Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue()); |
| 2420 | } |
| 2421 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2422 | MVT VT = TLI.getValueType(I.getType()); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2423 | MVT SrcVT = Src1.getValueType(); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2424 | unsigned SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2425 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2426 | if (SrcNumElts == MaskNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2427 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2428 | &Mask[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2429 | return; |
| 2430 | } |
| 2431 | |
| 2432 | // 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] | 2433 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2434 | // Mask is longer than the source vectors and is a multiple of the source |
| 2435 | // 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] | 2436 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2437 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2438 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2439 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2440 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2441 | return; |
| 2442 | } |
| 2443 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2444 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2445 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2446 | bool Src1U = Src1.getOpcode() == ISD::UNDEF; |
| 2447 | bool Src2U = Src2.getOpcode() == ISD::UNDEF; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2448 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2449 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2450 | SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); |
| 2451 | SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2452 | MOps1[0] = Src1; |
| 2453 | MOps2[0] = Src2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2454 | |
| 2455 | Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2456 | getCurDebugLoc(), VT, |
| 2457 | &MOps1[0], NumConcat); |
| 2458 | Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2459 | getCurDebugLoc(), VT, |
| 2460 | &MOps2[0], NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2461 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2462 | // Readjust mask for new input vector length. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2463 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2464 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2465 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2466 | if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2467 | MappedOps.push_back(Idx); |
| 2468 | else |
| 2469 | MappedOps.push_back(Idx + MaskNumElts - SrcNumElts); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2470 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2471 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2472 | &MappedOps[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2473 | return; |
| 2474 | } |
| 2475 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2476 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2477 | // Analyze the access pattern of the vector to see if we can extract |
| 2478 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2479 | // the range of elements the mask access on both vectors. |
| 2480 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2481 | int MaxRange[2] = {-1, -1}; |
| 2482 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2483 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2484 | int Idx = Mask[i]; |
| 2485 | int Input = 0; |
| 2486 | if (Idx < 0) |
| 2487 | continue; |
| 2488 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2489 | if (Idx >= (int)SrcNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2490 | Input = 1; |
| 2491 | Idx -= SrcNumElts; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2492 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2493 | if (Idx > MaxRange[Input]) |
| 2494 | MaxRange[Input] = Idx; |
| 2495 | if (Idx < MinRange[Input]) |
| 2496 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2497 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2498 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2499 | // Check if the access is smaller than the vector size and can we find |
| 2500 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2501 | 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] | 2502 | int StartIdx[2]; // StartIdx to extract from |
| 2503 | for (int Input=0; Input < 2; ++Input) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2504 | if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2505 | RangeUse[Input] = 0; // Unused |
| 2506 | StartIdx[Input] = 0; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2507 | } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2508 | // 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] | 2509 | // start index that is a multiple of the mask length. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2510 | if (MaxRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2511 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2512 | StartIdx[Input] = 0; |
| 2513 | } else { |
| 2514 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2515 | if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2516 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2517 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2518 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2519 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2520 | } |
| 2521 | |
| 2522 | if (RangeUse[0] == 0 && RangeUse[0] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2523 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2524 | return; |
| 2525 | } |
| 2526 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2527 | // Extract appropriate subvector and generate a vector shuffle |
| 2528 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2529 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2530 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2531 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2532 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2533 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2534 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2535 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2536 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2537 | // Calculate new mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2538 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2539 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2540 | int Idx = Mask[i]; |
| 2541 | if (Idx < 0) |
| 2542 | MappedOps.push_back(Idx); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2543 | else if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2544 | MappedOps.push_back(Idx - StartIdx[0]); |
| 2545 | else |
| 2546 | MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2547 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2548 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2549 | &MappedOps[0])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2550 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2551 | } |
| 2552 | } |
| 2553 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2554 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2555 | // replacing the shuffle with extract and build vector. |
| 2556 | // to insert and build vector. |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2557 | MVT EltVT = VT.getVectorElementType(); |
| 2558 | MVT PtrVT = TLI.getPointerTy(); |
| 2559 | SmallVector<SDValue,8> Ops; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2560 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2561 | if (Mask[i] < 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2562 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2563 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2564 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2565 | if (Idx < (int)SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2566 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2567 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2568 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2569 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2570 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2571 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2572 | } |
| 2573 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2574 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2575 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2576 | } |
| 2577 | |
| 2578 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2579 | const Value *Op0 = I.getOperand(0); |
| 2580 | const Value *Op1 = I.getOperand(1); |
| 2581 | const Type *AggTy = I.getType(); |
| 2582 | const Type *ValTy = Op1->getType(); |
| 2583 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2584 | bool FromUndef = isa<UndefValue>(Op1); |
| 2585 | |
| 2586 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2587 | I.idx_begin(), I.idx_end()); |
| 2588 | |
| 2589 | SmallVector<MVT, 4> AggValueVTs; |
| 2590 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
| 2591 | SmallVector<MVT, 4> ValValueVTs; |
| 2592 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2593 | |
| 2594 | unsigned NumAggValues = AggValueVTs.size(); |
| 2595 | unsigned NumValValues = ValValueVTs.size(); |
| 2596 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2597 | |
| 2598 | SDValue Agg = getValue(Op0); |
| 2599 | SDValue Val = getValue(Op1); |
| 2600 | unsigned i = 0; |
| 2601 | // Copy the beginning value(s) from the original aggregate. |
| 2602 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2603 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2604 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2605 | // Copy values from the inserted value(s). |
| 2606 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2607 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2608 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2609 | // Copy remaining value(s) from the original aggregate. |
| 2610 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2611 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2612 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2613 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2614 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2615 | DAG.getVTList(&AggValueVTs[0], NumAggValues), |
| 2616 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2617 | } |
| 2618 | |
| 2619 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2620 | const Value *Op0 = I.getOperand(0); |
| 2621 | const Type *AggTy = Op0->getType(); |
| 2622 | const Type *ValTy = I.getType(); |
| 2623 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2624 | |
| 2625 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2626 | I.idx_begin(), I.idx_end()); |
| 2627 | |
| 2628 | SmallVector<MVT, 4> ValValueVTs; |
| 2629 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2630 | |
| 2631 | unsigned NumValValues = ValValueVTs.size(); |
| 2632 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2633 | |
| 2634 | SDValue Agg = getValue(Op0); |
| 2635 | // Copy out the selected value(s). |
| 2636 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2637 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2638 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2639 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2640 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2641 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2642 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2643 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2644 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2645 | } |
| 2646 | |
| 2647 | |
| 2648 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2649 | SDValue N = getValue(I.getOperand(0)); |
| 2650 | const Type *Ty = I.getOperand(0)->getType(); |
| 2651 | |
| 2652 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2653 | OI != E; ++OI) { |
| 2654 | Value *Idx = *OI; |
| 2655 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2656 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2657 | if (Field) { |
| 2658 | // N = N + Offset |
| 2659 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2660 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2661 | DAG.getIntPtrConstant(Offset)); |
| 2662 | } |
| 2663 | Ty = StTy->getElementType(Field); |
| 2664 | } else { |
| 2665 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2666 | |
| 2667 | // If this is a constant subscript, handle it quickly. |
| 2668 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2669 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2670 | uint64_t Offs = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2671 | TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2672 | SDValue OffsVal; |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2673 | unsigned PtrBits = TLI.getPointerTy().getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2674 | if (PtrBits < 64) { |
| 2675 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2676 | TLI.getPointerTy(), |
| 2677 | DAG.getConstant(Offs, MVT::i64)); |
| 2678 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2679 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2680 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2681 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2682 | continue; |
| 2683 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2684 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2685 | // N = N + Idx * ElementSize; |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2686 | uint64_t ElementSize = TD->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2687 | SDValue IdxN = getValue(Idx); |
| 2688 | |
| 2689 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2690 | // it. |
| 2691 | if (IdxN.getValueType().bitsLT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2692 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2693 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2694 | else if (IdxN.getValueType().bitsGT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2695 | IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2696 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2697 | |
| 2698 | // If this is a multiply by a power of two, turn it into a shl |
| 2699 | // immediately. This is a very common case. |
| 2700 | if (ElementSize != 1) { |
| 2701 | if (isPowerOf2_64(ElementSize)) { |
| 2702 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2703 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2704 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2705 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2706 | } else { |
| 2707 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2708 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2709 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2710 | } |
| 2711 | } |
| 2712 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2713 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2714 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2715 | } |
| 2716 | } |
| 2717 | setValue(&I, N); |
| 2718 | } |
| 2719 | |
| 2720 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2721 | // If this is a fixed sized alloca in the entry block of the function, |
| 2722 | // allocate it statically on the stack. |
| 2723 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2724 | return; // getValue will auto-populate this. |
| 2725 | |
| 2726 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2727 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2728 | unsigned Align = |
| 2729 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2730 | I.getAlignment()); |
| 2731 | |
| 2732 | SDValue AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 2733 | |
| 2734 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(), |
| 2735 | AllocSize, |
| 2736 | DAG.getConstant(TySize, AllocSize.getValueType())); |
| 2737 | |
| 2738 | |
| 2739 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2740 | MVT IntPtr = TLI.getPointerTy(); |
| 2741 | if (IntPtr.bitsLT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2742 | AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2743 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2744 | else if (IntPtr.bitsGT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2745 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2746 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2747 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2748 | // Handle alignment. If the requested alignment is less than or equal to |
| 2749 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2750 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2751 | unsigned StackAlign = |
| 2752 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2753 | if (Align <= StackAlign) |
| 2754 | Align = 0; |
| 2755 | |
| 2756 | // Round the size of the allocation up to the stack alignment size |
| 2757 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2758 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2759 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2760 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2761 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2762 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2763 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2764 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2765 | |
| 2766 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2767 | SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2768 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2769 | VTs, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2770 | setValue(&I, DSA); |
| 2771 | DAG.setRoot(DSA.getValue(1)); |
| 2772 | |
| 2773 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2774 | // object. |
| 2775 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 2776 | } |
| 2777 | |
| 2778 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2779 | const Value *SV = I.getOperand(0); |
| 2780 | SDValue Ptr = getValue(SV); |
| 2781 | |
| 2782 | const Type *Ty = I.getType(); |
| 2783 | bool isVolatile = I.isVolatile(); |
| 2784 | unsigned Alignment = I.getAlignment(); |
| 2785 | |
| 2786 | SmallVector<MVT, 4> ValueVTs; |
| 2787 | SmallVector<uint64_t, 4> Offsets; |
| 2788 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2789 | unsigned NumValues = ValueVTs.size(); |
| 2790 | if (NumValues == 0) |
| 2791 | return; |
| 2792 | |
| 2793 | SDValue Root; |
| 2794 | bool ConstantMemory = false; |
| 2795 | if (I.isVolatile()) |
| 2796 | // Serialize volatile loads with other side effects. |
| 2797 | Root = getRoot(); |
| 2798 | else if (AA->pointsToConstantMemory(SV)) { |
| 2799 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2800 | Root = DAG.getEntryNode(); |
| 2801 | ConstantMemory = true; |
| 2802 | } else { |
| 2803 | // Do not serialize non-volatile loads against each other. |
| 2804 | Root = DAG.getRoot(); |
| 2805 | } |
| 2806 | |
| 2807 | SmallVector<SDValue, 4> Values(NumValues); |
| 2808 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2809 | MVT PtrVT = Ptr.getValueType(); |
| 2810 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2811 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2812 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2813 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2814 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2815 | SV, Offsets[i], |
| 2816 | isVolatile, Alignment); |
| 2817 | Values[i] = L; |
| 2818 | Chains[i] = L.getValue(1); |
| 2819 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2820 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2821 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2822 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2823 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2824 | &Chains[0], NumValues); |
| 2825 | if (isVolatile) |
| 2826 | DAG.setRoot(Chain); |
| 2827 | else |
| 2828 | PendingLoads.push_back(Chain); |
| 2829 | } |
| 2830 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2831 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2832 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2833 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2834 | } |
| 2835 | |
| 2836 | |
| 2837 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2838 | Value *SrcV = I.getOperand(0); |
| 2839 | Value *PtrV = I.getOperand(1); |
| 2840 | |
| 2841 | SmallVector<MVT, 4> ValueVTs; |
| 2842 | SmallVector<uint64_t, 4> Offsets; |
| 2843 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2844 | unsigned NumValues = ValueVTs.size(); |
| 2845 | if (NumValues == 0) |
| 2846 | return; |
| 2847 | |
| 2848 | // Get the lowered operands. Note that we do this after |
| 2849 | // checking if NumResults is zero, because with zero results |
| 2850 | // the operands won't have values in the map. |
| 2851 | SDValue Src = getValue(SrcV); |
| 2852 | SDValue Ptr = getValue(PtrV); |
| 2853 | |
| 2854 | SDValue Root = getRoot(); |
| 2855 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2856 | MVT PtrVT = Ptr.getValueType(); |
| 2857 | bool isVolatile = I.isVolatile(); |
| 2858 | unsigned Alignment = I.getAlignment(); |
| 2859 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2860 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2861 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2862 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2863 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2864 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2865 | PtrV, Offsets[i], |
| 2866 | isVolatile, Alignment); |
| 2867 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2868 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2869 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2870 | } |
| 2871 | |
| 2872 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2873 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2874 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2875 | unsigned Intrinsic) { |
| 2876 | bool HasChain = !I.doesNotAccessMemory(); |
| 2877 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2878 | |
| 2879 | // Build the operand list. |
| 2880 | SmallVector<SDValue, 8> Ops; |
| 2881 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2882 | if (OnlyLoad) { |
| 2883 | // We don't need to serialize loads against other loads. |
| 2884 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2885 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2886 | Ops.push_back(getRoot()); |
| 2887 | } |
| 2888 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2889 | |
| 2890 | // Info is set by getTgtMemInstrinsic |
| 2891 | TargetLowering::IntrinsicInfo Info; |
| 2892 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2893 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2894 | // 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] | 2895 | if (!IsTgtIntrinsic) |
| 2896 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2897 | |
| 2898 | // Add all operands of the call to the operand list. |
| 2899 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2900 | SDValue Op = getValue(I.getOperand(i)); |
| 2901 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2902 | "Intrinsic uses a non-legal type?"); |
| 2903 | Ops.push_back(Op); |
| 2904 | } |
| 2905 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2906 | std::vector<MVT> VTArray; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2907 | if (I.getType() != Type::VoidTy) { |
| 2908 | MVT VT = TLI.getValueType(I.getType()); |
| 2909 | if (VT.isVector()) { |
| 2910 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2911 | MVT EltVT = TLI.getValueType(DestTy->getElementType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2912 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2913 | VT = MVT::getVectorVT(EltVT, DestTy->getNumElements()); |
| 2914 | assert(VT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 2915 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2916 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2917 | assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?"); |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2918 | VTArray.push_back(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2919 | } |
| 2920 | if (HasChain) |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2921 | VTArray.push_back(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2922 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2923 | SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2924 | |
| 2925 | // Create the node. |
| 2926 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2927 | if (IsTgtIntrinsic) { |
| 2928 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2929 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2930 | VTs, &Ops[0], Ops.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2931 | Info.memVT, Info.ptrVal, Info.offset, |
| 2932 | Info.align, Info.vol, |
| 2933 | Info.readMem, Info.writeMem); |
| 2934 | } |
| 2935 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2936 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2937 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2938 | else if (I.getType() != Type::VoidTy) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2939 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2940 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2941 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2942 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2943 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2944 | |
| 2945 | if (HasChain) { |
| 2946 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 2947 | if (OnlyLoad) |
| 2948 | PendingLoads.push_back(Chain); |
| 2949 | else |
| 2950 | DAG.setRoot(Chain); |
| 2951 | } |
| 2952 | if (I.getType() != Type::VoidTy) { |
| 2953 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
| 2954 | MVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2955 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2956 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2957 | setValue(&I, Result); |
| 2958 | } |
| 2959 | } |
| 2960 | |
| 2961 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 2962 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 2963 | V = V->stripPointerCasts(); |
| 2964 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 2965 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 2966 | "TypeInfo must be a global variable or NULL"); |
| 2967 | return GV; |
| 2968 | } |
| 2969 | |
| 2970 | namespace llvm { |
| 2971 | |
| 2972 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 2973 | /// call, and add them to the specified machine basic block. |
| 2974 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 2975 | MachineBasicBlock *MBB) { |
| 2976 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 2977 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 2978 | assert(CE->getOpcode() == Instruction::BitCast && |
| 2979 | isa<Function>(CE->getOperand(0)) && |
| 2980 | "Personality should be a function"); |
| 2981 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 2982 | |
| 2983 | // Gather all the type infos for this landing pad and pass them along to |
| 2984 | // MachineModuleInfo. |
| 2985 | std::vector<GlobalVariable *> TyInfo; |
| 2986 | unsigned N = I.getNumOperands(); |
| 2987 | |
| 2988 | for (unsigned i = N - 1; i > 2; --i) { |
| 2989 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 2990 | unsigned FilterLength = CI->getZExtValue(); |
| 2991 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 2992 | assert (FirstCatch <= N && "Invalid filter length"); |
| 2993 | |
| 2994 | if (FirstCatch < N) { |
| 2995 | TyInfo.reserve(N - FirstCatch); |
| 2996 | for (unsigned j = FirstCatch; j < N; ++j) |
| 2997 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2998 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 2999 | TyInfo.clear(); |
| 3000 | } |
| 3001 | |
| 3002 | if (!FilterLength) { |
| 3003 | // Cleanup. |
| 3004 | MMI->addCleanup(MBB); |
| 3005 | } else { |
| 3006 | // Filter. |
| 3007 | TyInfo.reserve(FilterLength - 1); |
| 3008 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 3009 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3010 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 3011 | TyInfo.clear(); |
| 3012 | } |
| 3013 | |
| 3014 | N = i; |
| 3015 | } |
| 3016 | } |
| 3017 | |
| 3018 | if (N > 3) { |
| 3019 | TyInfo.reserve(N - 3); |
| 3020 | for (unsigned j = 3; j < N; ++j) |
| 3021 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3022 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3023 | } |
| 3024 | } |
| 3025 | |
| 3026 | } |
| 3027 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3028 | /// GetSignificand - Get the significand and build it into a floating-point |
| 3029 | /// number with exponent of 1: |
| 3030 | /// |
| 3031 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 3032 | /// |
| 3033 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3034 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3035 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
| 3036 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3037 | DAG.getConstant(0x007fffff, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3038 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3039 | DAG.getConstant(0x3f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3040 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3041 | } |
| 3042 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3043 | /// GetExponent - Get the exponent: |
| 3044 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3045 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3046 | /// |
| 3047 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3048 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3049 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3050 | DebugLoc dl) { |
| 3051 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3052 | DAG.getConstant(0x7f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3053 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3054 | DAG.getConstant(23, TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3055 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3056 | DAG.getConstant(127, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3057 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3058 | } |
| 3059 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3060 | /// getF32Constant - Get 32-bit floating point constant. |
| 3061 | static SDValue |
| 3062 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
| 3063 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
| 3064 | } |
| 3065 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3066 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3067 | /// visitIntrinsicCall: I is a call instruction |
| 3068 | /// Op is the associated NodeType for I |
| 3069 | const char * |
| 3070 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3071 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3072 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3073 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3074 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3075 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3076 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3077 | getValue(I.getOperand(2)), |
| 3078 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3079 | setValue(&I, L); |
| 3080 | DAG.setRoot(L.getValue(1)); |
| 3081 | return 0; |
| 3082 | } |
| 3083 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3084 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3085 | const char * |
| 3086 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3087 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3088 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3089 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3090 | SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); |
| 3091 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3092 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3093 | setValue(&I, Result); |
| 3094 | return 0; |
| 3095 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3096 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3097 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3098 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3099 | void |
| 3100 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3101 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3102 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3103 | |
| 3104 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3105 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3106 | SDValue Op = getValue(I.getOperand(1)); |
| 3107 | |
| 3108 | // Put the exponent in the right bit position for later addition to the |
| 3109 | // final result: |
| 3110 | // |
| 3111 | // #define LOG2OFe 1.4426950f |
| 3112 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3113 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3114 | getF32Constant(DAG, 0x3fb8aa3b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3115 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3116 | |
| 3117 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3118 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3119 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3120 | |
| 3121 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3122 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3123 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3124 | |
| 3125 | if (LimitFloatPrecision <= 6) { |
| 3126 | // For floating-point precision of 6: |
| 3127 | // |
| 3128 | // TwoToFractionalPartOfX = |
| 3129 | // 0.997535578f + |
| 3130 | // (0.735607626f + 0.252464424f * x) * x; |
| 3131 | // |
| 3132 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3133 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3134 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3135 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3136 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3137 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3138 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3139 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3140 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3141 | |
| 3142 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3143 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3144 | TwoToFracPartOfX, IntegerPartOfX); |
| 3145 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3146 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3147 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3148 | // For floating-point precision of 12: |
| 3149 | // |
| 3150 | // TwoToFractionalPartOfX = |
| 3151 | // 0.999892986f + |
| 3152 | // (0.696457318f + |
| 3153 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3154 | // |
| 3155 | // 0.000107046256 error, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3156 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3157 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3158 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3159 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3160 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3161 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3162 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3163 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3164 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3165 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3166 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3167 | |
| 3168 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3169 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3170 | TwoToFracPartOfX, IntegerPartOfX); |
| 3171 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3172 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3173 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3174 | // For floating-point precision of 18: |
| 3175 | // |
| 3176 | // TwoToFractionalPartOfX = |
| 3177 | // 0.999999982f + |
| 3178 | // (0.693148872f + |
| 3179 | // (0.240227044f + |
| 3180 | // (0.554906021e-1f + |
| 3181 | // (0.961591928e-2f + |
| 3182 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3183 | // |
| 3184 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3185 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3186 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3187 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3188 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3189 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3190 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3191 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3192 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3193 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3194 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3195 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3196 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3197 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3198 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3199 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3200 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3201 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3202 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3203 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3204 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3205 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3206 | |
| 3207 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3208 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3209 | TwoToFracPartOfX, IntegerPartOfX); |
| 3210 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3211 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3212 | } |
| 3213 | } else { |
| 3214 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3215 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3216 | getValue(I.getOperand(1)).getValueType(), |
| 3217 | getValue(I.getOperand(1))); |
| 3218 | } |
| 3219 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3220 | setValue(&I, result); |
| 3221 | } |
| 3222 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3223 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3224 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3225 | void |
| 3226 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3227 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3228 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3229 | |
| 3230 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3231 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3232 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3233 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3234 | |
| 3235 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3236 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3237 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3238 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3239 | |
| 3240 | // Get the significand and build it into a floating-point number with |
| 3241 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3242 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3243 | |
| 3244 | if (LimitFloatPrecision <= 6) { |
| 3245 | // For floating-point precision of 6: |
| 3246 | // |
| 3247 | // LogofMantissa = |
| 3248 | // -1.1609546f + |
| 3249 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3250 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3251 | // error 0.0034276066, which is better than 8 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3252 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3253 | getF32Constant(DAG, 0xbe74c456)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3254 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3255 | getF32Constant(DAG, 0x3fb3a2b1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3256 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3257 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3258 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3259 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3260 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3261 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3262 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3263 | // For floating-point precision of 12: |
| 3264 | // |
| 3265 | // LogOfMantissa = |
| 3266 | // -1.7417939f + |
| 3267 | // (2.8212026f + |
| 3268 | // (-1.4699568f + |
| 3269 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3270 | // |
| 3271 | // error 0.000061011436, which is 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3272 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3273 | getF32Constant(DAG, 0xbd67b6d6)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3274 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3275 | getF32Constant(DAG, 0x3ee4f4b8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3276 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3277 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3278 | getF32Constant(DAG, 0x3fbc278b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3279 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3280 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3281 | getF32Constant(DAG, 0x40348e95)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3282 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3283 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3284 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3285 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3286 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3287 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3288 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3289 | // For floating-point precision of 18: |
| 3290 | // |
| 3291 | // LogOfMantissa = |
| 3292 | // -2.1072184f + |
| 3293 | // (4.2372794f + |
| 3294 | // (-3.7029485f + |
| 3295 | // (2.2781945f + |
| 3296 | // (-0.87823314f + |
| 3297 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3298 | // |
| 3299 | // error 0.0000023660568, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3300 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3301 | getF32Constant(DAG, 0xbc91e5ac)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3302 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3303 | getF32Constant(DAG, 0x3e4350aa)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3304 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3305 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3306 | getF32Constant(DAG, 0x3f60d3e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3307 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3308 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3309 | getF32Constant(DAG, 0x4011cdf0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3310 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3311 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3312 | getF32Constant(DAG, 0x406cfd1c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3313 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3314 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3315 | getF32Constant(DAG, 0x408797cb)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3316 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3317 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3318 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3319 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3320 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3321 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3322 | } |
| 3323 | } else { |
| 3324 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3325 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3326 | getValue(I.getOperand(1)).getValueType(), |
| 3327 | getValue(I.getOperand(1))); |
| 3328 | } |
| 3329 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3330 | setValue(&I, result); |
| 3331 | } |
| 3332 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3333 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3334 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3335 | void |
| 3336 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3337 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3338 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3339 | |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3340 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3341 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3342 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3343 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3344 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3345 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3346 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3347 | |
| 3348 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3349 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3350 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3351 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3352 | // Different possible minimax approximations of significand in |
| 3353 | // floating-point for various degrees of accuracy over [1,2]. |
| 3354 | if (LimitFloatPrecision <= 6) { |
| 3355 | // For floating-point precision of 6: |
| 3356 | // |
| 3357 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3358 | // |
| 3359 | // error 0.0049451742, which is more than 7 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3360 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3361 | getF32Constant(DAG, 0xbeb08fe0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3362 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3363 | getF32Constant(DAG, 0x40019463)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3364 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3365 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3366 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3367 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3368 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3369 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3370 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3371 | // For floating-point precision of 12: |
| 3372 | // |
| 3373 | // Log2ofMantissa = |
| 3374 | // -2.51285454f + |
| 3375 | // (4.07009056f + |
| 3376 | // (-2.12067489f + |
| 3377 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3378 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3379 | // error 0.0000876136000, which is better than 13 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3380 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3381 | getF32Constant(DAG, 0xbda7262e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3382 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3383 | getF32Constant(DAG, 0x3f25280b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3384 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3385 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3386 | getF32Constant(DAG, 0x4007b923)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3387 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3388 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3389 | getF32Constant(DAG, 0x40823e2f)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3390 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3391 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3392 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3393 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3394 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3395 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3396 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3397 | // For floating-point precision of 18: |
| 3398 | // |
| 3399 | // Log2ofMantissa = |
| 3400 | // -3.0400495f + |
| 3401 | // (6.1129976f + |
| 3402 | // (-5.3420409f + |
| 3403 | // (3.2865683f + |
| 3404 | // (-1.2669343f + |
| 3405 | // (0.27515199f - |
| 3406 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3407 | // |
| 3408 | // error 0.0000018516, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3409 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3410 | getF32Constant(DAG, 0xbcd2769e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3411 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3412 | getF32Constant(DAG, 0x3e8ce0b9)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3413 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3414 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3415 | getF32Constant(DAG, 0x3fa22ae7)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3416 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3417 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3418 | getF32Constant(DAG, 0x40525723)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3419 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3420 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3421 | getF32Constant(DAG, 0x40aaf200)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3422 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3423 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3424 | getF32Constant(DAG, 0x40c39dad)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3425 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3426 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3427 | getF32Constant(DAG, 0x4042902c)); |
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 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3432 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3433 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3434 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3435 | getValue(I.getOperand(1)).getValueType(), |
| 3436 | getValue(I.getOperand(1))); |
| 3437 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3438 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3439 | setValue(&I, result); |
| 3440 | } |
| 3441 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3442 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3443 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3444 | void |
| 3445 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3446 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3447 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3448 | |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3449 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3450 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3451 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3452 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3453 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3454 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3455 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3456 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3457 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3458 | |
| 3459 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3460 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3461 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3462 | |
| 3463 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3464 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3465 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3466 | // Log10ofMantissa = |
| 3467 | // -0.50419619f + |
| 3468 | // (0.60948995f - 0.10380950f * x) * x; |
| 3469 | // |
| 3470 | // error 0.0014886165, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3471 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3472 | getF32Constant(DAG, 0xbdd49a13)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3473 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3474 | getF32Constant(DAG, 0x3f1c0789)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3475 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3476 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3477 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3478 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3479 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3480 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3481 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3482 | // For floating-point precision of 12: |
| 3483 | // |
| 3484 | // Log10ofMantissa = |
| 3485 | // -0.64831180f + |
| 3486 | // (0.91751397f + |
| 3487 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3488 | // |
| 3489 | // error 0.00019228036, which is better than 12 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3490 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3491 | getF32Constant(DAG, 0x3d431f31)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3492 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3493 | getF32Constant(DAG, 0x3ea21fb2)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3494 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3495 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3496 | getF32Constant(DAG, 0x3f6ae232)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3497 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3498 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3499 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3500 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3501 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3502 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3503 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3504 | // For floating-point precision of 18: |
| 3505 | // |
| 3506 | // Log10ofMantissa = |
| 3507 | // -0.84299375f + |
| 3508 | // (1.5327582f + |
| 3509 | // (-1.0688956f + |
| 3510 | // (0.49102474f + |
| 3511 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3512 | // |
| 3513 | // error 0.0000037995730, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3514 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3515 | getF32Constant(DAG, 0x3c5d51ce)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3516 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3517 | getF32Constant(DAG, 0x3e00685a)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3518 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3519 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3520 | getF32Constant(DAG, 0x3efb6798)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3521 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3522 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3523 | getF32Constant(DAG, 0x3f88d192)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3524 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3525 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3526 | getF32Constant(DAG, 0x3fc4316c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3527 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3528 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3529 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3530 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3531 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3532 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3533 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3534 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3535 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3536 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3537 | getValue(I.getOperand(1)).getValueType(), |
| 3538 | getValue(I.getOperand(1))); |
| 3539 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3540 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3541 | setValue(&I, result); |
| 3542 | } |
| 3543 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3544 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3545 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3546 | void |
| 3547 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3548 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3549 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3550 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3551 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3552 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3553 | SDValue Op = getValue(I.getOperand(1)); |
| 3554 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3555 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3556 | |
| 3557 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3558 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3559 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3560 | |
| 3561 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3562 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3563 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3564 | |
| 3565 | if (LimitFloatPrecision <= 6) { |
| 3566 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3567 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3568 | // TwoToFractionalPartOfX = |
| 3569 | // 0.997535578f + |
| 3570 | // (0.735607626f + 0.252464424f * x) * x; |
| 3571 | // |
| 3572 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3573 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3574 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3575 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3576 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3577 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3578 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3579 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3580 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3581 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3582 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3583 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3584 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3585 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3586 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3587 | // For floating-point precision of 12: |
| 3588 | // |
| 3589 | // TwoToFractionalPartOfX = |
| 3590 | // 0.999892986f + |
| 3591 | // (0.696457318f + |
| 3592 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3593 | // |
| 3594 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3595 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3596 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3597 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3598 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3599 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3600 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3601 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3602 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3603 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3604 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3605 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3606 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3607 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3608 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3609 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3610 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3611 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3612 | // For floating-point precision of 18: |
| 3613 | // |
| 3614 | // TwoToFractionalPartOfX = |
| 3615 | // 0.999999982f + |
| 3616 | // (0.693148872f + |
| 3617 | // (0.240227044f + |
| 3618 | // (0.554906021e-1f + |
| 3619 | // (0.961591928e-2f + |
| 3620 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3621 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3622 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3623 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3624 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3625 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3626 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3627 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3628 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3629 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3630 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3631 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3632 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3633 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3634 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3635 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3636 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3637 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3638 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3639 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3640 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3641 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
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, t14, 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 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3648 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3649 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3650 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3651 | getValue(I.getOperand(1)).getValueType(), |
| 3652 | getValue(I.getOperand(1))); |
| 3653 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3654 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3655 | setValue(&I, result); |
| 3656 | } |
| 3657 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3658 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3659 | /// limited-precision mode with x == 10.0f. |
| 3660 | void |
| 3661 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3662 | SDValue result; |
| 3663 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3664 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3665 | bool IsExp10 = false; |
| 3666 | |
| 3667 | if (getValue(Val).getValueType() == MVT::f32 && |
Bill Wendling | 277fc24 | 2008-09-10 00:24:59 +0000 | [diff] [blame] | 3668 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3669 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3670 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3671 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3672 | APFloat Ten(10.0f); |
| 3673 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3674 | } |
| 3675 | } |
| 3676 | } |
| 3677 | |
| 3678 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3679 | SDValue Op = getValue(I.getOperand(2)); |
| 3680 | |
| 3681 | // Put the exponent in the right bit position for later addition to the |
| 3682 | // final result: |
| 3683 | // |
| 3684 | // #define LOG2OF10 3.3219281f |
| 3685 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3686 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3687 | getF32Constant(DAG, 0x40549a78)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3688 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3689 | |
| 3690 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3691 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3692 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3693 | |
| 3694 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3695 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3696 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3697 | |
| 3698 | if (LimitFloatPrecision <= 6) { |
| 3699 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3700 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3701 | // twoToFractionalPartOfX = |
| 3702 | // 0.997535578f + |
| 3703 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3704 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3705 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3706 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3707 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3708 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3709 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3710 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3711 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3712 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3713 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3714 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3715 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3716 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3717 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
| 3718 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3719 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3720 | // For floating-point precision of 12: |
| 3721 | // |
| 3722 | // TwoToFractionalPartOfX = |
| 3723 | // 0.999892986f + |
| 3724 | // (0.696457318f + |
| 3725 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3726 | // |
| 3727 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3728 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3729 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3730 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3731 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3732 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3733 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3734 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3735 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3736 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3737 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3738 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3739 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3740 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3741 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3742 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3743 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3744 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3745 | // For floating-point precision of 18: |
| 3746 | // |
| 3747 | // TwoToFractionalPartOfX = |
| 3748 | // 0.999999982f + |
| 3749 | // (0.693148872f + |
| 3750 | // (0.240227044f + |
| 3751 | // (0.554906021e-1f + |
| 3752 | // (0.961591928e-2f + |
| 3753 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3754 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3755 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3756 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3757 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3758 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3759 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3760 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3761 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3762 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3763 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3764 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3765 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3766 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3767 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3768 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3769 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3770 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3771 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3772 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3773 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3774 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
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, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3777 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3778 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3779 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3780 | } |
| 3781 | } else { |
| 3782 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3783 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3784 | getValue(I.getOperand(1)).getValueType(), |
| 3785 | getValue(I.getOperand(1)), |
| 3786 | getValue(I.getOperand(2))); |
| 3787 | } |
| 3788 | |
| 3789 | setValue(&I, result); |
| 3790 | } |
| 3791 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3792 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3793 | /// we want to emit this as a call to a named external function, return the name |
| 3794 | /// otherwise lower it and return null. |
| 3795 | const char * |
| 3796 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3797 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3798 | switch (Intrinsic) { |
| 3799 | default: |
| 3800 | // By default, turn this into a target intrinsic node. |
| 3801 | visitTargetIntrinsic(I, Intrinsic); |
| 3802 | return 0; |
| 3803 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3804 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3805 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3806 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3807 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3808 | getValue(I.getOperand(1)))); |
| 3809 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3810 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3811 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3812 | getValue(I.getOperand(1)))); |
| 3813 | return 0; |
| 3814 | case Intrinsic::setjmp: |
| 3815 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3816 | break; |
| 3817 | case Intrinsic::longjmp: |
| 3818 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3819 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3820 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3821 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3822 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3823 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3824 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3825 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3826 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3827 | return 0; |
| 3828 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3829 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3830 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3831 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3832 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3833 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3834 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3835 | I.getOperand(1), 0)); |
| 3836 | return 0; |
| 3837 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3838 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3839 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3840 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3841 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3842 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3843 | |
| 3844 | // If the source and destination are known to not be aliases, we can |
| 3845 | // lower memmove as memcpy. |
| 3846 | uint64_t Size = -1ULL; |
| 3847 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3848 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3849 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3850 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3851 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3852 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3853 | return 0; |
| 3854 | } |
| 3855 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3856 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3857 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3858 | return 0; |
| 3859 | } |
| 3860 | case Intrinsic::dbg_stoppoint: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3861 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3862 | if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3863 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3864 | DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo()); |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3865 | setCurDebugLoc(Loc); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3866 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 3867 | if (OptLevel == CodeGenOpt::None) |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3868 | DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(), |
Dale Johannesen | beaec4c | 2009-03-25 17:36:08 +0000 | [diff] [blame] | 3869 | SPI.getLine(), |
| 3870 | SPI.getColumn(), |
| 3871 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3872 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3873 | return 0; |
| 3874 | } |
| 3875 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3876 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3877 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3878 | if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW |
| 3879 | && DW->ShouldEmitDwarfDebug()) { |
Bill Wendling | df7d5d3 | 2009-05-21 00:04:55 +0000 | [diff] [blame] | 3880 | unsigned LabelID = |
| 3881 | DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3882 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3883 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3884 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3885 | return 0; |
| 3886 | } |
| 3887 | case Intrinsic::dbg_region_end: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3888 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3889 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3890 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3891 | if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW |
| 3892 | || !DW->ShouldEmitDwarfDebug()) |
| 3893 | return 0; |
Bill Wendling | 6c4311d | 2009-05-08 21:14:49 +0000 | [diff] [blame] | 3894 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3895 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3896 | DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext())); |
| 3897 | |
| 3898 | if (isInlinedFnEnd(REI, MF.getFunction())) { |
| 3899 | // This is end of inlined function. Debugging information for inlined |
| 3900 | // function is not handled yet (only supported by FastISel). |
| 3901 | if (OptLevel == CodeGenOpt::None) { |
| 3902 | unsigned ID = DW->RecordInlinedFnEnd(Subprogram); |
| 3903 | if (ID != 0) |
| 3904 | // Returned ID is 0 if this is unbalanced "end of inlined |
| 3905 | // scope". This could happen if optimizer eats dbg intrinsics or |
| 3906 | // "beginning of inlined scope" is not recoginized due to missing |
| 3907 | // location info. In such cases, do ignore this region.end. |
| 3908 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3909 | getRoot(), ID)); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3910 | } |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3911 | return 0; |
| 3912 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3913 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3914 | unsigned LabelID = |
| 3915 | DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext())); |
| 3916 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3917 | getRoot(), LabelID)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3918 | return 0; |
| 3919 | } |
| 3920 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3921 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3922 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3923 | if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None)) |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3924 | return 0; |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3925 | |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3926 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3927 | // This is a beginning of an inlined function. |
| 3928 | if (isInlinedFnStart(FSI, MF.getFunction())) { |
| 3929 | if (OptLevel != CodeGenOpt::None) |
| 3930 | // FIXME: Debugging informaation for inlined function is only |
| 3931 | // supported at CodeGenOpt::Node. |
| 3932 | return 0; |
| 3933 | |
Bill Wendling | c677fe5 | 2009-05-10 00:10:50 +0000 | [diff] [blame] | 3934 | DebugLoc PrevLoc = CurDebugLoc; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3935 | // If llvm.dbg.func.start is seen in a new block before any |
| 3936 | // llvm.dbg.stoppoint intrinsic then the location info is unknown. |
| 3937 | // FIXME : Why DebugLoc is reset at the beginning of each block ? |
| 3938 | if (PrevLoc.isUnknown()) |
| 3939 | return 0; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3940 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3941 | // Record the source line. |
| 3942 | setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
| 3943 | |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3944 | if (!DW || !DW->ShouldEmitDwarfDebug()) |
| 3945 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3946 | DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc); |
| 3947 | DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram())); |
| 3948 | DICompileUnit CU(PrevLocTpl.CompileUnit); |
| 3949 | unsigned LabelID = DW->RecordInlinedFnStart(SP, CU, |
| 3950 | PrevLocTpl.Line, |
| 3951 | PrevLocTpl.Col); |
| 3952 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3953 | getRoot(), LabelID)); |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3954 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3955 | } |
| 3956 | |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3957 | // This is a beginning of a new function. |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3958 | MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3959 | |
| 3960 | if (!DW || !DW->ShouldEmitDwarfDebug()) |
| 3961 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3962 | // llvm.dbg.func_start also defines beginning of function scope. |
| 3963 | DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3964 | return 0; |
| 3965 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3966 | case Intrinsic::dbg_declare: { |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3967 | if (OptLevel != CodeGenOpt::None) |
| 3968 | // FIXME: Variable debug info is not supported here. |
| 3969 | return 0; |
| 3970 | |
| 3971 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 3972 | if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None)) |
| 3973 | return 0; |
| 3974 | |
| 3975 | Value *Variable = DI.getVariable(); |
| 3976 | DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(), |
| 3977 | getValue(DI.getAddress()), getValue(Variable))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3978 | return 0; |
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 | case Intrinsic::eh_exception: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3981 | // Insert the EXCEPTIONADDR instruction. |
Duncan Sands | b0f1e17 | 2009-05-22 20:36:31 +0000 | [diff] [blame] | 3982 | assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3983 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
| 3984 | SDValue Ops[1]; |
| 3985 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3986 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3987 | setValue(&I, Op); |
| 3988 | DAG.setRoot(Op.getValue(1)); |
| 3989 | return 0; |
| 3990 | } |
| 3991 | |
| 3992 | case Intrinsic::eh_selector_i32: |
| 3993 | case Intrinsic::eh_selector_i64: { |
| 3994 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 3995 | MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? |
| 3996 | MVT::i32 : MVT::i64); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3997 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3998 | if (MMI) { |
| 3999 | if (CurMBB->isLandingPad()) |
| 4000 | AddCatchInfo(I, MMI, CurMBB); |
| 4001 | else { |
| 4002 | #ifndef NDEBUG |
| 4003 | FuncInfo.CatchInfoLost.insert(&I); |
| 4004 | #endif |
| 4005 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 4006 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 4007 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4008 | } |
| 4009 | |
| 4010 | // Insert the EHSELECTION instruction. |
| 4011 | SDVTList VTs = DAG.getVTList(VT, MVT::Other); |
| 4012 | SDValue Ops[2]; |
| 4013 | Ops[0] = getValue(I.getOperand(1)); |
| 4014 | Ops[1] = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4015 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4016 | setValue(&I, Op); |
| 4017 | DAG.setRoot(Op.getValue(1)); |
| 4018 | } else { |
| 4019 | setValue(&I, DAG.getConstant(0, VT)); |
| 4020 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4021 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4022 | return 0; |
| 4023 | } |
| 4024 | |
| 4025 | case Intrinsic::eh_typeid_for_i32: |
| 4026 | case Intrinsic::eh_typeid_for_i64: { |
| 4027 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4028 | MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
| 4029 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4030 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4031 | if (MMI) { |
| 4032 | // Find the type id for the given typeinfo. |
| 4033 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4034 | |
| 4035 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4036 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4037 | } else { |
| 4038 | // Return something different to eh_selector. |
| 4039 | setValue(&I, DAG.getConstant(1, VT)); |
| 4040 | } |
| 4041 | |
| 4042 | return 0; |
| 4043 | } |
| 4044 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4045 | case Intrinsic::eh_return_i32: |
| 4046 | case Intrinsic::eh_return_i64: |
| 4047 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4048 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4049 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4050 | MVT::Other, |
| 4051 | getControlRoot(), |
| 4052 | getValue(I.getOperand(1)), |
| 4053 | getValue(I.getOperand(2)))); |
| 4054 | } else { |
| 4055 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4056 | } |
| 4057 | |
| 4058 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4059 | case Intrinsic::eh_unwind_init: |
| 4060 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4061 | MMI->setCallsUnwindInit(true); |
| 4062 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4063 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4064 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4065 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4066 | case Intrinsic::eh_dwarf_cfa: { |
| 4067 | MVT VT = getValue(I.getOperand(1)).getValueType(); |
| 4068 | SDValue CfaArg; |
| 4069 | if (VT.bitsGT(TLI.getPointerTy())) |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4070 | CfaArg = DAG.getNode(ISD::TRUNCATE, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4071 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
| 4072 | else |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4073 | CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4074 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4075 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4076 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4077 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4078 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4079 | TLI.getPointerTy()), |
| 4080 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4081 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4082 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4083 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4084 | TLI.getPointerTy(), |
| 4085 | DAG.getConstant(0, |
| 4086 | TLI.getPointerTy())), |
| 4087 | Offset)); |
| 4088 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4089 | } |
| 4090 | |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4091 | case Intrinsic::convertff: |
| 4092 | case Intrinsic::convertfsi: |
| 4093 | case Intrinsic::convertfui: |
| 4094 | case Intrinsic::convertsif: |
| 4095 | case Intrinsic::convertuif: |
| 4096 | case Intrinsic::convertss: |
| 4097 | case Intrinsic::convertsu: |
| 4098 | case Intrinsic::convertus: |
| 4099 | case Intrinsic::convertuu: { |
| 4100 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4101 | switch (Intrinsic) { |
| 4102 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4103 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4104 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4105 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4106 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4107 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4108 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4109 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4110 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4111 | } |
| 4112 | MVT DestVT = TLI.getValueType(I.getType()); |
| 4113 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4114 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4115 | DAG.getValueType(DestVT), |
| 4116 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4117 | getValue(I.getOperand(2)), |
| 4118 | getValue(I.getOperand(3)), |
| 4119 | Code)); |
| 4120 | return 0; |
| 4121 | } |
| 4122 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4123 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4124 | setValue(&I, DAG.getNode(ISD::FSQRT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4125 | getValue(I.getOperand(1)).getValueType(), |
| 4126 | getValue(I.getOperand(1)))); |
| 4127 | return 0; |
| 4128 | case Intrinsic::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4129 | setValue(&I, DAG.getNode(ISD::FPOWI, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4130 | getValue(I.getOperand(1)).getValueType(), |
| 4131 | getValue(I.getOperand(1)), |
| 4132 | getValue(I.getOperand(2)))); |
| 4133 | return 0; |
| 4134 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4135 | setValue(&I, DAG.getNode(ISD::FSIN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4136 | getValue(I.getOperand(1)).getValueType(), |
| 4137 | getValue(I.getOperand(1)))); |
| 4138 | return 0; |
| 4139 | case Intrinsic::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4140 | setValue(&I, DAG.getNode(ISD::FCOS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4141 | getValue(I.getOperand(1)).getValueType(), |
| 4142 | getValue(I.getOperand(1)))); |
| 4143 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4144 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4145 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4146 | return 0; |
| 4147 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4148 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4149 | return 0; |
| 4150 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4151 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4152 | return 0; |
| 4153 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4154 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4155 | return 0; |
| 4156 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4157 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4158 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4159 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4160 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4161 | return 0; |
| 4162 | case Intrinsic::pcmarker: { |
| 4163 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4164 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4165 | return 0; |
| 4166 | } |
| 4167 | case Intrinsic::readcyclecounter: { |
| 4168 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4169 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4170 | DAG.getVTList(MVT::i64, MVT::Other), |
| 4171 | &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4172 | setValue(&I, Tmp); |
| 4173 | DAG.setRoot(Tmp.getValue(1)); |
| 4174 | return 0; |
| 4175 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4176 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4177 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4178 | getValue(I.getOperand(1)).getValueType(), |
| 4179 | getValue(I.getOperand(1)))); |
| 4180 | return 0; |
| 4181 | case Intrinsic::cttz: { |
| 4182 | SDValue Arg = getValue(I.getOperand(1)); |
| 4183 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4184 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4185 | setValue(&I, result); |
| 4186 | return 0; |
| 4187 | } |
| 4188 | case Intrinsic::ctlz: { |
| 4189 | SDValue Arg = getValue(I.getOperand(1)); |
| 4190 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4191 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4192 | setValue(&I, result); |
| 4193 | return 0; |
| 4194 | } |
| 4195 | case Intrinsic::ctpop: { |
| 4196 | SDValue Arg = getValue(I.getOperand(1)); |
| 4197 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4198 | SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4199 | setValue(&I, result); |
| 4200 | return 0; |
| 4201 | } |
| 4202 | case Intrinsic::stacksave: { |
| 4203 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4204 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4205 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4206 | setValue(&I, Tmp); |
| 4207 | DAG.setRoot(Tmp.getValue(1)); |
| 4208 | return 0; |
| 4209 | } |
| 4210 | case Intrinsic::stackrestore: { |
| 4211 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4212 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4213 | return 0; |
| 4214 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4215 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4216 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4217 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4218 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 4219 | MVT PtrTy = TLI.getPointerTy(); |
| 4220 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4221 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4222 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4223 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4224 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4225 | MFI->setStackProtectorIndex(FI); |
| 4226 | |
| 4227 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4228 | |
| 4229 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4230 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4231 | PseudoSourceValue::getFixedStack(FI), |
| 4232 | 0, true); |
| 4233 | setValue(&I, Result); |
| 4234 | DAG.setRoot(Result); |
| 4235 | return 0; |
| 4236 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4237 | case Intrinsic::var_annotation: |
| 4238 | // Discard annotate attributes |
| 4239 | return 0; |
| 4240 | |
| 4241 | case Intrinsic::init_trampoline: { |
| 4242 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4243 | |
| 4244 | SDValue Ops[6]; |
| 4245 | Ops[0] = getRoot(); |
| 4246 | Ops[1] = getValue(I.getOperand(1)); |
| 4247 | Ops[2] = getValue(I.getOperand(2)); |
| 4248 | Ops[3] = getValue(I.getOperand(3)); |
| 4249 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4250 | Ops[5] = DAG.getSrcValue(F); |
| 4251 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4252 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4253 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), |
| 4254 | Ops, 6); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4255 | |
| 4256 | setValue(&I, Tmp); |
| 4257 | DAG.setRoot(Tmp.getValue(1)); |
| 4258 | return 0; |
| 4259 | } |
| 4260 | |
| 4261 | case Intrinsic::gcroot: |
| 4262 | if (GFI) { |
| 4263 | Value *Alloca = I.getOperand(1); |
| 4264 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4265 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4266 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4267 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4268 | } |
| 4269 | return 0; |
| 4270 | |
| 4271 | case Intrinsic::gcread: |
| 4272 | case Intrinsic::gcwrite: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 4273 | llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4274 | return 0; |
| 4275 | |
| 4276 | case Intrinsic::flt_rounds: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4277 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4278 | return 0; |
| 4279 | } |
| 4280 | |
| 4281 | case Intrinsic::trap: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4282 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4283 | return 0; |
| 4284 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4285 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4286 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4287 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4288 | case Intrinsic::sadd_with_overflow: |
| 4289 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4290 | case Intrinsic::usub_with_overflow: |
| 4291 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4292 | case Intrinsic::ssub_with_overflow: |
| 4293 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4294 | case Intrinsic::umul_with_overflow: |
| 4295 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4296 | case Intrinsic::smul_with_overflow: |
| 4297 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4298 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4299 | case Intrinsic::prefetch: { |
| 4300 | SDValue Ops[4]; |
| 4301 | Ops[0] = getRoot(); |
| 4302 | Ops[1] = getValue(I.getOperand(1)); |
| 4303 | Ops[2] = getValue(I.getOperand(2)); |
| 4304 | Ops[3] = getValue(I.getOperand(3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4305 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4306 | return 0; |
| 4307 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4308 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4309 | case Intrinsic::memory_barrier: { |
| 4310 | SDValue Ops[6]; |
| 4311 | Ops[0] = getRoot(); |
| 4312 | for (int x = 1; x < 6; ++x) |
| 4313 | Ops[x] = getValue(I.getOperand(x)); |
| 4314 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4315 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4316 | return 0; |
| 4317 | } |
| 4318 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4319 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4320 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4321 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4322 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4323 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4324 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4325 | getValue(I.getOperand(2)), |
| 4326 | getValue(I.getOperand(3)), |
| 4327 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4328 | setValue(&I, L); |
| 4329 | DAG.setRoot(L.getValue(1)); |
| 4330 | return 0; |
| 4331 | } |
| 4332 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4333 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4334 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4335 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4336 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4337 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4338 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4339 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4340 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4341 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4342 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4343 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4344 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4345 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4346 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4347 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4348 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4349 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4350 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4351 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4352 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4353 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4354 | } |
| 4355 | } |
| 4356 | |
| 4357 | |
| 4358 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
| 4359 | bool IsTailCall, |
| 4360 | MachineBasicBlock *LandingPad) { |
| 4361 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4362 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4363 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4364 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4365 | |
| 4366 | TargetLowering::ArgListTy Args; |
| 4367 | TargetLowering::ArgListEntry Entry; |
| 4368 | Args.reserve(CS.arg_size()); |
| 4369 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 4370 | i != e; ++i) { |
| 4371 | SDValue ArgNode = getValue(*i); |
| 4372 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4373 | |
| 4374 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4375 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4376 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4377 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4378 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4379 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4380 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4381 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4382 | Args.push_back(Entry); |
| 4383 | } |
| 4384 | |
| 4385 | if (LandingPad && MMI) { |
| 4386 | // Insert a label before the invoke call to mark the try range. This can be |
| 4387 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4388 | BeginLabel = MMI->NextLabelID(); |
| 4389 | // Both PendingLoads and PendingExports must be flushed here; |
| 4390 | // this call might not return. |
| 4391 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4392 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4393 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4394 | } |
| 4395 | |
| 4396 | std::pair<SDValue,SDValue> Result = |
| 4397 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4398 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4399 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 4400 | CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4401 | CS.getCallingConv(), |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 4402 | IsTailCall && PerformTailCallOpt, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4403 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4404 | if (CS.getType() != Type::VoidTy) |
| 4405 | setValue(CS.getInstruction(), Result.first); |
| 4406 | DAG.setRoot(Result.second); |
| 4407 | |
| 4408 | if (LandingPad && MMI) { |
| 4409 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4410 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4411 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4412 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4413 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4414 | |
| 4415 | // Inform MachineModuleInfo of range. |
| 4416 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4417 | } |
| 4418 | } |
| 4419 | |
| 4420 | |
| 4421 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4422 | const char *RenameFn = 0; |
| 4423 | if (Function *F = I.getCalledFunction()) { |
| 4424 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4425 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4426 | if (II) { |
| 4427 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4428 | RenameFn = visitIntrinsicCall(I, IID); |
| 4429 | if (!RenameFn) |
| 4430 | return; |
| 4431 | } |
| 4432 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4433 | if (unsigned IID = F->getIntrinsicID()) { |
| 4434 | RenameFn = visitIntrinsicCall(I, IID); |
| 4435 | if (!RenameFn) |
| 4436 | return; |
| 4437 | } |
| 4438 | } |
| 4439 | |
| 4440 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4441 | // can't be a library call. |
| 4442 | unsigned NameLen = F->getNameLen(); |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 4443 | if (!F->hasLocalLinkage() && NameLen) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4444 | const char *NameStr = F->getNameStart(); |
| 4445 | if (NameStr[0] == 'c' && |
| 4446 | ((NameLen == 8 && !strcmp(NameStr, "copysign")) || |
| 4447 | (NameLen == 9 && !strcmp(NameStr, "copysignf")))) { |
| 4448 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4449 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4450 | I.getType() == I.getOperand(1)->getType() && |
| 4451 | I.getType() == I.getOperand(2)->getType()) { |
| 4452 | SDValue LHS = getValue(I.getOperand(1)); |
| 4453 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4454 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4455 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4456 | return; |
| 4457 | } |
| 4458 | } else if (NameStr[0] == 'f' && |
| 4459 | ((NameLen == 4 && !strcmp(NameStr, "fabs")) || |
| 4460 | (NameLen == 5 && !strcmp(NameStr, "fabsf")) || |
| 4461 | (NameLen == 5 && !strcmp(NameStr, "fabsl")))) { |
| 4462 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4463 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4464 | I.getType() == I.getOperand(1)->getType()) { |
| 4465 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4466 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4467 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4468 | return; |
| 4469 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4470 | } else if (NameStr[0] == 's' && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4471 | ((NameLen == 3 && !strcmp(NameStr, "sin")) || |
| 4472 | (NameLen == 4 && !strcmp(NameStr, "sinf")) || |
| 4473 | (NameLen == 4 && !strcmp(NameStr, "sinl")))) { |
| 4474 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4475 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4476 | I.getType() == I.getOperand(1)->getType()) { |
| 4477 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4478 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4479 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4480 | return; |
| 4481 | } |
| 4482 | } else if (NameStr[0] == 'c' && |
| 4483 | ((NameLen == 3 && !strcmp(NameStr, "cos")) || |
| 4484 | (NameLen == 4 && !strcmp(NameStr, "cosf")) || |
| 4485 | (NameLen == 4 && !strcmp(NameStr, "cosl")))) { |
| 4486 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4487 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4488 | I.getType() == I.getOperand(1)->getType()) { |
| 4489 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4490 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4491 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4492 | return; |
| 4493 | } |
| 4494 | } |
| 4495 | } |
| 4496 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4497 | visitInlineAsm(&I); |
| 4498 | return; |
| 4499 | } |
| 4500 | |
| 4501 | SDValue Callee; |
| 4502 | if (!RenameFn) |
| 4503 | Callee = getValue(I.getOperand(0)); |
| 4504 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4505 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4506 | |
| 4507 | LowerCallTo(&I, Callee, I.isTailCall()); |
| 4508 | } |
| 4509 | |
| 4510 | |
| 4511 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4512 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4513 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4514 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4515 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4516 | SDValue &Chain, |
| 4517 | SDValue *Flag) const { |
| 4518 | // Assemble the legal parts into the final values. |
| 4519 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4520 | SmallVector<SDValue, 8> Parts; |
| 4521 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4522 | // Copy the legal parts from the registers. |
| 4523 | MVT ValueVT = ValueVTs[Value]; |
| 4524 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 4525 | MVT RegisterVT = RegVTs[Value]; |
| 4526 | |
| 4527 | Parts.resize(NumRegs); |
| 4528 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4529 | SDValue P; |
| 4530 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4531 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4532 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4533 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4534 | *Flag = P.getValue(2); |
| 4535 | } |
| 4536 | Chain = P.getValue(1); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4537 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4538 | // If the source register was virtual and if we know something about it, |
| 4539 | // add an assert node. |
| 4540 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4541 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4542 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4543 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4544 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4545 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4546 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4547 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4548 | unsigned NumSignBits = LOI.NumSignBits; |
| 4549 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4550 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4551 | // FIXME: We capture more information than the dag can represent. For |
| 4552 | // now, just use the tightest assertzext/assertsext possible. |
| 4553 | bool isSExt = true; |
| 4554 | MVT FromVT(MVT::Other); |
| 4555 | if (NumSignBits == RegSize) |
| 4556 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
| 4557 | else if (NumZeroBits >= RegSize-1) |
| 4558 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
| 4559 | else if (NumSignBits > RegSize-8) |
| 4560 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4561 | else if (NumZeroBits >= RegSize-8) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4562 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
| 4563 | else if (NumSignBits > RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4564 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4565 | else if (NumZeroBits >= RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4566 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4567 | else if (NumSignBits > RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4568 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4569 | else if (NumZeroBits >= RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4570 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4571 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4572 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4573 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4574 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4575 | |
| 4576 | } |
| 4577 | } |
| 4578 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4579 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4580 | Parts[i] = P; |
| 4581 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4582 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4583 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4584 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4585 | Part += NumRegs; |
| 4586 | Parts.clear(); |
| 4587 | } |
| 4588 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4589 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4590 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4591 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4592 | } |
| 4593 | |
| 4594 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4595 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4596 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4597 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4598 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4599 | SDValue &Chain, SDValue *Flag) const { |
| 4600 | // Get the list of the values's legal parts. |
| 4601 | unsigned NumRegs = Regs.size(); |
| 4602 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4603 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4604 | MVT ValueVT = ValueVTs[Value]; |
| 4605 | unsigned NumParts = TLI->getNumRegisters(ValueVT); |
| 4606 | MVT RegisterVT = RegVTs[Value]; |
| 4607 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4608 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4609 | &Parts[Part], NumParts, RegisterVT); |
| 4610 | Part += NumParts; |
| 4611 | } |
| 4612 | |
| 4613 | // Copy the parts into the registers. |
| 4614 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4615 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4616 | SDValue Part; |
| 4617 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4618 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4619 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4620 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4621 | *Flag = Part.getValue(1); |
| 4622 | } |
| 4623 | Chains[i] = Part.getValue(0); |
| 4624 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4625 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4626 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4627 | // 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] | 4628 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4629 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4630 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4631 | // user as well as a successor (the TF operands are flagged to the user). |
| 4632 | // c1, f1 = CopyToReg |
| 4633 | // c2, f2 = CopyToReg |
| 4634 | // c3 = TokenFactor c1, c2 |
| 4635 | // ... |
| 4636 | // = op c3, ..., f2 |
| 4637 | Chain = Chains[NumRegs-1]; |
| 4638 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4639 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4640 | } |
| 4641 | |
| 4642 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4643 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4644 | /// values added into it. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4645 | void RegsForValue::AddInlineAsmOperands(unsigned Code, |
| 4646 | bool HasMatching,unsigned MatchingIdx, |
| 4647 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4648 | std::vector<SDValue> &Ops) const { |
| 4649 | MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4650 | assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!"); |
| 4651 | unsigned Flag = Code | (Regs.size() << 3); |
| 4652 | if (HasMatching) |
| 4653 | Flag |= 0x80000000 | (MatchingIdx << 16); |
| 4654 | Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4655 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4656 | unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]); |
| 4657 | MVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4658 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4659 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4660 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4661 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4662 | } |
| 4663 | } |
| 4664 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4665 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4666 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4667 | /// register class for the register. Otherwise, return null. |
| 4668 | static const TargetRegisterClass * |
| 4669 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4670 | const TargetLowering &TLI, |
| 4671 | const TargetRegisterInfo *TRI) { |
| 4672 | MVT FoundVT = MVT::Other; |
| 4673 | const TargetRegisterClass *FoundRC = 0; |
| 4674 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4675 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
| 4676 | MVT ThisVT = MVT::Other; |
| 4677 | |
| 4678 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4679 | // 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] | 4680 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4681 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4682 | I != E; ++I) { |
| 4683 | if (TLI.isTypeLegal(*I)) { |
| 4684 | // If we have already found this register in a different register class, |
| 4685 | // choose the one with the largest VT specified. For example, on |
| 4686 | // PowerPC, we favor f64 register classes over f32. |
| 4687 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
| 4688 | ThisVT = *I; |
| 4689 | break; |
| 4690 | } |
| 4691 | } |
| 4692 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4693 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4694 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4695 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4696 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4697 | // frame pointer in functions that need it (due to them not being taken |
| 4698 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4699 | // yet). This is a slight code pessimization, but should still work. |
| 4700 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4701 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4702 | if (*I == Reg) { |
| 4703 | // We found a matching register class. Keep looking at others in case |
| 4704 | // we find one with larger registers that this physreg is also in. |
| 4705 | FoundRC = RC; |
| 4706 | FoundVT = ThisVT; |
| 4707 | break; |
| 4708 | } |
| 4709 | } |
| 4710 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4711 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4712 | |
| 4713 | |
| 4714 | namespace llvm { |
| 4715 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4716 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4717 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4718 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4719 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4720 | /// CallOperand - If this is the result output operand or a clobber |
| 4721 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4722 | /// This gets modified as the asm is processed. |
| 4723 | SDValue CallOperand; |
| 4724 | |
| 4725 | /// AssignedRegs - If this is a register or register class operand, this |
| 4726 | /// contains the set of register corresponding to the operand. |
| 4727 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4728 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4729 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4730 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4731 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4732 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4733 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4734 | /// busy in OutputRegs/InputRegs. |
| 4735 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4736 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4737 | std::set<unsigned> &InputRegs, |
| 4738 | const TargetRegisterInfo &TRI) const { |
| 4739 | if (isOutReg) { |
| 4740 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4741 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4742 | } |
| 4743 | if (isInReg) { |
| 4744 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4745 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4746 | } |
| 4747 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4748 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4749 | /// getCallOperandValMVT - Return the MVT of the Value* that this operand |
| 4750 | /// corresponds to. If there is no Value* for this operand, it returns |
| 4751 | /// MVT::Other. |
| 4752 | MVT getCallOperandValMVT(const TargetLowering &TLI, |
| 4753 | const TargetData *TD) const { |
| 4754 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4755 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4756 | if (isa<BasicBlock>(CallOperandVal)) |
| 4757 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4758 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4759 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4760 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4761 | // If this is an indirect operand, the operand is a pointer to the |
| 4762 | // accessed type. |
| 4763 | if (isIndirect) |
| 4764 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4765 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4766 | // If OpTy is not a single value, it may be a struct/union that we |
| 4767 | // can tile with integers. |
| 4768 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4769 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4770 | switch (BitSize) { |
| 4771 | default: break; |
| 4772 | case 1: |
| 4773 | case 8: |
| 4774 | case 16: |
| 4775 | case 32: |
| 4776 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4777 | case 128: |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4778 | OpTy = IntegerType::get(BitSize); |
| 4779 | break; |
| 4780 | } |
| 4781 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4782 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4783 | return TLI.getValueType(OpTy, true); |
| 4784 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4785 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4786 | private: |
| 4787 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4788 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4789 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4790 | const TargetRegisterInfo &TRI) { |
| 4791 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4792 | Regs.insert(Reg); |
| 4793 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4794 | for (; *Aliases; ++Aliases) |
| 4795 | Regs.insert(*Aliases); |
| 4796 | } |
| 4797 | }; |
| 4798 | } // end llvm namespace. |
| 4799 | |
| 4800 | |
| 4801 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4802 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4803 | /// register allocator handle the assignment process. However, if the asm uses |
| 4804 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4805 | /// allocation. This produces generally horrible, but correct, code. |
| 4806 | /// |
| 4807 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4808 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4809 | /// |
| 4810 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4811 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4812 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4813 | std::set<unsigned> &InputRegs) { |
| 4814 | // Compute whether this value requires an input register, an output register, |
| 4815 | // or both. |
| 4816 | bool isOutReg = false; |
| 4817 | bool isInReg = false; |
| 4818 | switch (OpInfo.Type) { |
| 4819 | case InlineAsm::isOutput: |
| 4820 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4821 | |
| 4822 | // 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] | 4823 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4824 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4825 | break; |
| 4826 | case InlineAsm::isInput: |
| 4827 | isInReg = true; |
| 4828 | isOutReg = false; |
| 4829 | break; |
| 4830 | case InlineAsm::isClobber: |
| 4831 | isOutReg = true; |
| 4832 | isInReg = true; |
| 4833 | break; |
| 4834 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4835 | |
| 4836 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4837 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4838 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4839 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4840 | // If this is a constraint for a single physreg, or a constraint for a |
| 4841 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4842 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4843 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4844 | OpInfo.ConstraintVT); |
| 4845 | |
| 4846 | unsigned NumRegs = 1; |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4847 | if (OpInfo.ConstraintVT != MVT::Other) { |
| 4848 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4849 | // cast of the input value. More generally, handle any case where the input |
| 4850 | // value disagrees with the register class we plan to stick this in. |
| 4851 | if (OpInfo.Type == InlineAsm::isInput && |
| 4852 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
| 4853 | // Try to convert to the first MVT that the reg class contains. If the |
| 4854 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4855 | // vector types). |
| 4856 | MVT RegVT = *PhysReg.second->vt_begin(); |
| 4857 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4858 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4859 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4860 | OpInfo.ConstraintVT = RegVT; |
| 4861 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4862 | // If the input is a FP value and we want it in FP registers, do a |
| 4863 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4864 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4865 | // machine. |
| 4866 | RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4867 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4868 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4869 | OpInfo.ConstraintVT = RegVT; |
| 4870 | } |
| 4871 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4872 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4873 | NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4874 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4875 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4876 | MVT RegVT; |
| 4877 | MVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4878 | |
| 4879 | // If this is a constraint for a specific physical register, like {r17}, |
| 4880 | // assign it now. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4881 | if (unsigned AssignedReg = PhysReg.first) { |
| 4882 | const TargetRegisterClass *RC = PhysReg.second; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4883 | if (OpInfo.ConstraintVT == MVT::Other) |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4884 | ValueVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4885 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4886 | // Get the actual register value type. This is important, because the user |
| 4887 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4888 | // remember that AX is actually i16 to get the right extension. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4889 | RegVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4890 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4891 | // This is a explicit reference to a physical register. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4892 | Regs.push_back(AssignedReg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4893 | |
| 4894 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4895 | if (NumRegs != 1) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4896 | TargetRegisterClass::iterator I = RC->begin(); |
| 4897 | for (; *I != AssignedReg; ++I) |
| 4898 | assert(I != RC->end() && "Didn't find reg!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4899 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4900 | // Already added the first reg. |
| 4901 | --NumRegs; ++I; |
| 4902 | for (; NumRegs; --NumRegs, ++I) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4903 | assert(I != RC->end() && "Ran out of registers to allocate!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4904 | Regs.push_back(*I); |
| 4905 | } |
| 4906 | } |
| 4907 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4908 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4909 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4910 | return; |
| 4911 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4912 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4913 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 4914 | // for this reference. |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4915 | if (const TargetRegisterClass *RC = PhysReg.second) { |
| 4916 | RegVT = *RC->vt_begin(); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4917 | if (OpInfo.ConstraintVT == MVT::Other) |
| 4918 | ValueVT = RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4919 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4920 | // Create the appropriate number of virtual registers. |
| 4921 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 4922 | for (; NumRegs; --NumRegs) |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4923 | Regs.push_back(RegInfo.createVirtualRegister(RC)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4924 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4925 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4926 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4927 | } |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 4928 | |
| 4929 | // This is a reference to a register class that doesn't directly correspond |
| 4930 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 4931 | // registers from the class. |
| 4932 | std::vector<unsigned> RegClassRegs |
| 4933 | = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4934 | OpInfo.ConstraintVT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4935 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4936 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4937 | unsigned NumAllocated = 0; |
| 4938 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 4939 | unsigned Reg = RegClassRegs[i]; |
| 4940 | // See if this register is available. |
| 4941 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 4942 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 4943 | // Make sure we find consecutive registers. |
| 4944 | NumAllocated = 0; |
| 4945 | continue; |
| 4946 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4947 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4948 | // Check to see if this register is allocatable (i.e. don't give out the |
| 4949 | // stack pointer). |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 4950 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 4951 | if (!RC) { // Couldn't allocate this register. |
| 4952 | // Reset NumAllocated to make sure we return consecutive registers. |
| 4953 | NumAllocated = 0; |
| 4954 | continue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4955 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4956 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4957 | // Okay, this register is good, we can use it. |
| 4958 | ++NumAllocated; |
| 4959 | |
| 4960 | // If we allocated enough consecutive registers, succeed. |
| 4961 | if (NumAllocated == NumRegs) { |
| 4962 | unsigned RegStart = (i-NumAllocated)+1; |
| 4963 | unsigned RegEnd = i+1; |
| 4964 | // Mark all of the allocated registers used. |
| 4965 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 4966 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4967 | |
| 4968 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4969 | OpInfo.ConstraintVT); |
| 4970 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4971 | return; |
| 4972 | } |
| 4973 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4974 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4975 | // Otherwise, we couldn't allocate enough registers for this. |
| 4976 | } |
| 4977 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 4978 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 4979 | /// processed uses a memory 'm' constraint. |
| 4980 | static bool |
| 4981 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 4982 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 4983 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 4984 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 4985 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 4986 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 4987 | if (CType == TargetLowering::C_Memory) |
| 4988 | return true; |
| 4989 | } |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 4990 | |
| 4991 | // Indirect operand accesses access memory. |
| 4992 | if (CI.isIndirect) |
| 4993 | return true; |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 4994 | } |
| 4995 | |
| 4996 | return false; |
| 4997 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4998 | |
| 4999 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 5000 | /// |
| 5001 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 5002 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 5003 | |
| 5004 | /// ConstraintOperands - Information about all of the constraints. |
| 5005 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5006 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5007 | std::set<unsigned> OutputRegs, InputRegs; |
| 5008 | |
| 5009 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 5010 | // ConstraintOperands list. |
| 5011 | std::vector<InlineAsm::ConstraintInfo> |
| 5012 | ConstraintInfos = IA->ParseConstraints(); |
| 5013 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5014 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5015 | |
| 5016 | SDValue Chain, Flag; |
| 5017 | |
| 5018 | // We won't need to flush pending loads if this asm doesn't touch |
| 5019 | // memory and is nonvolatile. |
| 5020 | if (hasMemory || IA->hasSideEffects()) |
Dale Johannesen | 97d14fc | 2009-04-18 00:09:40 +0000 | [diff] [blame] | 5021 | Chain = getRoot(); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5022 | else |
| 5023 | Chain = DAG.getRoot(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5024 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5025 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5026 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5027 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5028 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5029 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5030 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5031 | MVT OpVT = MVT::Other; |
| 5032 | |
| 5033 | // Compute the value type for each operand. |
| 5034 | switch (OpInfo.Type) { |
| 5035 | case InlineAsm::isOutput: |
| 5036 | // Indirect outputs just consume an argument. |
| 5037 | if (OpInfo.isIndirect) { |
| 5038 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5039 | break; |
| 5040 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5041 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5042 | // The return value of the call is this value. As such, there is no |
| 5043 | // corresponding argument. |
| 5044 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5045 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5046 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5047 | } else { |
| 5048 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5049 | OpVT = TLI.getValueType(CS.getType()); |
| 5050 | } |
| 5051 | ++ResNo; |
| 5052 | break; |
| 5053 | case InlineAsm::isInput: |
| 5054 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5055 | break; |
| 5056 | case InlineAsm::isClobber: |
| 5057 | // Nothing to do. |
| 5058 | break; |
| 5059 | } |
| 5060 | |
| 5061 | // If this is an input or an indirect output, process the call argument. |
| 5062 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5063 | if (OpInfo.CallOperandVal) { |
Dale Johannesen | 5339c55 | 2009-07-20 23:27:39 +0000 | [diff] [blame] | 5064 | // Strip bitcasts, if any. This mostly comes up for functions. |
| 5065 | ConstantExpr* CE = NULL; |
| 5066 | while ((CE = dyn_cast<ConstantExpr>(OpInfo.CallOperandVal)) && |
| 5067 | CE->getOpcode()==Instruction::BitCast) |
| 5068 | OpInfo.CallOperandVal = CE->getOperand(0); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5069 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5070 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5071 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5072 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5073 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5074 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5075 | OpVT = OpInfo.getCallOperandValMVT(TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5076 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5077 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5078 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5079 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5080 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5081 | // Second pass over the constraints: compute which constraint option to use |
| 5082 | // and assign registers to constraints that want a specific physreg. |
| 5083 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5084 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5085 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5086 | // 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] | 5087 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5088 | // other is floating point, or their sizes are different, flag it as an |
| 5089 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5090 | if (OpInfo.hasMatchingInput()) { |
| 5091 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5092 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5093 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5094 | Input.ConstraintVT.isInteger()) || |
| 5095 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5096 | Input.ConstraintVT.getSizeInBits())) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5097 | llvm_report_error("llvm: error: Unsupported asm: input constraint" |
| 5098 | " with a matching output constraint of incompatible" |
| 5099 | " type!"); |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5100 | } |
| 5101 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5102 | } |
| 5103 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5104 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5105 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5106 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5107 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5108 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5109 | // need to to provide an address for the memory input. |
| 5110 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5111 | !OpInfo.isIndirect) { |
| 5112 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5113 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5114 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5115 | // Memory operands really want the address of the value. If we don't have |
| 5116 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5117 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5118 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5119 | // If the operand is a float, integer, or vector constant, spill to a |
| 5120 | // constant pool entry to get its address. |
| 5121 | Value *OpVal = OpInfo.CallOperandVal; |
| 5122 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5123 | isa<ConstantVector>(OpVal)) { |
| 5124 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5125 | TLI.getPointerTy()); |
| 5126 | } else { |
| 5127 | // Otherwise, create a stack slot and emit a store to it before the |
| 5128 | // asm. |
| 5129 | const Type *Ty = OpVal->getType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5130 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5131 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5132 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5133 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5134 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5135 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5136 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5137 | OpInfo.CallOperand = StackSlot; |
| 5138 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5139 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5140 | // There is no longer a Value* corresponding to this operand. |
| 5141 | OpInfo.CallOperandVal = 0; |
| 5142 | // It is now an indirect operand. |
| 5143 | OpInfo.isIndirect = true; |
| 5144 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5145 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5146 | // If this constraint is for a specific register, allocate it before |
| 5147 | // anything else. |
| 5148 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5149 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5150 | } |
| 5151 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5152 | |
| 5153 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5154 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5155 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5156 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5157 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5158 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5159 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5160 | // to be. |
| 5161 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5162 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5163 | } |
| 5164 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5165 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5166 | std::vector<SDValue> AsmNodeOperands; |
| 5167 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5168 | AsmNodeOperands.push_back( |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5169 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5170 | |
| 5171 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5172 | // Loop over all of the inputs, copying the operand values into the |
| 5173 | // appropriate registers and processing the output regs. |
| 5174 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5175 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5176 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5177 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5178 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5179 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5180 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5181 | |
| 5182 | switch (OpInfo.Type) { |
| 5183 | case InlineAsm::isOutput: { |
| 5184 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5185 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5186 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5187 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5188 | |
| 5189 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5190 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5191 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5192 | TLI.getPointerTy())); |
| 5193 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5194 | break; |
| 5195 | } |
| 5196 | |
| 5197 | // Otherwise, this is a register or register class output. |
| 5198 | |
| 5199 | // Copy the output from the appropriate register. Find a register that |
| 5200 | // we can use. |
| 5201 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5202 | llvm_report_error("llvm: error: Couldn't allocate output reg for" |
| 5203 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5204 | } |
| 5205 | |
| 5206 | // If this is an indirect operand, store through the pointer after the |
| 5207 | // asm. |
| 5208 | if (OpInfo.isIndirect) { |
| 5209 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5210 | OpInfo.CallOperandVal)); |
| 5211 | } else { |
| 5212 | // This is the result value of the call. |
| 5213 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5214 | // Concatenate this output onto the outputs list. |
| 5215 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5216 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5217 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5218 | // Add information to the INLINEASM node to know that this register is |
| 5219 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5220 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5221 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5222 | 2 /* REGDEF */ , |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5223 | false, |
| 5224 | 0, |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5225 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5226 | break; |
| 5227 | } |
| 5228 | case InlineAsm::isInput: { |
| 5229 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5230 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5231 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5232 | // If this is required to match an output register we have already set, |
| 5233 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5234 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5235 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5236 | // Scan until we find the definition we already emitted of this operand. |
| 5237 | // When we find it, create a RegsForValue operand. |
| 5238 | unsigned CurOp = 2; // The first operand. |
| 5239 | for (; OperandNo; --OperandNo) { |
| 5240 | // Advance to the next operand. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5241 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5242 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5243 | assert(((OpFlag & 7) == 2 /*REGDEF*/ || |
| 5244 | (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
| 5245 | (OpFlag & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5246 | "Skipped past definitions?"); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5247 | CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5248 | } |
| 5249 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5250 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5251 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5252 | if ((OpFlag & 7) == 2 /*REGDEF*/ |
| 5253 | || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
| 5254 | // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5255 | if (OpInfo.isIndirect) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5256 | llvm_report_error("llvm: error: " |
| 5257 | "Don't know how to handle tied indirect " |
| 5258 | "register inputs yet!"); |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5259 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5260 | RegsForValue MatchedRegs; |
| 5261 | MatchedRegs.TLI = &TLI; |
| 5262 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5263 | MVT RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
| 5264 | MatchedRegs.RegVTs.push_back(RegVT); |
| 5265 | MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5266 | for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5267 | i != e; ++i) |
| 5268 | MatchedRegs.Regs. |
| 5269 | push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT))); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5270 | |
| 5271 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5272 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5273 | Chain, &Flag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5274 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, |
| 5275 | true, OpInfo.getMatchedOperand(), |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5276 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5277 | break; |
| 5278 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5279 | assert(((OpFlag & 7) == 4) && "Unknown matching constraint!"); |
| 5280 | assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 && |
| 5281 | "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5282 | // Add information to the INLINEASM node to know about this input. |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5283 | // See InlineAsm.h isUseOperandTiedToDef. |
| 5284 | OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5285 | AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5286 | TLI.getPointerTy())); |
| 5287 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5288 | break; |
| 5289 | } |
| 5290 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5291 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5292 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5293 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5294 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5295 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5296 | std::vector<SDValue> Ops; |
| 5297 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5298 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5299 | if (Ops.empty()) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5300 | llvm_report_error("llvm: error: Invalid operand for inline asm" |
| 5301 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5302 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5303 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5304 | // Add information to the INLINEASM node to know about this input. |
| 5305 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5306 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5307 | TLI.getPointerTy())); |
| 5308 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5309 | break; |
| 5310 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5311 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5312 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5313 | "Memory operands expect pointer values"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5314 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5315 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5316 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5317 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5318 | TLI.getPointerTy())); |
| 5319 | AsmNodeOperands.push_back(InOperandVal); |
| 5320 | break; |
| 5321 | } |
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 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5324 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5325 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5326 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5327 | "Don't know how to handle indirect register inputs yet!"); |
| 5328 | |
| 5329 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5330 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5331 | llvm_report_error("llvm: error: Couldn't allocate input reg for" |
| 5332 | " constraint '"+ OpInfo.ConstraintCode +"'!"); |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5333 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5334 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5335 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5336 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5337 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5338 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0, |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5339 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5340 | break; |
| 5341 | } |
| 5342 | case InlineAsm::isClobber: { |
| 5343 | // Add the clobbered value to the operand list, so that the register |
| 5344 | // allocator is aware that the physreg got clobbered. |
| 5345 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5346 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5347 | false, 0, DAG,AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5348 | break; |
| 5349 | } |
| 5350 | } |
| 5351 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5352 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5353 | // Finish up input operands. |
| 5354 | AsmNodeOperands[0] = Chain; |
| 5355 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5356 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5357 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5358 | DAG.getVTList(MVT::Other, MVT::Flag), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5359 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5360 | Flag = Chain.getValue(1); |
| 5361 | |
| 5362 | // If this asm returns a register value, copy the result from that register |
| 5363 | // and set it as the value of the call. |
| 5364 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5365 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5366 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5367 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5368 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5369 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
| 5370 | MVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5371 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5372 | // If any of the results of the inline asm is a vector, it may have the |
| 5373 | // wrong width/num elts. This can happen for register classes that can |
| 5374 | // contain multiple different value types. The preg or vreg allocated may |
| 5375 | // not have the same VT as was expected. Convert it to the right type |
| 5376 | // with bit_convert. |
| 5377 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5378 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5379 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5380 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5381 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5382 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5383 | // If a result value was tied to an input value, the computed result may |
| 5384 | // have a wider width than the expected result. Extract the relevant |
| 5385 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5386 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5387 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5388 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5389 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5390 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5391 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5392 | setValue(CS.getInstruction(), Val); |
Dale Johannesen | ec65a7d | 2009-04-14 00:56:56 +0000 | [diff] [blame] | 5393 | // Don't need to use this as a chain in this case. |
| 5394 | if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) |
| 5395 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5396 | } |
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 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5399 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5400 | // Process indirect outputs, first output all of the flagged copies out of |
| 5401 | // physregs. |
| 5402 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5403 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5404 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5405 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5406 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5407 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5408 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5409 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5410 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5411 | // Emit the non-flagged stores from the physregs. |
| 5412 | SmallVector<SDValue, 8> OutChains; |
| 5413 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5414 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5415 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5416 | getValue(StoresToEmit[i].second), |
| 5417 | StoresToEmit[i].second, 0)); |
| 5418 | if (!OutChains.empty()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5419 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5420 | &OutChains[0], OutChains.size()); |
| 5421 | DAG.setRoot(Chain); |
| 5422 | } |
| 5423 | |
| 5424 | |
| 5425 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5426 | SDValue Src = getValue(I.getOperand(0)); |
| 5427 | |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5428 | // Scale up by the type size in the original i32 type width. Various |
| 5429 | // mid-level optimizers may make assumptions about demanded bits etc from the |
| 5430 | // i32-ness of the optimizer: we do not want to promote to i64 and then |
| 5431 | // multiply on 64-bit targets. |
| 5432 | // FIXME: Malloc inst should go away: PR715. |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5433 | uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5434 | if (ElementSize != 1) |
| 5435 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
| 5436 | Src, DAG.getConstant(ElementSize, Src.getValueType())); |
| 5437 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5438 | MVT IntPtr = TLI.getPointerTy(); |
| 5439 | |
| 5440 | if (IntPtr.bitsLT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5441 | Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5442 | else if (IntPtr.bitsGT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5443 | Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5444 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5445 | TargetLowering::ArgListTy Args; |
| 5446 | TargetLowering::ArgListEntry Entry; |
| 5447 | Entry.Node = Src; |
| 5448 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5449 | Args.push_back(Entry); |
| 5450 | |
| 5451 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5452 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5453 | 0, CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5454 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5455 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5456 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5457 | DAG.setRoot(Result.second); |
| 5458 | } |
| 5459 | |
| 5460 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5461 | TargetLowering::ArgListTy Args; |
| 5462 | TargetLowering::ArgListEntry Entry; |
| 5463 | Entry.Node = getValue(I.getOperand(0)); |
| 5464 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5465 | Args.push_back(Entry); |
| 5466 | MVT IntPtr = TLI.getPointerTy(); |
| 5467 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5468 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5469 | 0, CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5470 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5471 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5472 | DAG.setRoot(Result.second); |
| 5473 | } |
| 5474 | |
| 5475 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5476 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5477 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5478 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5479 | DAG.getSrcValue(I.getOperand(1)))); |
| 5480 | } |
| 5481 | |
| 5482 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5483 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5484 | getRoot(), getValue(I.getOperand(0)), |
| 5485 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5486 | setValue(&I, V); |
| 5487 | DAG.setRoot(V.getValue(1)); |
| 5488 | } |
| 5489 | |
| 5490 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5491 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5492 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5493 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5494 | DAG.getSrcValue(I.getOperand(1)))); |
| 5495 | } |
| 5496 | |
| 5497 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5498 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5499 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5500 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5501 | getValue(I.getOperand(2)), |
| 5502 | DAG.getSrcValue(I.getOperand(1)), |
| 5503 | DAG.getSrcValue(I.getOperand(2)))); |
| 5504 | } |
| 5505 | |
| 5506 | /// TargetLowering::LowerArguments - This is the default LowerArguments |
| 5507 | /// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5508 | /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5509 | /// integrated into SDISel. |
| 5510 | void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5511 | SmallVectorImpl<SDValue> &ArgValues, |
| 5512 | DebugLoc dl) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5513 | // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node. |
| 5514 | SmallVector<SDValue, 3+16> Ops; |
| 5515 | Ops.push_back(DAG.getRoot()); |
| 5516 | Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy())); |
| 5517 | Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy())); |
| 5518 | |
| 5519 | // Add one result value for each formal argument. |
| 5520 | SmallVector<MVT, 16> RetVals; |
| 5521 | unsigned j = 1; |
| 5522 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5523 | I != E; ++I, ++j) { |
| 5524 | SmallVector<MVT, 4> ValueVTs; |
| 5525 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5526 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5527 | Value != NumValues; ++Value) { |
| 5528 | MVT VT = ValueVTs[Value]; |
Owen Anderson | d1474d0 | 2009-07-09 17:57:24 +0000 | [diff] [blame] | 5529 | const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5530 | ISD::ArgFlagsTy Flags; |
| 5531 | unsigned OriginalAlignment = |
| 5532 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5533 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5534 | if (F.paramHasAttr(j, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5535 | Flags.setZExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5536 | if (F.paramHasAttr(j, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5537 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5538 | if (F.paramHasAttr(j, Attribute::InReg)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5539 | Flags.setInReg(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5540 | if (F.paramHasAttr(j, Attribute::StructRet)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5541 | Flags.setSRet(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5542 | if (F.paramHasAttr(j, Attribute::ByVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5543 | Flags.setByVal(); |
| 5544 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5545 | const Type *ElementTy = Ty->getElementType(); |
| 5546 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5547 | unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5548 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5549 | // this info is not there but there are cases it cannot get right. |
| 5550 | if (F.getParamAlignment(j)) |
| 5551 | FrameAlign = F.getParamAlignment(j); |
| 5552 | Flags.setByValAlign(FrameAlign); |
| 5553 | Flags.setByValSize(FrameSize); |
| 5554 | } |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5555 | if (F.paramHasAttr(j, Attribute::Nest)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5556 | Flags.setNest(); |
| 5557 | Flags.setOrigAlign(OriginalAlignment); |
| 5558 | |
| 5559 | MVT RegisterVT = getRegisterType(VT); |
| 5560 | unsigned NumRegs = getNumRegisters(VT); |
| 5561 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5562 | RetVals.push_back(RegisterVT); |
| 5563 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5564 | if (NumRegs > 1 && i == 0) |
| 5565 | MyFlags.setSplit(); |
| 5566 | // if it isn't first piece, alignment must be 1 |
| 5567 | else if (i > 0) |
| 5568 | MyFlags.setOrigAlign(1); |
| 5569 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5570 | } |
| 5571 | } |
| 5572 | } |
| 5573 | |
| 5574 | RetVals.push_back(MVT::Other); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5575 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5576 | // Create the node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5577 | SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5578 | DAG.getVTList(&RetVals[0], RetVals.size()), |
| 5579 | &Ops[0], Ops.size()).getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5580 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5581 | // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but |
| 5582 | // allows exposing the loads that may be part of the argument access to the |
| 5583 | // first DAGCombiner pass. |
| 5584 | SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5585 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5586 | // The number of results should match up, except that the lowered one may have |
| 5587 | // an extra flag result. |
| 5588 | assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() || |
| 5589 | (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() && |
| 5590 | TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag)) |
| 5591 | && "Lowering produced unexpected number of results!"); |
| 5592 | |
| 5593 | // The FORMAL_ARGUMENTS node itself is likely no longer needed. |
| 5594 | if (Result != TmpRes.getNode() && Result->use_empty()) { |
| 5595 | HandleSDNode Dummy(DAG.getRoot()); |
| 5596 | DAG.RemoveDeadNode(Result); |
| 5597 | } |
| 5598 | |
| 5599 | Result = TmpRes.getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5600 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5601 | unsigned NumArgRegs = Result->getNumValues() - 1; |
| 5602 | DAG.setRoot(SDValue(Result, NumArgRegs)); |
| 5603 | |
| 5604 | // Set up the return result vector. |
| 5605 | unsigned i = 0; |
| 5606 | unsigned Idx = 1; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5607 | 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] | 5608 | ++I, ++Idx) { |
| 5609 | SmallVector<MVT, 4> ValueVTs; |
| 5610 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5611 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5612 | Value != NumValues; ++Value) { |
| 5613 | MVT VT = ValueVTs[Value]; |
| 5614 | MVT PartVT = getRegisterType(VT); |
| 5615 | |
| 5616 | unsigned NumParts = getNumRegisters(VT); |
| 5617 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5618 | for (unsigned j = 0; j != NumParts; ++j) |
| 5619 | Parts[j] = SDValue(Result, i++); |
| 5620 | |
| 5621 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5622 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5623 | AssertOp = ISD::AssertSext; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5624 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5625 | AssertOp = ISD::AssertZext; |
| 5626 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5627 | ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts, |
| 5628 | PartVT, VT, AssertOp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5629 | } |
| 5630 | } |
| 5631 | assert(i == NumArgRegs && "Argument register count mismatch!"); |
| 5632 | } |
| 5633 | |
| 5634 | |
| 5635 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
| 5636 | /// implementation, which just inserts an ISD::CALL node, which is later custom |
| 5637 | /// lowered by the target to something concrete. FIXME: When all targets are |
| 5638 | /// migrated to using ISD::CALL, this hook should be integrated into SDISel. |
| 5639 | std::pair<SDValue, SDValue> |
| 5640 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5641 | bool RetSExt, bool RetZExt, bool isVarArg, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5642 | bool isInreg, unsigned NumFixedArgs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5643 | unsigned CallingConv, bool isTailCall, |
| 5644 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5645 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5646 | assert((!isTailCall || PerformTailCallOpt) && |
| 5647 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5648 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5649 | SmallVector<SDValue, 32> Ops; |
| 5650 | Ops.push_back(Chain); // Op#0 - Chain |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5651 | Ops.push_back(Callee); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5652 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5653 | // Handle all of the outgoing arguments. |
| 5654 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 5655 | SmallVector<MVT, 4> ValueVTs; |
| 5656 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5657 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5658 | Value != NumValues; ++Value) { |
| 5659 | MVT VT = ValueVTs[Value]; |
Owen Anderson | d1474d0 | 2009-07-09 17:57:24 +0000 | [diff] [blame] | 5660 | const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext()); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5661 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5662 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5663 | ISD::ArgFlagsTy Flags; |
| 5664 | unsigned OriginalAlignment = |
| 5665 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5666 | |
| 5667 | if (Args[i].isZExt) |
| 5668 | Flags.setZExt(); |
| 5669 | if (Args[i].isSExt) |
| 5670 | Flags.setSExt(); |
| 5671 | if (Args[i].isInReg) |
| 5672 | Flags.setInReg(); |
| 5673 | if (Args[i].isSRet) |
| 5674 | Flags.setSRet(); |
| 5675 | if (Args[i].isByVal) { |
| 5676 | Flags.setByVal(); |
| 5677 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5678 | const Type *ElementTy = Ty->getElementType(); |
| 5679 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5680 | unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5681 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5682 | // info is not there but there are cases it cannot get right. |
| 5683 | if (Args[i].Alignment) |
| 5684 | FrameAlign = Args[i].Alignment; |
| 5685 | Flags.setByValAlign(FrameAlign); |
| 5686 | Flags.setByValSize(FrameSize); |
| 5687 | } |
| 5688 | if (Args[i].isNest) |
| 5689 | Flags.setNest(); |
| 5690 | Flags.setOrigAlign(OriginalAlignment); |
| 5691 | |
| 5692 | MVT PartVT = getRegisterType(VT); |
| 5693 | unsigned NumParts = getNumRegisters(VT); |
| 5694 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5695 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5696 | |
| 5697 | if (Args[i].isSExt) |
| 5698 | ExtendKind = ISD::SIGN_EXTEND; |
| 5699 | else if (Args[i].isZExt) |
| 5700 | ExtendKind = ISD::ZERO_EXTEND; |
| 5701 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5702 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5703 | |
| 5704 | for (unsigned i = 0; i != NumParts; ++i) { |
| 5705 | // if it isn't first piece, alignment must be 1 |
| 5706 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5707 | if (NumParts > 1 && i == 0) |
| 5708 | MyFlags.setSplit(); |
| 5709 | else if (i != 0) |
| 5710 | MyFlags.setOrigAlign(1); |
| 5711 | |
| 5712 | Ops.push_back(Parts[i]); |
| 5713 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5714 | } |
| 5715 | } |
| 5716 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5717 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5718 | // Figure out the result value types. We start by making a list of |
| 5719 | // the potentially illegal return value types. |
| 5720 | SmallVector<MVT, 4> LoweredRetTys; |
| 5721 | SmallVector<MVT, 4> RetTys; |
| 5722 | ComputeValueVTs(*this, RetTy, RetTys); |
| 5723 | |
| 5724 | // Then we translate that to a list of legal types. |
| 5725 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5726 | MVT VT = RetTys[I]; |
| 5727 | MVT RegisterVT = getRegisterType(VT); |
| 5728 | unsigned NumRegs = getNumRegisters(VT); |
| 5729 | for (unsigned i = 0; i != NumRegs; ++i) |
| 5730 | LoweredRetTys.push_back(RegisterVT); |
| 5731 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5732 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5733 | LoweredRetTys.push_back(MVT::Other); // Always has a chain. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5734 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5735 | // Create the CALL node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5736 | SDValue Res = DAG.getCall(CallingConv, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5737 | isVarArg, isTailCall, isInreg, |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5738 | DAG.getVTList(&LoweredRetTys[0], |
| 5739 | LoweredRetTys.size()), |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5740 | &Ops[0], Ops.size(), NumFixedArgs |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5741 | ); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5742 | Chain = Res.getValue(LoweredRetTys.size() - 1); |
| 5743 | |
| 5744 | // Gather up the call result into a single value. |
Dan Gohman | b5cc34d | 2008-10-07 00:12:37 +0000 | [diff] [blame] | 5745 | if (RetTy != Type::VoidTy && !RetTys.empty()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5746 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5747 | |
| 5748 | if (RetSExt) |
| 5749 | AssertOp = ISD::AssertSext; |
| 5750 | else if (RetZExt) |
| 5751 | AssertOp = ISD::AssertZext; |
| 5752 | |
| 5753 | SmallVector<SDValue, 4> ReturnValues; |
| 5754 | unsigned RegNo = 0; |
| 5755 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5756 | MVT VT = RetTys[I]; |
| 5757 | MVT RegisterVT = getRegisterType(VT); |
| 5758 | unsigned NumRegs = getNumRegisters(VT); |
| 5759 | unsigned RegNoEnd = NumRegs + RegNo; |
| 5760 | SmallVector<SDValue, 4> Results; |
| 5761 | for (; RegNo != RegNoEnd; ++RegNo) |
| 5762 | Results.push_back(Res.getValue(RegNo)); |
| 5763 | SDValue ReturnValue = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5764 | getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5765 | AssertOp); |
| 5766 | ReturnValues.push_back(ReturnValue); |
| 5767 | } |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5768 | Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 5769 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5770 | &ReturnValues[0], ReturnValues.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5771 | } |
| 5772 | |
| 5773 | return std::make_pair(Res, Chain); |
| 5774 | } |
| 5775 | |
Duncan Sands | 9fbc7e2 | 2009-01-21 09:00:29 +0000 | [diff] [blame] | 5776 | void TargetLowering::LowerOperationWrapper(SDNode *N, |
| 5777 | SmallVectorImpl<SDValue> &Results, |
| 5778 | SelectionDAG &DAG) { |
| 5779 | SDValue Res = LowerOperation(SDValue(N, 0), DAG); |
Sanjiv Gupta | bb326bb | 2009-01-21 04:48:39 +0000 | [diff] [blame] | 5780 | if (Res.getNode()) |
| 5781 | Results.push_back(Res); |
| 5782 | } |
| 5783 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5784 | SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 5785 | llvm_unreachable("LowerOperation not implemented for this target!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5786 | return SDValue(); |
| 5787 | } |
| 5788 | |
| 5789 | |
| 5790 | void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) { |
| 5791 | SDValue Op = getValue(V); |
| 5792 | assert((Op.getOpcode() != ISD::CopyFromReg || |
| 5793 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
| 5794 | "Copy from a reg to the same reg!"); |
| 5795 | assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); |
| 5796 | |
| 5797 | RegsForValue RFV(TLI, Reg, V->getType()); |
| 5798 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5799 | RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5800 | PendingExports.push_back(Chain); |
| 5801 | } |
| 5802 | |
| 5803 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 5804 | |
| 5805 | void SelectionDAGISel:: |
| 5806 | LowerArguments(BasicBlock *LLVMBB) { |
| 5807 | // If this is the entry block, emit arguments. |
| 5808 | Function &F = *LLVMBB->getParent(); |
| 5809 | SDValue OldRoot = SDL->DAG.getRoot(); |
| 5810 | SmallVector<SDValue, 16> Args; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5811 | TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5812 | |
| 5813 | unsigned a = 0; |
| 5814 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 5815 | AI != E; ++AI) { |
| 5816 | SmallVector<MVT, 4> ValueVTs; |
| 5817 | ComputeValueVTs(TLI, AI->getType(), ValueVTs); |
| 5818 | unsigned NumValues = ValueVTs.size(); |
| 5819 | if (!AI->use_empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5820 | SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues, |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 5821 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5822 | // If this argument is live outside of the entry block, insert a copy from |
| 5823 | // whereever we got it to the vreg that other BB's will reference it as. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 5824 | SDL->CopyToExportRegsIfNeeded(AI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5825 | } |
| 5826 | a += NumValues; |
| 5827 | } |
| 5828 | |
| 5829 | // Finally, if the target has anything special to do, allow it to do so. |
| 5830 | // FIXME: this should insert code into the DAG! |
| 5831 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5832 | } |
| 5833 | |
| 5834 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5835 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5836 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5837 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5838 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5839 | /// the end. |
| 5840 | /// |
| 5841 | void |
| 5842 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5843 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5844 | |
| 5845 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5846 | |
| 5847 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5848 | // from this block. |
| 5849 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5850 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5851 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5852 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5853 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5854 | // If this terminator has multiple identical successors (common for |
| 5855 | // switches), only handle each succ once. |
| 5856 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5857 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5858 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5859 | PHINode *PN; |
| 5860 | |
| 5861 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5862 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5863 | // emitted yet. |
| 5864 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5865 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5866 | // Ignore dead phi's. |
| 5867 | if (PN->use_empty()) continue; |
| 5868 | |
| 5869 | unsigned Reg; |
| 5870 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5871 | |
| 5872 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5873 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5874 | if (RegOut == 0) { |
| 5875 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5876 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5877 | } |
| 5878 | Reg = RegOut; |
| 5879 | } else { |
| 5880 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5881 | if (Reg == 0) { |
| 5882 | assert(isa<AllocaInst>(PHIOp) && |
| 5883 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5884 | "Didn't codegen value into a register!??"); |
| 5885 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5886 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5887 | } |
| 5888 | } |
| 5889 | |
| 5890 | // Remember that this register needs to added to the machine PHI node as |
| 5891 | // the input for this MBB. |
| 5892 | SmallVector<MVT, 4> ValueVTs; |
| 5893 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5894 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 5895 | MVT VT = ValueVTs[vti]; |
| 5896 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
| 5897 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5898 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5899 | Reg += NumRegisters; |
| 5900 | } |
| 5901 | } |
| 5902 | } |
| 5903 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5904 | } |
| 5905 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5906 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5907 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5908 | /// creating SelectionDAG nodes. |
| 5909 | /// |
| 5910 | bool |
| 5911 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 5912 | FastISel *F) { |
| 5913 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5914 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5915 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5916 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 5917 | |
| 5918 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5919 | // from this block. |
| 5920 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5921 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5922 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5923 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5924 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5925 | // If this terminator has multiple identical successors (common for |
| 5926 | // switches), only handle each succ once. |
| 5927 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5928 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5929 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5930 | PHINode *PN; |
| 5931 | |
| 5932 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5933 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5934 | // emitted yet. |
| 5935 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5936 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5937 | // Ignore dead phi's. |
| 5938 | if (PN->use_empty()) continue; |
| 5939 | |
| 5940 | // Only handle legal types. Two interesting things to note here. First, |
| 5941 | // by bailing out early, we may leave behind some dead instructions, |
| 5942 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 5943 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 5944 | // use CreateRegForValue to create registers, so it always creates |
| 5945 | // exactly one register for each non-void instruction. |
| 5946 | MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 5947 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 5948 | // Promote MVT::i1. |
| 5949 | if (VT == MVT::i1) |
| 5950 | VT = TLI.getTypeToTransformTo(VT); |
| 5951 | else { |
| 5952 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 5953 | return false; |
| 5954 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5955 | } |
| 5956 | |
| 5957 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5958 | |
| 5959 | unsigned Reg = F->getRegForValue(PHIOp); |
| 5960 | if (Reg == 0) { |
| 5961 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 5962 | return false; |
| 5963 | } |
| 5964 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 5965 | } |
| 5966 | } |
| 5967 | |
| 5968 | return true; |
| 5969 | } |