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 | c25e758 | 2009-07-11 20:10:48 +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 | c25e758 | 2009-07-11 20:10:48 +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 | c25e758 | 2009-07-11 20:10:48 +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 | 7d696d8 | 2009-07-11 13:10:19 +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(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 984 | for (unsigned i = 0; i < NumParts; ++i) { |
| 985 | NewValues.push_back(Parts[i]); |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 986 | NewValues.push_back(DAG.getArgFlags(Flags)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 987 | } |
| 988 | } |
| 989 | } |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 990 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 991 | &NewValues[0], NewValues.size())); |
| 992 | } |
| 993 | |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 994 | /// CopyToExportRegsIfNeeded - If the given value has virtual registers |
| 995 | /// created for it, emit nodes to copy the value into the virtual |
| 996 | /// registers. |
| 997 | void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) { |
| 998 | if (!V->use_empty()) { |
| 999 | DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); |
| 1000 | if (VMI != FuncInfo.ValueMap.end()) |
| 1001 | CopyValueToVirtualRegister(V, VMI->second); |
| 1002 | } |
| 1003 | } |
| 1004 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1005 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1006 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1007 | /// CopyTo/FromReg. |
| 1008 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1009 | // No need to export constants. |
| 1010 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1011 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1012 | // Already exported? |
| 1013 | if (FuncInfo.isExportedInst(V)) return; |
| 1014 | |
| 1015 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1016 | CopyValueToVirtualRegister(V, Reg); |
| 1017 | } |
| 1018 | |
| 1019 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1020 | const BasicBlock *FromBB) { |
| 1021 | // The operands of the setcc have to be in this block. We don't know |
| 1022 | // how to export them from some other block. |
| 1023 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1024 | // Can export from current BB. |
| 1025 | if (VI->getParent() == FromBB) |
| 1026 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1027 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1028 | // Is already exported, noop. |
| 1029 | return FuncInfo.isExportedInst(V); |
| 1030 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1031 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1032 | // If this is an argument, we can export it if the BB is the entry block or |
| 1033 | // if it is already exported. |
| 1034 | if (isa<Argument>(V)) { |
| 1035 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1036 | return true; |
| 1037 | |
| 1038 | // Otherwise, can only export this if it is already exported. |
| 1039 | return FuncInfo.isExportedInst(V); |
| 1040 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1041 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1042 | // Otherwise, constants can always be exported. |
| 1043 | return true; |
| 1044 | } |
| 1045 | |
| 1046 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1047 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1048 | return I->getParent() == BB; |
| 1049 | return true; |
| 1050 | } |
| 1051 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1052 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1053 | /// the given LLVM IR floating-point condition code. This includes |
| 1054 | /// consideration of global floating-point math flags. |
| 1055 | /// |
| 1056 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1057 | ISD::CondCode FPC, FOC; |
| 1058 | switch (Pred) { |
| 1059 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1060 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1061 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1062 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1063 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1064 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1065 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1066 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1067 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1068 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1069 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1070 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1071 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1072 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1073 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1074 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1075 | default: |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 1076 | LLVM_UNREACHABLE("Invalid FCmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1077 | FOC = FPC = ISD::SETFALSE; |
| 1078 | break; |
| 1079 | } |
| 1080 | if (FiniteOnlyFPMath()) |
| 1081 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1082 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1083 | return FPC; |
| 1084 | } |
| 1085 | |
| 1086 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1087 | /// the given LLVM IR integer condition code. |
| 1088 | /// |
| 1089 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1090 | switch (Pred) { |
| 1091 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1092 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1093 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1094 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1095 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1096 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1097 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1098 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1099 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1100 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1101 | default: |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 1102 | LLVM_UNREACHABLE("Invalid ICmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1103 | return ISD::SETNE; |
| 1104 | } |
| 1105 | } |
| 1106 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1107 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1108 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1109 | /// AND operator tree. |
| 1110 | /// |
| 1111 | void |
| 1112 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1113 | MachineBasicBlock *TBB, |
| 1114 | MachineBasicBlock *FBB, |
| 1115 | MachineBasicBlock *CurBB) { |
| 1116 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1117 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1118 | // If the leaf of the tree is a comparison, merge the condition into |
| 1119 | // the caseblock. |
| 1120 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1121 | // The operands of the cmp have to be in this block. We don't know |
| 1122 | // how to export them from some other block. If this is the first block |
| 1123 | // of the sequence, no exporting is needed. |
| 1124 | if (CurBB == CurMBB || |
| 1125 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1126 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1127 | ISD::CondCode Condition; |
| 1128 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1129 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1130 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1131 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1132 | } else { |
| 1133 | Condition = ISD::SETEQ; // silence warning. |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 1134 | LLVM_UNREACHABLE("Unknown compare instruction"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1135 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1136 | |
| 1137 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1138 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1139 | SwitchCases.push_back(CB); |
| 1140 | return; |
| 1141 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | // Create a CaseBlock record representing this branch. |
| 1145 | CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(), |
| 1146 | NULL, TBB, FBB, CurBB); |
| 1147 | SwitchCases.push_back(CB); |
| 1148 | } |
| 1149 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1150 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1151 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1152 | MachineBasicBlock *TBB, |
| 1153 | MachineBasicBlock *FBB, |
| 1154 | MachineBasicBlock *CurBB, |
| 1155 | unsigned Opc) { |
| 1156 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1157 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1158 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1159 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1160 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1161 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1162 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1163 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1164 | return; |
| 1165 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1166 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1167 | // Create TmpBB after CurBB. |
| 1168 | MachineFunction::iterator BBI = CurBB; |
| 1169 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1170 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1171 | CurBB->getParent()->insert(++BBI, TmpBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1172 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1173 | if (Opc == Instruction::Or) { |
| 1174 | // Codegen X | Y as: |
| 1175 | // jmp_if_X TBB |
| 1176 | // jmp TmpBB |
| 1177 | // TmpBB: |
| 1178 | // jmp_if_Y TBB |
| 1179 | // jmp FBB |
| 1180 | // |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1181 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1182 | // Emit the LHS condition. |
| 1183 | FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1184 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1185 | // Emit the RHS condition into TmpBB. |
| 1186 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1187 | } else { |
| 1188 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1189 | // Codegen X & Y as: |
| 1190 | // jmp_if_X TmpBB |
| 1191 | // jmp FBB |
| 1192 | // TmpBB: |
| 1193 | // jmp_if_Y TBB |
| 1194 | // jmp FBB |
| 1195 | // |
| 1196 | // This requires creation of TmpBB after CurBB. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1197 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1198 | // Emit the LHS condition. |
| 1199 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1200 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1201 | // Emit the RHS condition into TmpBB. |
| 1202 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1207 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1208 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1209 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1210 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1211 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1212 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1213 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1214 | // will get folded into a single comparison, so don't emit two blocks. |
| 1215 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1216 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1217 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1218 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1219 | return false; |
| 1220 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1221 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1222 | return true; |
| 1223 | } |
| 1224 | |
| 1225 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1226 | // Update machine-CFG edges. |
| 1227 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1228 | |
| 1229 | // Figure out which block is immediately after the current one. |
| 1230 | MachineBasicBlock *NextBlock = 0; |
| 1231 | MachineFunction::iterator BBI = CurMBB; |
| 1232 | if (++BBI != CurMBB->getParent()->end()) |
| 1233 | NextBlock = BBI; |
| 1234 | |
| 1235 | if (I.isUnconditional()) { |
| 1236 | // Update machine-CFG edges. |
| 1237 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1238 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1239 | // If this is not a fall-through branch, emit the branch. |
| 1240 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1241 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1242 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1243 | DAG.getBasicBlock(Succ0MBB))); |
| 1244 | return; |
| 1245 | } |
| 1246 | |
| 1247 | // If this condition is one of the special cases we handle, do special stuff |
| 1248 | // now. |
| 1249 | Value *CondVal = I.getCondition(); |
| 1250 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1251 | |
| 1252 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1253 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1254 | // For example, instead of something like: |
| 1255 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1256 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1257 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1258 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1259 | // or C, F |
| 1260 | // jnz foo |
| 1261 | // Emit: |
| 1262 | // cmp A, B |
| 1263 | // je foo |
| 1264 | // cmp D, E |
| 1265 | // jle foo |
| 1266 | // |
| 1267 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1268 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1269 | (BOp->getOpcode() == Instruction::And || |
| 1270 | BOp->getOpcode() == Instruction::Or)) { |
| 1271 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1272 | // If the compares in later blocks need to use values not currently |
| 1273 | // exported from this block, export them now. This block should always |
| 1274 | // be the first entry. |
| 1275 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1276 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1277 | // Allow some cases to be rejected. |
| 1278 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1279 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1280 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1281 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1282 | } |
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 | // Emit the branch for this block. |
| 1285 | visitSwitchCase(SwitchCases[0]); |
| 1286 | SwitchCases.erase(SwitchCases.begin()); |
| 1287 | return; |
| 1288 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1289 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1290 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1291 | // SwitchCases. |
| 1292 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
| 1293 | CurMBB->getParent()->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1294 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1295 | SwitchCases.clear(); |
| 1296 | } |
| 1297 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1298 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1299 | // Create a CaseBlock record representing this branch. |
| 1300 | CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(), |
| 1301 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1302 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1303 | // cond branch. |
| 1304 | visitSwitchCase(CB); |
| 1305 | } |
| 1306 | |
| 1307 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1308 | /// the binary search tree resulting from lowering a switch instruction. |
| 1309 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1310 | SDValue Cond; |
| 1311 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1312 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1313 | |
| 1314 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1315 | if (CB.CmpMHS == NULL) { |
| 1316 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1317 | // handle common cases produced by branch lowering. |
| 1318 | if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ) |
| 1319 | Cond = CondLHS; |
| 1320 | else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) { |
| 1321 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1322 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1323 | } else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1324 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1325 | } else { |
| 1326 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1327 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1328 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1329 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1330 | |
| 1331 | SDValue CmpOp = getValue(CB.CmpMHS); |
| 1332 | MVT VT = CmpOp.getValueType(); |
| 1333 | |
| 1334 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1335 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1336 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1337 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1338 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1339 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1340 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1341 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1342 | } |
| 1343 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1344 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1345 | // Update successor info |
| 1346 | CurMBB->addSuccessor(CB.TrueBB); |
| 1347 | CurMBB->addSuccessor(CB.FalseBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1348 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1349 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1350 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1351 | MachineBasicBlock *NextBlock = 0; |
| 1352 | MachineFunction::iterator BBI = CurMBB; |
| 1353 | if (++BBI != CurMBB->getParent()->end()) |
| 1354 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1355 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1356 | // If the lhs block is the next block, invert the condition so that we can |
| 1357 | // fall through to the lhs instead of the rhs block. |
| 1358 | if (CB.TrueBB == NextBlock) { |
| 1359 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1360 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1361 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1362 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1363 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1364 | MVT::Other, getControlRoot(), Cond, |
| 1365 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1366 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1367 | // If the branch was constant folded, fix up the CFG. |
| 1368 | if (BrCond.getOpcode() == ISD::BR) { |
| 1369 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1370 | DAG.setRoot(BrCond); |
| 1371 | } else { |
| 1372 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1373 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1374 | CurMBB->removeSuccessor(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 (CB.FalseBB == NextBlock) |
| 1377 | DAG.setRoot(BrCond); |
| 1378 | else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1379 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1380 | DAG.getBasicBlock(CB.FalseBB))); |
| 1381 | } |
| 1382 | } |
| 1383 | |
| 1384 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1385 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1386 | // Emit the code for the jump table |
| 1387 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
| 1388 | MVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1389 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1390 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1391 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1392 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1393 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1394 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1395 | } |
| 1396 | |
| 1397 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1398 | /// in the JumpTable from switch case. |
| 1399 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1400 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1401 | // Subtract the lowest switch case value from the value being switched on and |
| 1402 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1403 | // difference between smallest and largest cases. |
| 1404 | SDValue SwitchOp = getValue(JTH.SValue); |
| 1405 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1406 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1407 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1408 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1409 | // The SDNode we just created, which holds the value being switched on minus |
| 1410 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1411 | // can be used as an index into the jump table in a subsequent basic block. |
| 1412 | // This value may be smaller or larger than the target's pointer type, and |
| 1413 | // therefore require extension or truncating. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1414 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1415 | SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1416 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1417 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1418 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1419 | TLI.getPointerTy(), SUB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1420 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1421 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1422 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1423 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1424 | JT.Reg = JumpTableReg; |
| 1425 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1426 | // Emit the range check for the jump table, and branch to the default block |
| 1427 | // for the switch statement if the value being switched on exceeds the largest |
| 1428 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1429 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1430 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1431 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1432 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1433 | |
| 1434 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1435 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1436 | MachineBasicBlock *NextBlock = 0; |
| 1437 | MachineFunction::iterator BBI = CurMBB; |
| 1438 | if (++BBI != CurMBB->getParent()->end()) |
| 1439 | NextBlock = BBI; |
| 1440 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1441 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1442 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1443 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1444 | |
| 1445 | if (JT.MBB == NextBlock) |
| 1446 | DAG.setRoot(BrCond); |
| 1447 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1448 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1449 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1450 | } |
| 1451 | |
| 1452 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1453 | /// suitable for "bit tests" |
| 1454 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1455 | // Subtract the minimum value |
| 1456 | SDValue SwitchOp = getValue(B.SValue); |
| 1457 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1458 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1459 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1460 | |
| 1461 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1462 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1463 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1464 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1465 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1466 | |
| 1467 | SDValue ShiftOp; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1468 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1469 | ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1470 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1471 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1472 | ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1473 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1474 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1475 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1476 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1477 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1478 | |
| 1479 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1480 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1481 | MachineBasicBlock *NextBlock = 0; |
| 1482 | MachineFunction::iterator BBI = CurMBB; |
| 1483 | if (++BBI != CurMBB->getParent()->end()) |
| 1484 | NextBlock = BBI; |
| 1485 | |
| 1486 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1487 | |
| 1488 | CurMBB->addSuccessor(B.Default); |
| 1489 | CurMBB->addSuccessor(MBB); |
| 1490 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1491 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1492 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1493 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1494 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1495 | if (MBB == NextBlock) |
| 1496 | DAG.setRoot(BrRange); |
| 1497 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1498 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1499 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1500 | } |
| 1501 | |
| 1502 | /// visitBitTestCase - this function produces one "bit test" |
| 1503 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1504 | unsigned Reg, |
| 1505 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1506 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1507 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1508 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1509 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1510 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1511 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1512 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1513 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1514 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1515 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1516 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1517 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1518 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1519 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1520 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1521 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1522 | |
| 1523 | CurMBB->addSuccessor(B.TargetBB); |
| 1524 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1525 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1526 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1527 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1528 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1529 | |
| 1530 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1531 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1532 | MachineBasicBlock *NextBlock = 0; |
| 1533 | MachineFunction::iterator BBI = CurMBB; |
| 1534 | if (++BBI != CurMBB->getParent()->end()) |
| 1535 | NextBlock = BBI; |
| 1536 | |
| 1537 | if (NextMBB == NextBlock) |
| 1538 | DAG.setRoot(BrAnd); |
| 1539 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1540 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1541 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1545 | // Retrieve successors. |
| 1546 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1547 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1548 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1549 | const Value *Callee(I.getCalledValue()); |
| 1550 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1551 | visitInlineAsm(&I); |
| 1552 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1553 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1554 | |
| 1555 | // If the value of the invoke is used outside of its defining block, make it |
| 1556 | // available as a virtual register. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1557 | CopyToExportRegsIfNeeded(&I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1558 | |
| 1559 | // Update successor info |
| 1560 | CurMBB->addSuccessor(Return); |
| 1561 | CurMBB->addSuccessor(LandingPad); |
| 1562 | |
| 1563 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1564 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1565 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1566 | DAG.getBasicBlock(Return))); |
| 1567 | } |
| 1568 | |
| 1569 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1570 | } |
| 1571 | |
| 1572 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1573 | /// small case ranges). |
| 1574 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1575 | CaseRecVector& WorkList, |
| 1576 | Value* SV, |
| 1577 | MachineBasicBlock* Default) { |
| 1578 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1579 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1580 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1581 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1582 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1583 | return false; |
| 1584 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1585 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1586 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1587 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1588 | |
| 1589 | // Figure out which block is immediately after the current one. |
| 1590 | MachineBasicBlock *NextBlock = 0; |
| 1591 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1592 | |
| 1593 | if (++BBI != CurMBB->getParent()->end()) |
| 1594 | NextBlock = BBI; |
| 1595 | |
| 1596 | // TODO: If any two of the cases has the same destination, and if one value |
| 1597 | // is the same as the other, but has one bit unset that the other has set, |
| 1598 | // use bit manipulation to do two compares at once. For example: |
| 1599 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1600 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1601 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1602 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1603 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1604 | // branches in this order. See if rearranging a case value would help. |
| 1605 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1606 | if (I->BB == NextBlock) { |
| 1607 | std::swap(*I, BackCase); |
| 1608 | break; |
| 1609 | } |
| 1610 | } |
| 1611 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1612 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1613 | // Create a CaseBlock record representing a conditional branch to |
| 1614 | // the Case's target mbb if the value being switched on SV is equal |
| 1615 | // to C. |
| 1616 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1617 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1618 | MachineBasicBlock *FallThrough; |
| 1619 | if (I != E-1) { |
| 1620 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1621 | CurMF->insert(BBI, FallThrough); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1622 | |
| 1623 | // Put SV in a virtual register to make it available from the new blocks. |
| 1624 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1625 | } else { |
| 1626 | // If the last case doesn't match, go to the default block. |
| 1627 | FallThrough = Default; |
| 1628 | } |
| 1629 | |
| 1630 | Value *RHS, *LHS, *MHS; |
| 1631 | ISD::CondCode CC; |
| 1632 | if (I->High == I->Low) { |
| 1633 | // This is just small small case range :) containing exactly 1 case |
| 1634 | CC = ISD::SETEQ; |
| 1635 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1636 | } else { |
| 1637 | CC = ISD::SETLE; |
| 1638 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1639 | } |
| 1640 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1641 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1642 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1643 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1644 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1645 | // before the next MBB. |
| 1646 | if (CurBlock == CurMBB) |
| 1647 | visitSwitchCase(CB); |
| 1648 | else |
| 1649 | SwitchCases.push_back(CB); |
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 | CurBlock = FallThrough; |
| 1652 | } |
| 1653 | |
| 1654 | return true; |
| 1655 | } |
| 1656 | |
| 1657 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1658 | return !DisableJumpTables && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 1659 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1660 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1661 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1662 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1663 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1664 | APInt LastExt(Last), FirstExt(First); |
| 1665 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1666 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1667 | return (LastExt - FirstExt + 1ULL); |
| 1668 | } |
| 1669 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1670 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1671 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1672 | CaseRecVector& WorkList, |
| 1673 | Value* SV, |
| 1674 | MachineBasicBlock* Default) { |
| 1675 | Case& FrontCase = *CR.Range.first; |
| 1676 | Case& BackCase = *(CR.Range.second-1); |
| 1677 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1678 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1679 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1680 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1681 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1682 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1683 | I!=E; ++I) |
| 1684 | TSize += I->size(); |
| 1685 | |
| 1686 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1687 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1688 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1689 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1690 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1691 | if (Density < 0.4) |
| 1692 | return false; |
| 1693 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1694 | DEBUG(errs() << "Lowering jump table\n" |
| 1695 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1696 | << "Range: " << Range |
| 1697 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1698 | |
| 1699 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1700 | // inserting any additional MBBs necessary to represent the switch. |
| 1701 | MachineFunction *CurMF = CurMBB->getParent(); |
| 1702 | |
| 1703 | // Figure out which block is immediately after the current one. |
| 1704 | MachineBasicBlock *NextBlock = 0; |
| 1705 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1706 | |
| 1707 | if (++BBI != CurMBB->getParent()->end()) |
| 1708 | NextBlock = BBI; |
| 1709 | |
| 1710 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1711 | |
| 1712 | // Create a new basic block to hold the code for loading the address |
| 1713 | // of the jump table, and jumping to it. Update successor information; |
| 1714 | // we will either branch to the default case for the switch, or the jump |
| 1715 | // table. |
| 1716 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1717 | CurMF->insert(BBI, JumpTableBB); |
| 1718 | CR.CaseBB->addSuccessor(Default); |
| 1719 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1720 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1721 | // Build a vector of destination BBs, corresponding to each target |
| 1722 | // of the jump table. If the value of the jump table slot corresponds to |
| 1723 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1724 | // the default BB. |
| 1725 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1726 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1727 | 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] | 1728 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1729 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1730 | |
| 1731 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1732 | DestBBs.push_back(I->BB); |
| 1733 | if (TEI==High) |
| 1734 | ++I; |
| 1735 | } else { |
| 1736 | DestBBs.push_back(Default); |
| 1737 | } |
| 1738 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1739 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1740 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1741 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1742 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1743 | E = DestBBs.end(); I != E; ++I) { |
| 1744 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1745 | SuccsHandled[(*I)->getNumber()] = true; |
| 1746 | JumpTableBB->addSuccessor(*I); |
| 1747 | } |
| 1748 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1749 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1750 | // Create a jump table index for this jump table, or return an existing |
| 1751 | // one. |
| 1752 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1753 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1754 | // Set the jump table information so that we can codegen it as a second |
| 1755 | // MachineBasicBlock |
| 1756 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1757 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1758 | if (CR.CaseBB == CurMBB) |
| 1759 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1760 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1761 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1762 | |
| 1763 | return true; |
| 1764 | } |
| 1765 | |
| 1766 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1767 | /// 2 subtrees. |
| 1768 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1769 | CaseRecVector& WorkList, |
| 1770 | Value* SV, |
| 1771 | MachineBasicBlock* Default) { |
| 1772 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1773 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1774 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1775 | |
| 1776 | // Figure out which block is immediately after the current one. |
| 1777 | MachineBasicBlock *NextBlock = 0; |
| 1778 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1779 | |
| 1780 | if (++BBI != CurMBB->getParent()->end()) |
| 1781 | NextBlock = BBI; |
| 1782 | |
| 1783 | Case& FrontCase = *CR.Range.first; |
| 1784 | Case& BackCase = *(CR.Range.second-1); |
| 1785 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1786 | |
| 1787 | // Size is the number of Cases represented by this range. |
| 1788 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1789 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1790 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1791 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1792 | double FMetric = 0; |
| 1793 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1794 | |
| 1795 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1796 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1797 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1798 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1799 | I!=E; ++I) |
| 1800 | TSize += I->size(); |
| 1801 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1802 | size_t LSize = FrontCase.size(); |
| 1803 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1804 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1805 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1806 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1807 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1808 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1809 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1810 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1811 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1812 | assert((Range - 2ULL).isNonNegative() && |
| 1813 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1814 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1815 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1816 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1817 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1818 | DEBUG(errs() <<"=>Step\n" |
| 1819 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1820 | << "LDensity: " << LDensity |
| 1821 | << ", RDensity: " << RDensity << '\n' |
| 1822 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1823 | if (FMetric < Metric) { |
| 1824 | Pivot = J; |
| 1825 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1826 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1827 | } |
| 1828 | |
| 1829 | LSize += J->size(); |
| 1830 | RSize -= J->size(); |
| 1831 | } |
| 1832 | if (areJTsAllowed(TLI)) { |
| 1833 | // If our case is dense we *really* should handle it earlier! |
| 1834 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1835 | } else { |
| 1836 | Pivot = CR.Range.first + Size/2; |
| 1837 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1838 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1839 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1840 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1841 | Constant *C = Pivot->Low; |
| 1842 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1843 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1844 | // 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] | 1845 | // 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] | 1846 | // 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] | 1847 | // 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] | 1848 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1849 | // rather than creating a leaf node for it. |
| 1850 | if ((LHSR.second - LHSR.first) == 1 && |
| 1851 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1852 | cast<ConstantInt>(C)->getValue() == |
| 1853 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1854 | TrueBB = LHSR.first->BB; |
| 1855 | } else { |
| 1856 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1857 | CurMF->insert(BBI, TrueBB); |
| 1858 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1859 | |
| 1860 | // Put SV in a virtual register to make it available from the new blocks. |
| 1861 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1862 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1863 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1864 | // Similar to the optimization above, if the Value being switched on is |
| 1865 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1866 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1867 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1868 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1869 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1870 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1871 | FalseBB = RHSR.first->BB; |
| 1872 | } else { |
| 1873 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1874 | CurMF->insert(BBI, FalseBB); |
| 1875 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1876 | |
| 1877 | // Put SV in a virtual register to make it available from the new blocks. |
| 1878 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1879 | } |
| 1880 | |
| 1881 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1882 | // 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] | 1883 | // Otherwise, branch to LHS. |
| 1884 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1885 | |
| 1886 | if (CR.CaseBB == CurMBB) |
| 1887 | visitSwitchCase(CB); |
| 1888 | else |
| 1889 | SwitchCases.push_back(CB); |
| 1890 | |
| 1891 | return true; |
| 1892 | } |
| 1893 | |
| 1894 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1895 | /// range span less, than machine word bitwidth, encode case range into series |
| 1896 | /// of masks and emit bit tests with these masks. |
| 1897 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1898 | CaseRecVector& WorkList, |
| 1899 | Value* SV, |
| 1900 | MachineBasicBlock* Default){ |
| 1901 | unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits(); |
| 1902 | |
| 1903 | Case& FrontCase = *CR.Range.first; |
| 1904 | Case& BackCase = *(CR.Range.second-1); |
| 1905 | |
| 1906 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1907 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1908 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1909 | |
Anton Korobeynikov | d34167a | 2009-05-08 18:51:34 +0000 | [diff] [blame] | 1910 | // If target does not have legal shift left, do not emit bit tests at all. |
| 1911 | if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy())) |
| 1912 | return false; |
| 1913 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1914 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1915 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1916 | I!=E; ++I) { |
| 1917 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1918 | numCmps += (I->Low == I->High ? 1 : 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1919 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1920 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1921 | // Count unique destinations |
| 1922 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1923 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1924 | Dests.insert(I->BB); |
| 1925 | if (Dests.size() > 3) |
| 1926 | // Don't bother the code below, if there are too much unique destinations |
| 1927 | return false; |
| 1928 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1929 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1930 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1931 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1932 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1933 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1934 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1935 | APInt cmpRange = maxValue - minValue; |
| 1936 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1937 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1938 | << "Low bound: " << minValue << '\n' |
| 1939 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1940 | |
| 1941 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1942 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1943 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1944 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1945 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1946 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1947 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1948 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1949 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1950 | // Optimize the case where all the case values fit in a |
| 1951 | // word without having to subtract minValue. In this case, |
| 1952 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1953 | if (minValue.isNonNegative() && |
| 1954 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1955 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1956 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1957 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1958 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1959 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1960 | CaseBitsVector CasesBits; |
| 1961 | unsigned i, count = 0; |
| 1962 | |
| 1963 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1964 | MachineBasicBlock* Dest = I->BB; |
| 1965 | for (i = 0; i < count; ++i) |
| 1966 | if (Dest == CasesBits[i].BB) |
| 1967 | break; |
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 | if (i == count) { |
| 1970 | assert((count < 3) && "Too much destinations to test!"); |
| 1971 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1972 | count++; |
| 1973 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1974 | |
| 1975 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1976 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1977 | |
| 1978 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 1979 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 1980 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1981 | for (uint64_t j = lo; j <= hi; j++) { |
| 1982 | CasesBits[i].Mask |= 1ULL << j; |
| 1983 | CasesBits[i].Bits++; |
| 1984 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1985 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1986 | } |
| 1987 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1988 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1989 | BitTestInfo BTC; |
| 1990 | |
| 1991 | // Figure out which block is immediately after the current one. |
| 1992 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1993 | ++BBI; |
| 1994 | |
| 1995 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1996 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1997 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1998 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1999 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2000 | << ", Bits: " << CasesBits[i].Bits |
| 2001 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2002 | |
| 2003 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2004 | CurMF->insert(BBI, CaseBB); |
| 2005 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2006 | CaseBB, |
| 2007 | CasesBits[i].BB)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 2008 | |
| 2009 | // Put SV in a virtual register to make it available from the new blocks. |
| 2010 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2011 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2012 | |
| 2013 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2014 | -1U, (CR.CaseBB == CurMBB), |
| 2015 | CR.CaseBB, Default, BTC); |
| 2016 | |
| 2017 | if (CR.CaseBB == CurMBB) |
| 2018 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2019 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2020 | BitTestCases.push_back(BTB); |
| 2021 | |
| 2022 | return true; |
| 2023 | } |
| 2024 | |
| 2025 | |
| 2026 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2027 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2028 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2029 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2030 | |
| 2031 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2032 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2033 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2034 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2035 | SI.getSuccessorValue(i), |
| 2036 | SMBB)); |
| 2037 | } |
| 2038 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2039 | |
| 2040 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2041 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2042 | // Must recompute end() each iteration because it may be |
| 2043 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2044 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2045 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2046 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2047 | MachineBasicBlock* nextBB = J->BB; |
| 2048 | MachineBasicBlock* currentBB = I->BB; |
| 2049 | |
| 2050 | // If the two neighboring cases go to the same destination, merge them |
| 2051 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2052 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2053 | I->High = J->High; |
| 2054 | J = Cases.erase(J); |
| 2055 | } else { |
| 2056 | I = J++; |
| 2057 | } |
| 2058 | } |
| 2059 | |
| 2060 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2061 | if (I->Low != I->High) |
| 2062 | // A range counts double, since it requires two compares. |
| 2063 | ++numCmps; |
| 2064 | } |
| 2065 | |
| 2066 | return numCmps; |
| 2067 | } |
| 2068 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2069 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2070 | // Figure out which block is immediately after the current one. |
| 2071 | MachineBasicBlock *NextBlock = 0; |
| 2072 | MachineFunction::iterator BBI = CurMBB; |
| 2073 | |
| 2074 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2075 | |
| 2076 | // If there is only the default destination, branch to it if it is not the |
| 2077 | // next basic block. Otherwise, just fall through. |
| 2078 | if (SI.getNumOperands() == 2) { |
| 2079 | // Update machine-CFG edges. |
| 2080 | |
| 2081 | // If this is not a fall-through branch, emit the branch. |
| 2082 | CurMBB->addSuccessor(Default); |
| 2083 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2084 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2085 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2086 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2087 | return; |
| 2088 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2089 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2090 | // If there are any non-default case statements, create a vector of Cases |
| 2091 | // representing each one, and sort the vector so that we can efficiently |
| 2092 | // create a binary search tree from them. |
| 2093 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2094 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2095 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2096 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2097 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2098 | |
| 2099 | // Get the Value to be switched on and default basic blocks, which will be |
| 2100 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2101 | // search tree. |
| 2102 | Value *SV = SI.getOperand(0); |
| 2103 | |
| 2104 | // Push the initial CaseRec onto the worklist |
| 2105 | CaseRecVector WorkList; |
| 2106 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2107 | |
| 2108 | while (!WorkList.empty()) { |
| 2109 | // Grab a record representing a case range to process off the worklist |
| 2110 | CaseRec CR = WorkList.back(); |
| 2111 | WorkList.pop_back(); |
| 2112 | |
| 2113 | if (handleBitTestsSwitchCase(CR, WorkList, SV, Default)) |
| 2114 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2115 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2116 | // If the range has few cases (two or less) emit a series of specific |
| 2117 | // tests. |
| 2118 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2119 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2120 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2121 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2122 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2123 | // lowering the switch to a binary tree of conditional branches. |
| 2124 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2125 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2126 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2127 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2128 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2129 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2130 | } |
| 2131 | } |
| 2132 | |
| 2133 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2134 | void SelectionDAGLowering::visitFSub(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2135 | // -0.0 - X --> fneg |
| 2136 | const Type *Ty = I.getType(); |
| 2137 | if (isa<VectorType>(Ty)) { |
| 2138 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2139 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2140 | const Type *ElTy = DestTy->getElementType(); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2141 | unsigned VL = DestTy->getNumElements(); |
Owen Anderson | 0a5372e | 2009-07-13 04:09:18 +0000 | [diff] [blame] | 2142 | std::vector<Constant*> NZ(VL, Context->getConstantFPNegativeZero(ElTy)); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2143 | Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size()); |
| 2144 | if (CV == CNZ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2145 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2146 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2147 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2148 | return; |
| 2149 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2150 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2151 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2152 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
Owen Anderson | 0a5372e | 2009-07-13 04:09:18 +0000 | [diff] [blame] | 2153 | if (CFP->isExactlyValue( |
| 2154 | Context->getConstantFPNegativeZero(Ty)->getValueAPF())) { |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2155 | SDValue Op2 = getValue(I.getOperand(1)); |
| 2156 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
| 2157 | Op2.getValueType(), Op2)); |
| 2158 | return; |
| 2159 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2160 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2161 | visitBinary(I, ISD::FSUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2162 | } |
| 2163 | |
| 2164 | void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) { |
| 2165 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2166 | SDValue Op2 = getValue(I.getOperand(1)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2167 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2168 | setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2169 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2170 | } |
| 2171 | |
| 2172 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 2173 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2174 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2175 | if (!isa<VectorType>(I.getType()) && |
| 2176 | Op2.getValueType() != TLI.getShiftAmountTy()) { |
| 2177 | // If the operand is smaller than the shift count type, promote it. |
| 2178 | if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType())) |
| 2179 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
| 2180 | TLI.getShiftAmountTy(), Op2); |
| 2181 | // If the operand is larger than the shift count type but the shift |
| 2182 | // count type has enough bits to represent any shift value, truncate |
| 2183 | // it now. This is a common case and it exposes the truncate to |
| 2184 | // optimization early. |
| 2185 | else if (TLI.getShiftAmountTy().getSizeInBits() >= |
| 2186 | Log2_32_Ceil(Op2.getValueType().getSizeInBits())) |
| 2187 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2188 | TLI.getShiftAmountTy(), Op2); |
| 2189 | // Otherwise we'll need to temporarily settle for some other |
| 2190 | // convenient type; type legalization will make adjustments as |
| 2191 | // needed. |
| 2192 | else if (TLI.getPointerTy().bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2193 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2194 | TLI.getPointerTy(), Op2); |
| 2195 | else if (TLI.getPointerTy().bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2196 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2197 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2198 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2199 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2200 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2201 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2202 | } |
| 2203 | |
| 2204 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2205 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2206 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2207 | predicate = IC->getPredicate(); |
| 2208 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2209 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2210 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2211 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2212 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2213 | |
| 2214 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2215 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2216 | } |
| 2217 | |
| 2218 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2219 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2220 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2221 | predicate = FC->getPredicate(); |
| 2222 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2223 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2224 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2225 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2226 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2227 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2228 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2229 | } |
| 2230 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2231 | void SelectionDAGLowering::visitSelect(User &I) { |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2232 | SmallVector<MVT, 4> ValueVTs; |
| 2233 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2234 | unsigned NumValues = ValueVTs.size(); |
| 2235 | if (NumValues != 0) { |
| 2236 | SmallVector<SDValue, 4> Values(NumValues); |
| 2237 | SDValue Cond = getValue(I.getOperand(0)); |
| 2238 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2239 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2240 | |
| 2241 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2242 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2243 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2244 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2245 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2246 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2247 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2248 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2249 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2250 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2251 | } |
| 2252 | |
| 2253 | |
| 2254 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2255 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2256 | SDValue N = getValue(I.getOperand(0)); |
| 2257 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2258 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2259 | } |
| 2260 | |
| 2261 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2262 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2263 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2264 | SDValue N = getValue(I.getOperand(0)); |
| 2265 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2266 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2267 | } |
| 2268 | |
| 2269 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2270 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2271 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2272 | SDValue N = getValue(I.getOperand(0)); |
| 2273 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2274 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2275 | } |
| 2276 | |
| 2277 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2278 | // FPTrunc is never a no-op cast, no need to check |
| 2279 | SDValue N = getValue(I.getOperand(0)); |
| 2280 | MVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2281 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2282 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2283 | } |
| 2284 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2285 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2286 | // FPTrunc is never a no-op cast, no need to check |
| 2287 | SDValue N = getValue(I.getOperand(0)); |
| 2288 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2289 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2290 | } |
| 2291 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2292 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2293 | // FPToUI is never a no-op cast, no need to check |
| 2294 | SDValue N = getValue(I.getOperand(0)); |
| 2295 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2296 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2297 | } |
| 2298 | |
| 2299 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2300 | // FPToSI is never a no-op cast, no need to check |
| 2301 | SDValue N = getValue(I.getOperand(0)); |
| 2302 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2303 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2304 | } |
| 2305 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2306 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2307 | // UIToFP is never a no-op cast, no need to check |
| 2308 | SDValue N = getValue(I.getOperand(0)); |
| 2309 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2310 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2311 | } |
| 2312 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2313 | void SelectionDAGLowering::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2314 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2315 | SDValue N = getValue(I.getOperand(0)); |
| 2316 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2317 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2318 | } |
| 2319 | |
| 2320 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2321 | // What to do depends on the size of the integer and the size of the pointer. |
| 2322 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2323 | SDValue N = getValue(I.getOperand(0)); |
| 2324 | MVT SrcVT = N.getValueType(); |
| 2325 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2326 | SDValue Result; |
| 2327 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2328 | Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2329 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2330 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2331 | Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2332 | setValue(&I, Result); |
| 2333 | } |
| 2334 | |
| 2335 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2336 | // What to do depends on the size of the integer and the size of the pointer. |
| 2337 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2338 | SDValue N = getValue(I.getOperand(0)); |
| 2339 | MVT SrcVT = N.getValueType(); |
| 2340 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2341 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2342 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2343 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2344 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2345 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2346 | DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2347 | } |
| 2348 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2349 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2350 | SDValue N = getValue(I.getOperand(0)); |
| 2351 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2352 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2353 | // 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] | 2354 | // is either a BIT_CONVERT or a no-op. |
| 2355 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2356 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2357 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2358 | else |
| 2359 | setValue(&I, N); // noop cast. |
| 2360 | } |
| 2361 | |
| 2362 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2363 | SDValue InVec = getValue(I.getOperand(0)); |
| 2364 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2365 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2366 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2367 | getValue(I.getOperand(2))); |
| 2368 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2369 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2370 | TLI.getValueType(I.getType()), |
| 2371 | InVec, InVal, InIdx)); |
| 2372 | } |
| 2373 | |
| 2374 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2375 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2376 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2377 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2378 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2379 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2380 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2381 | } |
| 2382 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2383 | |
| 2384 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2385 | // from SIndx and increasing to the element length (undefs are allowed). |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2386 | static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) { |
| 2387 | unsigned MaskNumElts = Mask.size(); |
| 2388 | for (unsigned i = 0; i != MaskNumElts; ++i) |
| 2389 | if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx))) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2390 | return false; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2391 | return true; |
| 2392 | } |
| 2393 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2394 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2395 | SmallVector<int, 8> Mask; |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2396 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2397 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2398 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2399 | // Convert the ConstantVector mask operand into an array of ints, with -1 |
| 2400 | // representing undef values. |
| 2401 | SmallVector<Constant*, 8> MaskElts; |
Owen Anderson | 0a5372e | 2009-07-13 04:09:18 +0000 | [diff] [blame] | 2402 | cast<Constant>(I.getOperand(2))->getVectorElements(*Context, MaskElts); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2403 | unsigned MaskNumElts = MaskElts.size(); |
| 2404 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2405 | if (isa<UndefValue>(MaskElts[i])) |
| 2406 | Mask.push_back(-1); |
| 2407 | else |
| 2408 | Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue()); |
| 2409 | } |
| 2410 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2411 | MVT VT = TLI.getValueType(I.getType()); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2412 | MVT SrcVT = Src1.getValueType(); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2413 | unsigned SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2414 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2415 | if (SrcNumElts == MaskNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2416 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2417 | &Mask[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2418 | return; |
| 2419 | } |
| 2420 | |
| 2421 | // 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] | 2422 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2423 | // Mask is longer than the source vectors and is a multiple of the source |
| 2424 | // 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] | 2425 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2426 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2427 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2428 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2429 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2430 | return; |
| 2431 | } |
| 2432 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2433 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2434 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2435 | bool Src1U = Src1.getOpcode() == ISD::UNDEF; |
| 2436 | bool Src2U = Src2.getOpcode() == ISD::UNDEF; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2437 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2438 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2439 | SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); |
| 2440 | SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2441 | MOps1[0] = Src1; |
| 2442 | MOps2[0] = Src2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2443 | |
| 2444 | Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2445 | getCurDebugLoc(), VT, |
| 2446 | &MOps1[0], NumConcat); |
| 2447 | Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2448 | getCurDebugLoc(), VT, |
| 2449 | &MOps2[0], NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2450 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2451 | // Readjust mask for new input vector length. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2452 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2453 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2454 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2455 | if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2456 | MappedOps.push_back(Idx); |
| 2457 | else |
| 2458 | MappedOps.push_back(Idx + MaskNumElts - SrcNumElts); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2459 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2460 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2461 | &MappedOps[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2462 | return; |
| 2463 | } |
| 2464 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2465 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2466 | // Analyze the access pattern of the vector to see if we can extract |
| 2467 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2468 | // the range of elements the mask access on both vectors. |
| 2469 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2470 | int MaxRange[2] = {-1, -1}; |
| 2471 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2472 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2473 | int Idx = Mask[i]; |
| 2474 | int Input = 0; |
| 2475 | if (Idx < 0) |
| 2476 | continue; |
| 2477 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2478 | if (Idx >= (int)SrcNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2479 | Input = 1; |
| 2480 | Idx -= SrcNumElts; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2481 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2482 | if (Idx > MaxRange[Input]) |
| 2483 | MaxRange[Input] = Idx; |
| 2484 | if (Idx < MinRange[Input]) |
| 2485 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2486 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2487 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2488 | // Check if the access is smaller than the vector size and can we find |
| 2489 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2490 | 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] | 2491 | int StartIdx[2]; // StartIdx to extract from |
| 2492 | for (int Input=0; Input < 2; ++Input) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2493 | if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2494 | RangeUse[Input] = 0; // Unused |
| 2495 | StartIdx[Input] = 0; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2496 | } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2497 | // 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] | 2498 | // start index that is a multiple of the mask length. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2499 | if (MaxRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2500 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2501 | StartIdx[Input] = 0; |
| 2502 | } else { |
| 2503 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2504 | if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2505 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2506 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2507 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2508 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2509 | } |
| 2510 | |
| 2511 | if (RangeUse[0] == 0 && RangeUse[0] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2512 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2513 | return; |
| 2514 | } |
| 2515 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2516 | // Extract appropriate subvector and generate a vector shuffle |
| 2517 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2518 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2519 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2520 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2521 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2522 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2523 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2524 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2525 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2526 | // Calculate new mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2527 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2528 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2529 | int Idx = Mask[i]; |
| 2530 | if (Idx < 0) |
| 2531 | MappedOps.push_back(Idx); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2532 | else if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2533 | MappedOps.push_back(Idx - StartIdx[0]); |
| 2534 | else |
| 2535 | MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2536 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2537 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2538 | &MappedOps[0])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2539 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2540 | } |
| 2541 | } |
| 2542 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2543 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2544 | // replacing the shuffle with extract and build vector. |
| 2545 | // to insert and build vector. |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2546 | MVT EltVT = VT.getVectorElementType(); |
| 2547 | MVT PtrVT = TLI.getPointerTy(); |
| 2548 | SmallVector<SDValue,8> Ops; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2549 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2550 | if (Mask[i] < 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2551 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2552 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2553 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2554 | if (Idx < (int)SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2555 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2556 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2557 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2558 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2559 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2560 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2561 | } |
| 2562 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2563 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2564 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2565 | } |
| 2566 | |
| 2567 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2568 | const Value *Op0 = I.getOperand(0); |
| 2569 | const Value *Op1 = I.getOperand(1); |
| 2570 | const Type *AggTy = I.getType(); |
| 2571 | const Type *ValTy = Op1->getType(); |
| 2572 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2573 | bool FromUndef = isa<UndefValue>(Op1); |
| 2574 | |
| 2575 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2576 | I.idx_begin(), I.idx_end()); |
| 2577 | |
| 2578 | SmallVector<MVT, 4> AggValueVTs; |
| 2579 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
| 2580 | SmallVector<MVT, 4> ValValueVTs; |
| 2581 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2582 | |
| 2583 | unsigned NumAggValues = AggValueVTs.size(); |
| 2584 | unsigned NumValValues = ValValueVTs.size(); |
| 2585 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2586 | |
| 2587 | SDValue Agg = getValue(Op0); |
| 2588 | SDValue Val = getValue(Op1); |
| 2589 | unsigned i = 0; |
| 2590 | // Copy the beginning value(s) from the original aggregate. |
| 2591 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2592 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2593 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2594 | // Copy values from the inserted value(s). |
| 2595 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2596 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2597 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2598 | // Copy remaining value(s) from the original aggregate. |
| 2599 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2600 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2601 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2602 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2603 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2604 | DAG.getVTList(&AggValueVTs[0], NumAggValues), |
| 2605 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2606 | } |
| 2607 | |
| 2608 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2609 | const Value *Op0 = I.getOperand(0); |
| 2610 | const Type *AggTy = Op0->getType(); |
| 2611 | const Type *ValTy = I.getType(); |
| 2612 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2613 | |
| 2614 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2615 | I.idx_begin(), I.idx_end()); |
| 2616 | |
| 2617 | SmallVector<MVT, 4> ValValueVTs; |
| 2618 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2619 | |
| 2620 | unsigned NumValValues = ValValueVTs.size(); |
| 2621 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2622 | |
| 2623 | SDValue Agg = getValue(Op0); |
| 2624 | // Copy out the selected value(s). |
| 2625 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2626 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2627 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2628 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2629 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2630 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2631 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2632 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2633 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2634 | } |
| 2635 | |
| 2636 | |
| 2637 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2638 | SDValue N = getValue(I.getOperand(0)); |
| 2639 | const Type *Ty = I.getOperand(0)->getType(); |
| 2640 | |
| 2641 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2642 | OI != E; ++OI) { |
| 2643 | Value *Idx = *OI; |
| 2644 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2645 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2646 | if (Field) { |
| 2647 | // N = N + Offset |
| 2648 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2649 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2650 | DAG.getIntPtrConstant(Offset)); |
| 2651 | } |
| 2652 | Ty = StTy->getElementType(Field); |
| 2653 | } else { |
| 2654 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2655 | |
| 2656 | // If this is a constant subscript, handle it quickly. |
| 2657 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2658 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2659 | uint64_t Offs = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2660 | TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2661 | SDValue OffsVal; |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2662 | unsigned PtrBits = TLI.getPointerTy().getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2663 | if (PtrBits < 64) { |
| 2664 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2665 | TLI.getPointerTy(), |
| 2666 | DAG.getConstant(Offs, MVT::i64)); |
| 2667 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2668 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2669 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2670 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2671 | continue; |
| 2672 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2673 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2674 | // N = N + Idx * ElementSize; |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2675 | uint64_t ElementSize = TD->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2676 | SDValue IdxN = getValue(Idx); |
| 2677 | |
| 2678 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2679 | // it. |
| 2680 | if (IdxN.getValueType().bitsLT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2681 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2682 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2683 | else if (IdxN.getValueType().bitsGT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2684 | IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2685 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2686 | |
| 2687 | // If this is a multiply by a power of two, turn it into a shl |
| 2688 | // immediately. This is a very common case. |
| 2689 | if (ElementSize != 1) { |
| 2690 | if (isPowerOf2_64(ElementSize)) { |
| 2691 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2692 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2693 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2694 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2695 | } else { |
| 2696 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2697 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2698 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2699 | } |
| 2700 | } |
| 2701 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2702 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2703 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2704 | } |
| 2705 | } |
| 2706 | setValue(&I, N); |
| 2707 | } |
| 2708 | |
| 2709 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2710 | // If this is a fixed sized alloca in the entry block of the function, |
| 2711 | // allocate it statically on the stack. |
| 2712 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2713 | return; // getValue will auto-populate this. |
| 2714 | |
| 2715 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2716 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2717 | unsigned Align = |
| 2718 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2719 | I.getAlignment()); |
| 2720 | |
| 2721 | SDValue AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 2722 | |
| 2723 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(), |
| 2724 | AllocSize, |
| 2725 | DAG.getConstant(TySize, AllocSize.getValueType())); |
| 2726 | |
| 2727 | |
| 2728 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2729 | MVT IntPtr = TLI.getPointerTy(); |
| 2730 | if (IntPtr.bitsLT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2731 | AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2732 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2733 | else if (IntPtr.bitsGT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2734 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2735 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2736 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2737 | // Handle alignment. If the requested alignment is less than or equal to |
| 2738 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2739 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2740 | unsigned StackAlign = |
| 2741 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2742 | if (Align <= StackAlign) |
| 2743 | Align = 0; |
| 2744 | |
| 2745 | // Round the size of the allocation up to the stack alignment size |
| 2746 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2747 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2748 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2749 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2750 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2751 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2752 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2753 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2754 | |
| 2755 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2756 | SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2757 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2758 | VTs, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2759 | setValue(&I, DSA); |
| 2760 | DAG.setRoot(DSA.getValue(1)); |
| 2761 | |
| 2762 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2763 | // object. |
| 2764 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 2765 | } |
| 2766 | |
| 2767 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2768 | const Value *SV = I.getOperand(0); |
| 2769 | SDValue Ptr = getValue(SV); |
| 2770 | |
| 2771 | const Type *Ty = I.getType(); |
| 2772 | bool isVolatile = I.isVolatile(); |
| 2773 | unsigned Alignment = I.getAlignment(); |
| 2774 | |
| 2775 | SmallVector<MVT, 4> ValueVTs; |
| 2776 | SmallVector<uint64_t, 4> Offsets; |
| 2777 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2778 | unsigned NumValues = ValueVTs.size(); |
| 2779 | if (NumValues == 0) |
| 2780 | return; |
| 2781 | |
| 2782 | SDValue Root; |
| 2783 | bool ConstantMemory = false; |
| 2784 | if (I.isVolatile()) |
| 2785 | // Serialize volatile loads with other side effects. |
| 2786 | Root = getRoot(); |
| 2787 | else if (AA->pointsToConstantMemory(SV)) { |
| 2788 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2789 | Root = DAG.getEntryNode(); |
| 2790 | ConstantMemory = true; |
| 2791 | } else { |
| 2792 | // Do not serialize non-volatile loads against each other. |
| 2793 | Root = DAG.getRoot(); |
| 2794 | } |
| 2795 | |
| 2796 | SmallVector<SDValue, 4> Values(NumValues); |
| 2797 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2798 | MVT PtrVT = Ptr.getValueType(); |
| 2799 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2800 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2801 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2802 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2803 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2804 | SV, Offsets[i], |
| 2805 | isVolatile, Alignment); |
| 2806 | Values[i] = L; |
| 2807 | Chains[i] = L.getValue(1); |
| 2808 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2809 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2810 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2811 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2812 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2813 | &Chains[0], NumValues); |
| 2814 | if (isVolatile) |
| 2815 | DAG.setRoot(Chain); |
| 2816 | else |
| 2817 | PendingLoads.push_back(Chain); |
| 2818 | } |
| 2819 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2820 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2821 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2822 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2823 | } |
| 2824 | |
| 2825 | |
| 2826 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2827 | Value *SrcV = I.getOperand(0); |
| 2828 | Value *PtrV = I.getOperand(1); |
| 2829 | |
| 2830 | SmallVector<MVT, 4> ValueVTs; |
| 2831 | SmallVector<uint64_t, 4> Offsets; |
| 2832 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2833 | unsigned NumValues = ValueVTs.size(); |
| 2834 | if (NumValues == 0) |
| 2835 | return; |
| 2836 | |
| 2837 | // Get the lowered operands. Note that we do this after |
| 2838 | // checking if NumResults is zero, because with zero results |
| 2839 | // the operands won't have values in the map. |
| 2840 | SDValue Src = getValue(SrcV); |
| 2841 | SDValue Ptr = getValue(PtrV); |
| 2842 | |
| 2843 | SDValue Root = getRoot(); |
| 2844 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2845 | MVT PtrVT = Ptr.getValueType(); |
| 2846 | bool isVolatile = I.isVolatile(); |
| 2847 | unsigned Alignment = I.getAlignment(); |
| 2848 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2849 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2850 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2851 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2852 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2853 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2854 | PtrV, Offsets[i], |
| 2855 | isVolatile, Alignment); |
| 2856 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2857 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2858 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2859 | } |
| 2860 | |
| 2861 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2862 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2863 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2864 | unsigned Intrinsic) { |
| 2865 | bool HasChain = !I.doesNotAccessMemory(); |
| 2866 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2867 | |
| 2868 | // Build the operand list. |
| 2869 | SmallVector<SDValue, 8> Ops; |
| 2870 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2871 | if (OnlyLoad) { |
| 2872 | // We don't need to serialize loads against other loads. |
| 2873 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2874 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2875 | Ops.push_back(getRoot()); |
| 2876 | } |
| 2877 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2878 | |
| 2879 | // Info is set by getTgtMemInstrinsic |
| 2880 | TargetLowering::IntrinsicInfo Info; |
| 2881 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2882 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2883 | // 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] | 2884 | if (!IsTgtIntrinsic) |
| 2885 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2886 | |
| 2887 | // Add all operands of the call to the operand list. |
| 2888 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2889 | SDValue Op = getValue(I.getOperand(i)); |
| 2890 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2891 | "Intrinsic uses a non-legal type?"); |
| 2892 | Ops.push_back(Op); |
| 2893 | } |
| 2894 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2895 | std::vector<MVT> VTArray; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2896 | if (I.getType() != Type::VoidTy) { |
| 2897 | MVT VT = TLI.getValueType(I.getType()); |
| 2898 | if (VT.isVector()) { |
| 2899 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2900 | MVT EltVT = TLI.getValueType(DestTy->getElementType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2901 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2902 | VT = MVT::getVectorVT(EltVT, DestTy->getNumElements()); |
| 2903 | assert(VT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 2904 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2905 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2906 | assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?"); |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2907 | VTArray.push_back(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2908 | } |
| 2909 | if (HasChain) |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2910 | VTArray.push_back(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2911 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2912 | SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2913 | |
| 2914 | // Create the node. |
| 2915 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2916 | if (IsTgtIntrinsic) { |
| 2917 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2918 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2919 | VTs, &Ops[0], Ops.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2920 | Info.memVT, Info.ptrVal, Info.offset, |
| 2921 | Info.align, Info.vol, |
| 2922 | Info.readMem, Info.writeMem); |
| 2923 | } |
| 2924 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2925 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2926 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2927 | else if (I.getType() != Type::VoidTy) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2928 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2929 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2930 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2931 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2932 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2933 | |
| 2934 | if (HasChain) { |
| 2935 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 2936 | if (OnlyLoad) |
| 2937 | PendingLoads.push_back(Chain); |
| 2938 | else |
| 2939 | DAG.setRoot(Chain); |
| 2940 | } |
| 2941 | if (I.getType() != Type::VoidTy) { |
| 2942 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
| 2943 | MVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2944 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2945 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2946 | setValue(&I, Result); |
| 2947 | } |
| 2948 | } |
| 2949 | |
| 2950 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 2951 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 2952 | V = V->stripPointerCasts(); |
| 2953 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 2954 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 2955 | "TypeInfo must be a global variable or NULL"); |
| 2956 | return GV; |
| 2957 | } |
| 2958 | |
| 2959 | namespace llvm { |
| 2960 | |
| 2961 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 2962 | /// call, and add them to the specified machine basic block. |
| 2963 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 2964 | MachineBasicBlock *MBB) { |
| 2965 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 2966 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 2967 | assert(CE->getOpcode() == Instruction::BitCast && |
| 2968 | isa<Function>(CE->getOperand(0)) && |
| 2969 | "Personality should be a function"); |
| 2970 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 2971 | |
| 2972 | // Gather all the type infos for this landing pad and pass them along to |
| 2973 | // MachineModuleInfo. |
| 2974 | std::vector<GlobalVariable *> TyInfo; |
| 2975 | unsigned N = I.getNumOperands(); |
| 2976 | |
| 2977 | for (unsigned i = N - 1; i > 2; --i) { |
| 2978 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 2979 | unsigned FilterLength = CI->getZExtValue(); |
| 2980 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 2981 | assert (FirstCatch <= N && "Invalid filter length"); |
| 2982 | |
| 2983 | if (FirstCatch < N) { |
| 2984 | TyInfo.reserve(N - FirstCatch); |
| 2985 | for (unsigned j = FirstCatch; j < N; ++j) |
| 2986 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2987 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 2988 | TyInfo.clear(); |
| 2989 | } |
| 2990 | |
| 2991 | if (!FilterLength) { |
| 2992 | // Cleanup. |
| 2993 | MMI->addCleanup(MBB); |
| 2994 | } else { |
| 2995 | // Filter. |
| 2996 | TyInfo.reserve(FilterLength - 1); |
| 2997 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 2998 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2999 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 3000 | TyInfo.clear(); |
| 3001 | } |
| 3002 | |
| 3003 | N = i; |
| 3004 | } |
| 3005 | } |
| 3006 | |
| 3007 | if (N > 3) { |
| 3008 | TyInfo.reserve(N - 3); |
| 3009 | for (unsigned j = 3; j < N; ++j) |
| 3010 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3011 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3012 | } |
| 3013 | } |
| 3014 | |
| 3015 | } |
| 3016 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3017 | /// GetSignificand - Get the significand and build it into a floating-point |
| 3018 | /// number with exponent of 1: |
| 3019 | /// |
| 3020 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 3021 | /// |
| 3022 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3023 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3024 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
| 3025 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3026 | DAG.getConstant(0x007fffff, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3027 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3028 | DAG.getConstant(0x3f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3029 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3030 | } |
| 3031 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3032 | /// GetExponent - Get the exponent: |
| 3033 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3034 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3035 | /// |
| 3036 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3037 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3038 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3039 | DebugLoc dl) { |
| 3040 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3041 | DAG.getConstant(0x7f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3042 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3043 | DAG.getConstant(23, TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3044 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3045 | DAG.getConstant(127, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3046 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3047 | } |
| 3048 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3049 | /// getF32Constant - Get 32-bit floating point constant. |
| 3050 | static SDValue |
| 3051 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
| 3052 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
| 3053 | } |
| 3054 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3055 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3056 | /// visitIntrinsicCall: I is a call instruction |
| 3057 | /// Op is the associated NodeType for I |
| 3058 | const char * |
| 3059 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3060 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3061 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3062 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3063 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3064 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3065 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3066 | getValue(I.getOperand(2)), |
| 3067 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3068 | setValue(&I, L); |
| 3069 | DAG.setRoot(L.getValue(1)); |
| 3070 | return 0; |
| 3071 | } |
| 3072 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3073 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3074 | const char * |
| 3075 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3076 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3077 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3078 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3079 | SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); |
| 3080 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3081 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3082 | setValue(&I, Result); |
| 3083 | return 0; |
| 3084 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3085 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3086 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3087 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3088 | void |
| 3089 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3090 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3091 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3092 | |
| 3093 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3094 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3095 | SDValue Op = getValue(I.getOperand(1)); |
| 3096 | |
| 3097 | // Put the exponent in the right bit position for later addition to the |
| 3098 | // final result: |
| 3099 | // |
| 3100 | // #define LOG2OFe 1.4426950f |
| 3101 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3102 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3103 | getF32Constant(DAG, 0x3fb8aa3b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3104 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3105 | |
| 3106 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3107 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3108 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3109 | |
| 3110 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3111 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3112 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3113 | |
| 3114 | if (LimitFloatPrecision <= 6) { |
| 3115 | // For floating-point precision of 6: |
| 3116 | // |
| 3117 | // TwoToFractionalPartOfX = |
| 3118 | // 0.997535578f + |
| 3119 | // (0.735607626f + 0.252464424f * x) * x; |
| 3120 | // |
| 3121 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3122 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3123 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3124 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3125 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3126 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3127 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3128 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3129 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3130 | |
| 3131 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3132 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3133 | TwoToFracPartOfX, IntegerPartOfX); |
| 3134 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3135 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3136 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3137 | // For floating-point precision of 12: |
| 3138 | // |
| 3139 | // TwoToFractionalPartOfX = |
| 3140 | // 0.999892986f + |
| 3141 | // (0.696457318f + |
| 3142 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3143 | // |
| 3144 | // 0.000107046256 error, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3145 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3146 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3147 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3148 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3149 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3150 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3151 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3152 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3153 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3154 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3155 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3156 | |
| 3157 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3158 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3159 | TwoToFracPartOfX, IntegerPartOfX); |
| 3160 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3161 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3162 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3163 | // For floating-point precision of 18: |
| 3164 | // |
| 3165 | // TwoToFractionalPartOfX = |
| 3166 | // 0.999999982f + |
| 3167 | // (0.693148872f + |
| 3168 | // (0.240227044f + |
| 3169 | // (0.554906021e-1f + |
| 3170 | // (0.961591928e-2f + |
| 3171 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3172 | // |
| 3173 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3174 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3175 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3176 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3177 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3178 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3179 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3180 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3181 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3182 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3183 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3184 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3185 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3186 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3187 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3188 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3189 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3190 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3191 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3192 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3193 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3194 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3195 | |
| 3196 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3197 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3198 | TwoToFracPartOfX, IntegerPartOfX); |
| 3199 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3200 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3201 | } |
| 3202 | } else { |
| 3203 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3204 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3205 | getValue(I.getOperand(1)).getValueType(), |
| 3206 | getValue(I.getOperand(1))); |
| 3207 | } |
| 3208 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3209 | setValue(&I, result); |
| 3210 | } |
| 3211 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3212 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3213 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3214 | void |
| 3215 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3216 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3217 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3218 | |
| 3219 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3220 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3221 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3222 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3223 | |
| 3224 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3225 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3226 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3227 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3228 | |
| 3229 | // Get the significand and build it into a floating-point number with |
| 3230 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3231 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3232 | |
| 3233 | if (LimitFloatPrecision <= 6) { |
| 3234 | // For floating-point precision of 6: |
| 3235 | // |
| 3236 | // LogofMantissa = |
| 3237 | // -1.1609546f + |
| 3238 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3239 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3240 | // error 0.0034276066, which is better than 8 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3241 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3242 | getF32Constant(DAG, 0xbe74c456)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3243 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3244 | getF32Constant(DAG, 0x3fb3a2b1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3245 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3246 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3247 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3248 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3249 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3250 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3251 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3252 | // For floating-point precision of 12: |
| 3253 | // |
| 3254 | // LogOfMantissa = |
| 3255 | // -1.7417939f + |
| 3256 | // (2.8212026f + |
| 3257 | // (-1.4699568f + |
| 3258 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3259 | // |
| 3260 | // error 0.000061011436, which is 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3261 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3262 | getF32Constant(DAG, 0xbd67b6d6)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3263 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3264 | getF32Constant(DAG, 0x3ee4f4b8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3265 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3266 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3267 | getF32Constant(DAG, 0x3fbc278b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3268 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3269 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3270 | getF32Constant(DAG, 0x40348e95)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3271 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3272 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3273 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3274 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3275 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3276 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3277 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3278 | // For floating-point precision of 18: |
| 3279 | // |
| 3280 | // LogOfMantissa = |
| 3281 | // -2.1072184f + |
| 3282 | // (4.2372794f + |
| 3283 | // (-3.7029485f + |
| 3284 | // (2.2781945f + |
| 3285 | // (-0.87823314f + |
| 3286 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3287 | // |
| 3288 | // error 0.0000023660568, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3289 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3290 | getF32Constant(DAG, 0xbc91e5ac)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3291 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3292 | getF32Constant(DAG, 0x3e4350aa)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3293 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3294 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3295 | getF32Constant(DAG, 0x3f60d3e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3296 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3297 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3298 | getF32Constant(DAG, 0x4011cdf0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3299 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3300 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3301 | getF32Constant(DAG, 0x406cfd1c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3302 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3303 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3304 | getF32Constant(DAG, 0x408797cb)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3305 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3306 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3307 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3308 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3309 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3310 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3311 | } |
| 3312 | } else { |
| 3313 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3314 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3315 | getValue(I.getOperand(1)).getValueType(), |
| 3316 | getValue(I.getOperand(1))); |
| 3317 | } |
| 3318 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3319 | setValue(&I, result); |
| 3320 | } |
| 3321 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3322 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3323 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3324 | void |
| 3325 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3326 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3327 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3328 | |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3329 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3330 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3331 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3332 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3333 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3334 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3335 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3336 | |
| 3337 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3338 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3339 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3340 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3341 | // Different possible minimax approximations of significand in |
| 3342 | // floating-point for various degrees of accuracy over [1,2]. |
| 3343 | if (LimitFloatPrecision <= 6) { |
| 3344 | // For floating-point precision of 6: |
| 3345 | // |
| 3346 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3347 | // |
| 3348 | // error 0.0049451742, which is more than 7 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3349 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3350 | getF32Constant(DAG, 0xbeb08fe0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3351 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3352 | getF32Constant(DAG, 0x40019463)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3353 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3354 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3355 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3356 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3357 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3358 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3359 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3360 | // For floating-point precision of 12: |
| 3361 | // |
| 3362 | // Log2ofMantissa = |
| 3363 | // -2.51285454f + |
| 3364 | // (4.07009056f + |
| 3365 | // (-2.12067489f + |
| 3366 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3367 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3368 | // error 0.0000876136000, which is better than 13 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3369 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3370 | getF32Constant(DAG, 0xbda7262e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3371 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3372 | getF32Constant(DAG, 0x3f25280b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3373 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3374 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3375 | getF32Constant(DAG, 0x4007b923)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3376 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3377 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3378 | getF32Constant(DAG, 0x40823e2f)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3379 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3380 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3381 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3382 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3383 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3384 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3385 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3386 | // For floating-point precision of 18: |
| 3387 | // |
| 3388 | // Log2ofMantissa = |
| 3389 | // -3.0400495f + |
| 3390 | // (6.1129976f + |
| 3391 | // (-5.3420409f + |
| 3392 | // (3.2865683f + |
| 3393 | // (-1.2669343f + |
| 3394 | // (0.27515199f - |
| 3395 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3396 | // |
| 3397 | // error 0.0000018516, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3398 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3399 | getF32Constant(DAG, 0xbcd2769e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3400 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3401 | getF32Constant(DAG, 0x3e8ce0b9)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3402 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3403 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3404 | getF32Constant(DAG, 0x3fa22ae7)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3405 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3406 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3407 | getF32Constant(DAG, 0x40525723)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3408 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3409 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3410 | getF32Constant(DAG, 0x40aaf200)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3411 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3412 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3413 | getF32Constant(DAG, 0x40c39dad)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3414 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3415 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3416 | getF32Constant(DAG, 0x4042902c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3417 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3418 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3419 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3420 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3421 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3422 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3423 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3424 | getValue(I.getOperand(1)).getValueType(), |
| 3425 | getValue(I.getOperand(1))); |
| 3426 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3427 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3428 | setValue(&I, result); |
| 3429 | } |
| 3430 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3431 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3432 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3433 | void |
| 3434 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3435 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3436 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3437 | |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3438 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3439 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3440 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3441 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3442 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3443 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3444 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3445 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3446 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3447 | |
| 3448 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3449 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3450 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3451 | |
| 3452 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3453 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3454 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3455 | // Log10ofMantissa = |
| 3456 | // -0.50419619f + |
| 3457 | // (0.60948995f - 0.10380950f * x) * x; |
| 3458 | // |
| 3459 | // error 0.0014886165, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3460 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3461 | getF32Constant(DAG, 0xbdd49a13)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3462 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3463 | getF32Constant(DAG, 0x3f1c0789)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3464 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3465 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3466 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3467 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3468 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3469 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3470 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3471 | // For floating-point precision of 12: |
| 3472 | // |
| 3473 | // Log10ofMantissa = |
| 3474 | // -0.64831180f + |
| 3475 | // (0.91751397f + |
| 3476 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3477 | // |
| 3478 | // error 0.00019228036, which is better than 12 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3479 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3480 | getF32Constant(DAG, 0x3d431f31)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3481 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3482 | getF32Constant(DAG, 0x3ea21fb2)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3483 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3484 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3485 | getF32Constant(DAG, 0x3f6ae232)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3486 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3487 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3488 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3489 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3490 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3491 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3492 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3493 | // For floating-point precision of 18: |
| 3494 | // |
| 3495 | // Log10ofMantissa = |
| 3496 | // -0.84299375f + |
| 3497 | // (1.5327582f + |
| 3498 | // (-1.0688956f + |
| 3499 | // (0.49102474f + |
| 3500 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3501 | // |
| 3502 | // error 0.0000037995730, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3503 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3504 | getF32Constant(DAG, 0x3c5d51ce)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3505 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3506 | getF32Constant(DAG, 0x3e00685a)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3507 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3508 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3509 | getF32Constant(DAG, 0x3efb6798)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3510 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3511 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3512 | getF32Constant(DAG, 0x3f88d192)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3513 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3514 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3515 | getF32Constant(DAG, 0x3fc4316c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3516 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3517 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3518 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3519 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3520 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3521 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3522 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3523 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3524 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3525 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3526 | getValue(I.getOperand(1)).getValueType(), |
| 3527 | getValue(I.getOperand(1))); |
| 3528 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3529 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3530 | setValue(&I, result); |
| 3531 | } |
| 3532 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3533 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3534 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3535 | void |
| 3536 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3537 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3538 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3539 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3540 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3541 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3542 | SDValue Op = getValue(I.getOperand(1)); |
| 3543 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3544 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3545 | |
| 3546 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3547 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3548 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3549 | |
| 3550 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3551 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3552 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3553 | |
| 3554 | if (LimitFloatPrecision <= 6) { |
| 3555 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3556 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3557 | // TwoToFractionalPartOfX = |
| 3558 | // 0.997535578f + |
| 3559 | // (0.735607626f + 0.252464424f * x) * x; |
| 3560 | // |
| 3561 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3562 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3563 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3564 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3565 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3566 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3567 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3568 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3569 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3570 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3571 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3572 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3573 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3574 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3575 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3576 | // For floating-point precision of 12: |
| 3577 | // |
| 3578 | // TwoToFractionalPartOfX = |
| 3579 | // 0.999892986f + |
| 3580 | // (0.696457318f + |
| 3581 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3582 | // |
| 3583 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3584 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3585 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3586 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3587 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3588 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3589 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3590 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3591 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3592 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3593 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3594 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3595 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3596 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3597 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3598 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3599 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3600 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3601 | // For floating-point precision of 18: |
| 3602 | // |
| 3603 | // TwoToFractionalPartOfX = |
| 3604 | // 0.999999982f + |
| 3605 | // (0.693148872f + |
| 3606 | // (0.240227044f + |
| 3607 | // (0.554906021e-1f + |
| 3608 | // (0.961591928e-2f + |
| 3609 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3610 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3611 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3612 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3613 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3614 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3615 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3616 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3617 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3618 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3619 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3620 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3621 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3622 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3623 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3624 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3625 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3626 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3627 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3628 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3629 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3630 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3631 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3632 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3633 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3634 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3635 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3636 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3637 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3638 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3639 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3640 | getValue(I.getOperand(1)).getValueType(), |
| 3641 | getValue(I.getOperand(1))); |
| 3642 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3643 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3644 | setValue(&I, result); |
| 3645 | } |
| 3646 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3647 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3648 | /// limited-precision mode with x == 10.0f. |
| 3649 | void |
| 3650 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3651 | SDValue result; |
| 3652 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3653 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3654 | bool IsExp10 = false; |
| 3655 | |
| 3656 | if (getValue(Val).getValueType() == MVT::f32 && |
Bill Wendling | 277fc24 | 2008-09-10 00:24:59 +0000 | [diff] [blame] | 3657 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3658 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3659 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3660 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3661 | APFloat Ten(10.0f); |
| 3662 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3663 | } |
| 3664 | } |
| 3665 | } |
| 3666 | |
| 3667 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3668 | SDValue Op = getValue(I.getOperand(2)); |
| 3669 | |
| 3670 | // Put the exponent in the right bit position for later addition to the |
| 3671 | // final result: |
| 3672 | // |
| 3673 | // #define LOG2OF10 3.3219281f |
| 3674 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3675 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3676 | getF32Constant(DAG, 0x40549a78)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3677 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3678 | |
| 3679 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3680 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3681 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3682 | |
| 3683 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3684 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3685 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3686 | |
| 3687 | if (LimitFloatPrecision <= 6) { |
| 3688 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3689 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3690 | // twoToFractionalPartOfX = |
| 3691 | // 0.997535578f + |
| 3692 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3693 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3694 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3695 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3696 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3697 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3698 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3699 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3700 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3701 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3702 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3703 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3704 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3705 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3706 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
| 3707 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3708 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3709 | // For floating-point precision of 12: |
| 3710 | // |
| 3711 | // TwoToFractionalPartOfX = |
| 3712 | // 0.999892986f + |
| 3713 | // (0.696457318f + |
| 3714 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3715 | // |
| 3716 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3717 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3718 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3719 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3720 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3721 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3722 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3723 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3724 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3725 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3726 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3727 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3728 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3729 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3730 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3731 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3732 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3733 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3734 | // For floating-point precision of 18: |
| 3735 | // |
| 3736 | // TwoToFractionalPartOfX = |
| 3737 | // 0.999999982f + |
| 3738 | // (0.693148872f + |
| 3739 | // (0.240227044f + |
| 3740 | // (0.554906021e-1f + |
| 3741 | // (0.961591928e-2f + |
| 3742 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3743 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3744 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3745 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3746 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3747 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3748 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3749 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3750 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3751 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3752 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3753 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3754 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3755 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3756 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3757 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3758 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3759 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3760 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3761 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3762 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3763 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3764 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3765 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3766 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3767 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3768 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3769 | } |
| 3770 | } else { |
| 3771 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3772 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3773 | getValue(I.getOperand(1)).getValueType(), |
| 3774 | getValue(I.getOperand(1)), |
| 3775 | getValue(I.getOperand(2))); |
| 3776 | } |
| 3777 | |
| 3778 | setValue(&I, result); |
| 3779 | } |
| 3780 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3781 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3782 | /// we want to emit this as a call to a named external function, return the name |
| 3783 | /// otherwise lower it and return null. |
| 3784 | const char * |
| 3785 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3786 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3787 | switch (Intrinsic) { |
| 3788 | default: |
| 3789 | // By default, turn this into a target intrinsic node. |
| 3790 | visitTargetIntrinsic(I, Intrinsic); |
| 3791 | return 0; |
| 3792 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3793 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3794 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3795 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3796 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3797 | getValue(I.getOperand(1)))); |
| 3798 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3799 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3800 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3801 | getValue(I.getOperand(1)))); |
| 3802 | return 0; |
| 3803 | case Intrinsic::setjmp: |
| 3804 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3805 | break; |
| 3806 | case Intrinsic::longjmp: |
| 3807 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3808 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3809 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3810 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3811 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3812 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3813 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3814 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3815 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3816 | return 0; |
| 3817 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3818 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3819 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3820 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3821 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3822 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3823 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3824 | I.getOperand(1), 0)); |
| 3825 | return 0; |
| 3826 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3827 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3828 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3829 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3830 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3831 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3832 | |
| 3833 | // If the source and destination are known to not be aliases, we can |
| 3834 | // lower memmove as memcpy. |
| 3835 | uint64_t Size = -1ULL; |
| 3836 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3837 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3838 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3839 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3840 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3841 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3842 | return 0; |
| 3843 | } |
| 3844 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3845 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3846 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3847 | return 0; |
| 3848 | } |
| 3849 | case Intrinsic::dbg_stoppoint: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3850 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3851 | if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3852 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3853 | DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo()); |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3854 | setCurDebugLoc(Loc); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3855 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 3856 | if (OptLevel == CodeGenOpt::None) |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3857 | DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(), |
Dale Johannesen | beaec4c | 2009-03-25 17:36:08 +0000 | [diff] [blame] | 3858 | SPI.getLine(), |
| 3859 | SPI.getColumn(), |
| 3860 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3861 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3862 | return 0; |
| 3863 | } |
| 3864 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3865 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3866 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3867 | if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW |
| 3868 | && DW->ShouldEmitDwarfDebug()) { |
Bill Wendling | df7d5d3 | 2009-05-21 00:04:55 +0000 | [diff] [blame] | 3869 | unsigned LabelID = |
| 3870 | DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3871 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3872 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3873 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3874 | return 0; |
| 3875 | } |
| 3876 | case Intrinsic::dbg_region_end: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3877 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3878 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3879 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3880 | if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW |
| 3881 | || !DW->ShouldEmitDwarfDebug()) |
| 3882 | return 0; |
Bill Wendling | 6c4311d | 2009-05-08 21:14:49 +0000 | [diff] [blame] | 3883 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3884 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3885 | DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext())); |
| 3886 | |
| 3887 | if (isInlinedFnEnd(REI, MF.getFunction())) { |
| 3888 | // This is end of inlined function. Debugging information for inlined |
| 3889 | // function is not handled yet (only supported by FastISel). |
| 3890 | if (OptLevel == CodeGenOpt::None) { |
| 3891 | unsigned ID = DW->RecordInlinedFnEnd(Subprogram); |
| 3892 | if (ID != 0) |
| 3893 | // Returned ID is 0 if this is unbalanced "end of inlined |
| 3894 | // scope". This could happen if optimizer eats dbg intrinsics or |
| 3895 | // "beginning of inlined scope" is not recoginized due to missing |
| 3896 | // location info. In such cases, do ignore this region.end. |
| 3897 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3898 | getRoot(), ID)); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3899 | } |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3900 | return 0; |
| 3901 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3902 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3903 | unsigned LabelID = |
| 3904 | DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext())); |
| 3905 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3906 | getRoot(), LabelID)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3907 | return 0; |
| 3908 | } |
| 3909 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3910 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3911 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3912 | if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None) || !DW |
| 3913 | || !DW->ShouldEmitDwarfDebug()) |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3914 | return 0; |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3915 | |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3916 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3917 | // This is a beginning of an inlined function. |
| 3918 | if (isInlinedFnStart(FSI, MF.getFunction())) { |
| 3919 | if (OptLevel != CodeGenOpt::None) |
| 3920 | // FIXME: Debugging informaation for inlined function is only |
| 3921 | // supported at CodeGenOpt::Node. |
| 3922 | return 0; |
| 3923 | |
Bill Wendling | c677fe5 | 2009-05-10 00:10:50 +0000 | [diff] [blame] | 3924 | DebugLoc PrevLoc = CurDebugLoc; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3925 | // If llvm.dbg.func.start is seen in a new block before any |
| 3926 | // llvm.dbg.stoppoint intrinsic then the location info is unknown. |
| 3927 | // FIXME : Why DebugLoc is reset at the beginning of each block ? |
| 3928 | if (PrevLoc.isUnknown()) |
| 3929 | return 0; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3930 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3931 | // Record the source line. |
| 3932 | setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
| 3933 | |
| 3934 | DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc); |
| 3935 | DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram())); |
| 3936 | DICompileUnit CU(PrevLocTpl.CompileUnit); |
| 3937 | unsigned LabelID = DW->RecordInlinedFnStart(SP, CU, |
| 3938 | PrevLocTpl.Line, |
| 3939 | PrevLocTpl.Col); |
| 3940 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3941 | getRoot(), LabelID)); |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3942 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3943 | } |
| 3944 | |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3945 | // This is a beginning of a new function. |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3946 | MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3947 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3948 | // llvm.dbg.func_start also defines beginning of function scope. |
| 3949 | DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3950 | return 0; |
| 3951 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3952 | case Intrinsic::dbg_declare: { |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3953 | if (OptLevel != CodeGenOpt::None) |
| 3954 | // FIXME: Variable debug info is not supported here. |
| 3955 | return 0; |
| 3956 | |
| 3957 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 3958 | if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None)) |
| 3959 | return 0; |
| 3960 | |
| 3961 | Value *Variable = DI.getVariable(); |
| 3962 | DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(), |
| 3963 | getValue(DI.getAddress()), getValue(Variable))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3964 | return 0; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3965 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3966 | case Intrinsic::eh_exception: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3967 | // Insert the EXCEPTIONADDR instruction. |
Duncan Sands | b0f1e17 | 2009-05-22 20:36:31 +0000 | [diff] [blame] | 3968 | assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3969 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
| 3970 | SDValue Ops[1]; |
| 3971 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3972 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3973 | setValue(&I, Op); |
| 3974 | DAG.setRoot(Op.getValue(1)); |
| 3975 | return 0; |
| 3976 | } |
| 3977 | |
| 3978 | case Intrinsic::eh_selector_i32: |
| 3979 | case Intrinsic::eh_selector_i64: { |
| 3980 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 3981 | MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? |
| 3982 | MVT::i32 : MVT::i64); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3983 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3984 | if (MMI) { |
| 3985 | if (CurMBB->isLandingPad()) |
| 3986 | AddCatchInfo(I, MMI, CurMBB); |
| 3987 | else { |
| 3988 | #ifndef NDEBUG |
| 3989 | FuncInfo.CatchInfoLost.insert(&I); |
| 3990 | #endif |
| 3991 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 3992 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 3993 | if (Reg) CurMBB->addLiveIn(Reg); |
| 3994 | } |
| 3995 | |
| 3996 | // Insert the EHSELECTION instruction. |
| 3997 | SDVTList VTs = DAG.getVTList(VT, MVT::Other); |
| 3998 | SDValue Ops[2]; |
| 3999 | Ops[0] = getValue(I.getOperand(1)); |
| 4000 | Ops[1] = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4001 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4002 | setValue(&I, Op); |
| 4003 | DAG.setRoot(Op.getValue(1)); |
| 4004 | } else { |
| 4005 | setValue(&I, DAG.getConstant(0, VT)); |
| 4006 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4007 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4008 | return 0; |
| 4009 | } |
| 4010 | |
| 4011 | case Intrinsic::eh_typeid_for_i32: |
| 4012 | case Intrinsic::eh_typeid_for_i64: { |
| 4013 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4014 | MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
| 4015 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4016 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4017 | if (MMI) { |
| 4018 | // Find the type id for the given typeinfo. |
| 4019 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4020 | |
| 4021 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4022 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4023 | } else { |
| 4024 | // Return something different to eh_selector. |
| 4025 | setValue(&I, DAG.getConstant(1, VT)); |
| 4026 | } |
| 4027 | |
| 4028 | return 0; |
| 4029 | } |
| 4030 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4031 | case Intrinsic::eh_return_i32: |
| 4032 | case Intrinsic::eh_return_i64: |
| 4033 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4034 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4035 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4036 | MVT::Other, |
| 4037 | getControlRoot(), |
| 4038 | getValue(I.getOperand(1)), |
| 4039 | getValue(I.getOperand(2)))); |
| 4040 | } else { |
| 4041 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4042 | } |
| 4043 | |
| 4044 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4045 | case Intrinsic::eh_unwind_init: |
| 4046 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4047 | MMI->setCallsUnwindInit(true); |
| 4048 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4049 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4050 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4051 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4052 | case Intrinsic::eh_dwarf_cfa: { |
| 4053 | MVT VT = getValue(I.getOperand(1)).getValueType(); |
| 4054 | SDValue CfaArg; |
| 4055 | if (VT.bitsGT(TLI.getPointerTy())) |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4056 | CfaArg = DAG.getNode(ISD::TRUNCATE, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4057 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
| 4058 | else |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4059 | CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4060 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4061 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4062 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4063 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4064 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4065 | TLI.getPointerTy()), |
| 4066 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4067 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4068 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4069 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4070 | TLI.getPointerTy(), |
| 4071 | DAG.getConstant(0, |
| 4072 | TLI.getPointerTy())), |
| 4073 | Offset)); |
| 4074 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4075 | } |
| 4076 | |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4077 | case Intrinsic::convertff: |
| 4078 | case Intrinsic::convertfsi: |
| 4079 | case Intrinsic::convertfui: |
| 4080 | case Intrinsic::convertsif: |
| 4081 | case Intrinsic::convertuif: |
| 4082 | case Intrinsic::convertss: |
| 4083 | case Intrinsic::convertsu: |
| 4084 | case Intrinsic::convertus: |
| 4085 | case Intrinsic::convertuu: { |
| 4086 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4087 | switch (Intrinsic) { |
| 4088 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4089 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4090 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4091 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4092 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4093 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4094 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4095 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4096 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4097 | } |
| 4098 | MVT DestVT = TLI.getValueType(I.getType()); |
| 4099 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4100 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4101 | DAG.getValueType(DestVT), |
| 4102 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4103 | getValue(I.getOperand(2)), |
| 4104 | getValue(I.getOperand(3)), |
| 4105 | Code)); |
| 4106 | return 0; |
| 4107 | } |
| 4108 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4109 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4110 | setValue(&I, DAG.getNode(ISD::FSQRT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4111 | getValue(I.getOperand(1)).getValueType(), |
| 4112 | getValue(I.getOperand(1)))); |
| 4113 | return 0; |
| 4114 | case Intrinsic::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4115 | setValue(&I, DAG.getNode(ISD::FPOWI, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4116 | getValue(I.getOperand(1)).getValueType(), |
| 4117 | getValue(I.getOperand(1)), |
| 4118 | getValue(I.getOperand(2)))); |
| 4119 | return 0; |
| 4120 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4121 | setValue(&I, DAG.getNode(ISD::FSIN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4122 | getValue(I.getOperand(1)).getValueType(), |
| 4123 | getValue(I.getOperand(1)))); |
| 4124 | return 0; |
| 4125 | case Intrinsic::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4126 | setValue(&I, DAG.getNode(ISD::FCOS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4127 | getValue(I.getOperand(1)).getValueType(), |
| 4128 | getValue(I.getOperand(1)))); |
| 4129 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4130 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4131 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4132 | return 0; |
| 4133 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4134 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4135 | return 0; |
| 4136 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4137 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4138 | return 0; |
| 4139 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4140 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4141 | return 0; |
| 4142 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4143 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4144 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4145 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4146 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4147 | return 0; |
| 4148 | case Intrinsic::pcmarker: { |
| 4149 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4150 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4151 | return 0; |
| 4152 | } |
| 4153 | case Intrinsic::readcyclecounter: { |
| 4154 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4155 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4156 | DAG.getVTList(MVT::i64, MVT::Other), |
| 4157 | &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4158 | setValue(&I, Tmp); |
| 4159 | DAG.setRoot(Tmp.getValue(1)); |
| 4160 | return 0; |
| 4161 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4162 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4163 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4164 | getValue(I.getOperand(1)).getValueType(), |
| 4165 | getValue(I.getOperand(1)))); |
| 4166 | return 0; |
| 4167 | case Intrinsic::cttz: { |
| 4168 | SDValue Arg = getValue(I.getOperand(1)); |
| 4169 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4170 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4171 | setValue(&I, result); |
| 4172 | return 0; |
| 4173 | } |
| 4174 | case Intrinsic::ctlz: { |
| 4175 | SDValue Arg = getValue(I.getOperand(1)); |
| 4176 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4177 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4178 | setValue(&I, result); |
| 4179 | return 0; |
| 4180 | } |
| 4181 | case Intrinsic::ctpop: { |
| 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::CTPOP, 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::stacksave: { |
| 4189 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4190 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4191 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4192 | setValue(&I, Tmp); |
| 4193 | DAG.setRoot(Tmp.getValue(1)); |
| 4194 | return 0; |
| 4195 | } |
| 4196 | case Intrinsic::stackrestore: { |
| 4197 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4198 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4199 | return 0; |
| 4200 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4201 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4202 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4203 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4204 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 4205 | MVT PtrTy = TLI.getPointerTy(); |
| 4206 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4207 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4208 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4209 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4210 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4211 | MFI->setStackProtectorIndex(FI); |
| 4212 | |
| 4213 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4214 | |
| 4215 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4216 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4217 | PseudoSourceValue::getFixedStack(FI), |
| 4218 | 0, true); |
| 4219 | setValue(&I, Result); |
| 4220 | DAG.setRoot(Result); |
| 4221 | return 0; |
| 4222 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4223 | case Intrinsic::var_annotation: |
| 4224 | // Discard annotate attributes |
| 4225 | return 0; |
| 4226 | |
| 4227 | case Intrinsic::init_trampoline: { |
| 4228 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4229 | |
| 4230 | SDValue Ops[6]; |
| 4231 | Ops[0] = getRoot(); |
| 4232 | Ops[1] = getValue(I.getOperand(1)); |
| 4233 | Ops[2] = getValue(I.getOperand(2)); |
| 4234 | Ops[3] = getValue(I.getOperand(3)); |
| 4235 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4236 | Ops[5] = DAG.getSrcValue(F); |
| 4237 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4238 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4239 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), |
| 4240 | Ops, 6); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4241 | |
| 4242 | setValue(&I, Tmp); |
| 4243 | DAG.setRoot(Tmp.getValue(1)); |
| 4244 | return 0; |
| 4245 | } |
| 4246 | |
| 4247 | case Intrinsic::gcroot: |
| 4248 | if (GFI) { |
| 4249 | Value *Alloca = I.getOperand(1); |
| 4250 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4251 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4252 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4253 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4254 | } |
| 4255 | return 0; |
| 4256 | |
| 4257 | case Intrinsic::gcread: |
| 4258 | case Intrinsic::gcwrite: |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 4259 | LLVM_UNREACHABLE("GC failed to lower gcread/gcwrite intrinsics!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4260 | return 0; |
| 4261 | |
| 4262 | case Intrinsic::flt_rounds: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4263 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4264 | return 0; |
| 4265 | } |
| 4266 | |
| 4267 | case Intrinsic::trap: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4268 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4269 | return 0; |
| 4270 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4271 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4272 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4273 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4274 | case Intrinsic::sadd_with_overflow: |
| 4275 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4276 | case Intrinsic::usub_with_overflow: |
| 4277 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4278 | case Intrinsic::ssub_with_overflow: |
| 4279 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4280 | case Intrinsic::umul_with_overflow: |
| 4281 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4282 | case Intrinsic::smul_with_overflow: |
| 4283 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4284 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4285 | case Intrinsic::prefetch: { |
| 4286 | SDValue Ops[4]; |
| 4287 | Ops[0] = getRoot(); |
| 4288 | Ops[1] = getValue(I.getOperand(1)); |
| 4289 | Ops[2] = getValue(I.getOperand(2)); |
| 4290 | Ops[3] = getValue(I.getOperand(3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4291 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4292 | return 0; |
| 4293 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4294 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4295 | case Intrinsic::memory_barrier: { |
| 4296 | SDValue Ops[6]; |
| 4297 | Ops[0] = getRoot(); |
| 4298 | for (int x = 1; x < 6; ++x) |
| 4299 | Ops[x] = getValue(I.getOperand(x)); |
| 4300 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4301 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4302 | return 0; |
| 4303 | } |
| 4304 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4305 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4306 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4307 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4308 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4309 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4310 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4311 | getValue(I.getOperand(2)), |
| 4312 | getValue(I.getOperand(3)), |
| 4313 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4314 | setValue(&I, L); |
| 4315 | DAG.setRoot(L.getValue(1)); |
| 4316 | return 0; |
| 4317 | } |
| 4318 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4319 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4320 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4321 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4322 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4323 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4324 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4325 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4326 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4327 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4328 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4329 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4330 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4331 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4332 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4333 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4334 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4335 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4336 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4337 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4338 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4339 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4340 | } |
| 4341 | } |
| 4342 | |
| 4343 | |
| 4344 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
| 4345 | bool IsTailCall, |
| 4346 | MachineBasicBlock *LandingPad) { |
| 4347 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4348 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4349 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4350 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4351 | |
| 4352 | TargetLowering::ArgListTy Args; |
| 4353 | TargetLowering::ArgListEntry Entry; |
| 4354 | Args.reserve(CS.arg_size()); |
| 4355 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 4356 | i != e; ++i) { |
| 4357 | SDValue ArgNode = getValue(*i); |
| 4358 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4359 | |
| 4360 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4361 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4362 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4363 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4364 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4365 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4366 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4367 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4368 | Args.push_back(Entry); |
| 4369 | } |
| 4370 | |
| 4371 | if (LandingPad && MMI) { |
| 4372 | // Insert a label before the invoke call to mark the try range. This can be |
| 4373 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4374 | BeginLabel = MMI->NextLabelID(); |
| 4375 | // Both PendingLoads and PendingExports must be flushed here; |
| 4376 | // this call might not return. |
| 4377 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4378 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4379 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4380 | } |
| 4381 | |
| 4382 | std::pair<SDValue,SDValue> Result = |
| 4383 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4384 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4385 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 4386 | CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4387 | CS.getCallingConv(), |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 4388 | IsTailCall && PerformTailCallOpt, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4389 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4390 | if (CS.getType() != Type::VoidTy) |
| 4391 | setValue(CS.getInstruction(), Result.first); |
| 4392 | DAG.setRoot(Result.second); |
| 4393 | |
| 4394 | if (LandingPad && MMI) { |
| 4395 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4396 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4397 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4398 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4399 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4400 | |
| 4401 | // Inform MachineModuleInfo of range. |
| 4402 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4403 | } |
| 4404 | } |
| 4405 | |
| 4406 | |
| 4407 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4408 | const char *RenameFn = 0; |
| 4409 | if (Function *F = I.getCalledFunction()) { |
| 4410 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4411 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4412 | if (II) { |
| 4413 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4414 | RenameFn = visitIntrinsicCall(I, IID); |
| 4415 | if (!RenameFn) |
| 4416 | return; |
| 4417 | } |
| 4418 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4419 | if (unsigned IID = F->getIntrinsicID()) { |
| 4420 | RenameFn = visitIntrinsicCall(I, IID); |
| 4421 | if (!RenameFn) |
| 4422 | return; |
| 4423 | } |
| 4424 | } |
| 4425 | |
| 4426 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4427 | // can't be a library call. |
| 4428 | unsigned NameLen = F->getNameLen(); |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 4429 | if (!F->hasLocalLinkage() && NameLen) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4430 | const char *NameStr = F->getNameStart(); |
| 4431 | if (NameStr[0] == 'c' && |
| 4432 | ((NameLen == 8 && !strcmp(NameStr, "copysign")) || |
| 4433 | (NameLen == 9 && !strcmp(NameStr, "copysignf")))) { |
| 4434 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4435 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4436 | I.getType() == I.getOperand(1)->getType() && |
| 4437 | I.getType() == I.getOperand(2)->getType()) { |
| 4438 | SDValue LHS = getValue(I.getOperand(1)); |
| 4439 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4440 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4441 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4442 | return; |
| 4443 | } |
| 4444 | } else if (NameStr[0] == 'f' && |
| 4445 | ((NameLen == 4 && !strcmp(NameStr, "fabs")) || |
| 4446 | (NameLen == 5 && !strcmp(NameStr, "fabsf")) || |
| 4447 | (NameLen == 5 && !strcmp(NameStr, "fabsl")))) { |
| 4448 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4449 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4450 | I.getType() == I.getOperand(1)->getType()) { |
| 4451 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4452 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4453 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4454 | return; |
| 4455 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4456 | } else if (NameStr[0] == 's' && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4457 | ((NameLen == 3 && !strcmp(NameStr, "sin")) || |
| 4458 | (NameLen == 4 && !strcmp(NameStr, "sinf")) || |
| 4459 | (NameLen == 4 && !strcmp(NameStr, "sinl")))) { |
| 4460 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4461 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4462 | I.getType() == I.getOperand(1)->getType()) { |
| 4463 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4464 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4465 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4466 | return; |
| 4467 | } |
| 4468 | } else if (NameStr[0] == 'c' && |
| 4469 | ((NameLen == 3 && !strcmp(NameStr, "cos")) || |
| 4470 | (NameLen == 4 && !strcmp(NameStr, "cosf")) || |
| 4471 | (NameLen == 4 && !strcmp(NameStr, "cosl")))) { |
| 4472 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4473 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4474 | I.getType() == I.getOperand(1)->getType()) { |
| 4475 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4476 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4477 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4478 | return; |
| 4479 | } |
| 4480 | } |
| 4481 | } |
| 4482 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4483 | visitInlineAsm(&I); |
| 4484 | return; |
| 4485 | } |
| 4486 | |
| 4487 | SDValue Callee; |
| 4488 | if (!RenameFn) |
| 4489 | Callee = getValue(I.getOperand(0)); |
| 4490 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4491 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4492 | |
| 4493 | LowerCallTo(&I, Callee, I.isTailCall()); |
| 4494 | } |
| 4495 | |
| 4496 | |
| 4497 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4498 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4499 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4500 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4501 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4502 | SDValue &Chain, |
| 4503 | SDValue *Flag) const { |
| 4504 | // Assemble the legal parts into the final values. |
| 4505 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4506 | SmallVector<SDValue, 8> Parts; |
| 4507 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4508 | // Copy the legal parts from the registers. |
| 4509 | MVT ValueVT = ValueVTs[Value]; |
| 4510 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 4511 | MVT RegisterVT = RegVTs[Value]; |
| 4512 | |
| 4513 | Parts.resize(NumRegs); |
| 4514 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4515 | SDValue P; |
| 4516 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4517 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4518 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4519 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4520 | *Flag = P.getValue(2); |
| 4521 | } |
| 4522 | Chain = P.getValue(1); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4523 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4524 | // If the source register was virtual and if we know something about it, |
| 4525 | // add an assert node. |
| 4526 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4527 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4528 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4529 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4530 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4531 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4532 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4533 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4534 | unsigned NumSignBits = LOI.NumSignBits; |
| 4535 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4536 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4537 | // FIXME: We capture more information than the dag can represent. For |
| 4538 | // now, just use the tightest assertzext/assertsext possible. |
| 4539 | bool isSExt = true; |
| 4540 | MVT FromVT(MVT::Other); |
| 4541 | if (NumSignBits == RegSize) |
| 4542 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
| 4543 | else if (NumZeroBits >= RegSize-1) |
| 4544 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
| 4545 | else if (NumSignBits > RegSize-8) |
| 4546 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4547 | else if (NumZeroBits >= RegSize-8) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4548 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
| 4549 | else if (NumSignBits > RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4550 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4551 | else if (NumZeroBits >= RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4552 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4553 | else if (NumSignBits > RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4554 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4555 | else if (NumZeroBits >= RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4556 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4557 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4558 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4559 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4560 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4561 | |
| 4562 | } |
| 4563 | } |
| 4564 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4565 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4566 | Parts[i] = P; |
| 4567 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4568 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4569 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4570 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4571 | Part += NumRegs; |
| 4572 | Parts.clear(); |
| 4573 | } |
| 4574 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4575 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4576 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4577 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4578 | } |
| 4579 | |
| 4580 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4581 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4582 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4583 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4584 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4585 | SDValue &Chain, SDValue *Flag) const { |
| 4586 | // Get the list of the values's legal parts. |
| 4587 | unsigned NumRegs = Regs.size(); |
| 4588 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4589 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4590 | MVT ValueVT = ValueVTs[Value]; |
| 4591 | unsigned NumParts = TLI->getNumRegisters(ValueVT); |
| 4592 | MVT RegisterVT = RegVTs[Value]; |
| 4593 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4594 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4595 | &Parts[Part], NumParts, RegisterVT); |
| 4596 | Part += NumParts; |
| 4597 | } |
| 4598 | |
| 4599 | // Copy the parts into the registers. |
| 4600 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4601 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4602 | SDValue Part; |
| 4603 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4604 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4605 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4606 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4607 | *Flag = Part.getValue(1); |
| 4608 | } |
| 4609 | Chains[i] = Part.getValue(0); |
| 4610 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4611 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4612 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4613 | // 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] | 4614 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4615 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4616 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4617 | // user as well as a successor (the TF operands are flagged to the user). |
| 4618 | // c1, f1 = CopyToReg |
| 4619 | // c2, f2 = CopyToReg |
| 4620 | // c3 = TokenFactor c1, c2 |
| 4621 | // ... |
| 4622 | // = op c3, ..., f2 |
| 4623 | Chain = Chains[NumRegs-1]; |
| 4624 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4625 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4626 | } |
| 4627 | |
| 4628 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4629 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4630 | /// values added into it. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4631 | void RegsForValue::AddInlineAsmOperands(unsigned Code, |
| 4632 | bool HasMatching,unsigned MatchingIdx, |
| 4633 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4634 | std::vector<SDValue> &Ops) const { |
| 4635 | MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4636 | assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!"); |
| 4637 | unsigned Flag = Code | (Regs.size() << 3); |
| 4638 | if (HasMatching) |
| 4639 | Flag |= 0x80000000 | (MatchingIdx << 16); |
| 4640 | Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4641 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4642 | unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]); |
| 4643 | MVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4644 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4645 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4646 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4647 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4648 | } |
| 4649 | } |
| 4650 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4651 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4652 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4653 | /// register class for the register. Otherwise, return null. |
| 4654 | static const TargetRegisterClass * |
| 4655 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4656 | const TargetLowering &TLI, |
| 4657 | const TargetRegisterInfo *TRI) { |
| 4658 | MVT FoundVT = MVT::Other; |
| 4659 | const TargetRegisterClass *FoundRC = 0; |
| 4660 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4661 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
| 4662 | MVT ThisVT = MVT::Other; |
| 4663 | |
| 4664 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4665 | // 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] | 4666 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4667 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4668 | I != E; ++I) { |
| 4669 | if (TLI.isTypeLegal(*I)) { |
| 4670 | // If we have already found this register in a different register class, |
| 4671 | // choose the one with the largest VT specified. For example, on |
| 4672 | // PowerPC, we favor f64 register classes over f32. |
| 4673 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
| 4674 | ThisVT = *I; |
| 4675 | break; |
| 4676 | } |
| 4677 | } |
| 4678 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4679 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4680 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4681 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4682 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4683 | // frame pointer in functions that need it (due to them not being taken |
| 4684 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4685 | // yet). This is a slight code pessimization, but should still work. |
| 4686 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4687 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4688 | if (*I == Reg) { |
| 4689 | // We found a matching register class. Keep looking at others in case |
| 4690 | // we find one with larger registers that this physreg is also in. |
| 4691 | FoundRC = RC; |
| 4692 | FoundVT = ThisVT; |
| 4693 | break; |
| 4694 | } |
| 4695 | } |
| 4696 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4697 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4698 | |
| 4699 | |
| 4700 | namespace llvm { |
| 4701 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4702 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4703 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4704 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4705 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4706 | /// CallOperand - If this is the result output operand or a clobber |
| 4707 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4708 | /// This gets modified as the asm is processed. |
| 4709 | SDValue CallOperand; |
| 4710 | |
| 4711 | /// AssignedRegs - If this is a register or register class operand, this |
| 4712 | /// contains the set of register corresponding to the operand. |
| 4713 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4714 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4715 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4716 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4717 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4718 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4719 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4720 | /// busy in OutputRegs/InputRegs. |
| 4721 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4722 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4723 | std::set<unsigned> &InputRegs, |
| 4724 | const TargetRegisterInfo &TRI) const { |
| 4725 | if (isOutReg) { |
| 4726 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4727 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4728 | } |
| 4729 | if (isInReg) { |
| 4730 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4731 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4732 | } |
| 4733 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4734 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4735 | /// getCallOperandValMVT - Return the MVT of the Value* that this operand |
| 4736 | /// corresponds to. If there is no Value* for this operand, it returns |
| 4737 | /// MVT::Other. |
| 4738 | MVT getCallOperandValMVT(const TargetLowering &TLI, |
| 4739 | const TargetData *TD) const { |
| 4740 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4741 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4742 | if (isa<BasicBlock>(CallOperandVal)) |
| 4743 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4744 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4745 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4746 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4747 | // If this is an indirect operand, the operand is a pointer to the |
| 4748 | // accessed type. |
| 4749 | if (isIndirect) |
| 4750 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4751 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4752 | // If OpTy is not a single value, it may be a struct/union that we |
| 4753 | // can tile with integers. |
| 4754 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4755 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4756 | switch (BitSize) { |
| 4757 | default: break; |
| 4758 | case 1: |
| 4759 | case 8: |
| 4760 | case 16: |
| 4761 | case 32: |
| 4762 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4763 | case 128: |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4764 | OpTy = IntegerType::get(BitSize); |
| 4765 | break; |
| 4766 | } |
| 4767 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4768 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4769 | return TLI.getValueType(OpTy, true); |
| 4770 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4771 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4772 | private: |
| 4773 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4774 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4775 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4776 | const TargetRegisterInfo &TRI) { |
| 4777 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4778 | Regs.insert(Reg); |
| 4779 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4780 | for (; *Aliases; ++Aliases) |
| 4781 | Regs.insert(*Aliases); |
| 4782 | } |
| 4783 | }; |
| 4784 | } // end llvm namespace. |
| 4785 | |
| 4786 | |
| 4787 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4788 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4789 | /// register allocator handle the assignment process. However, if the asm uses |
| 4790 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4791 | /// allocation. This produces generally horrible, but correct, code. |
| 4792 | /// |
| 4793 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4794 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4795 | /// |
| 4796 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4797 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4798 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4799 | std::set<unsigned> &InputRegs) { |
| 4800 | // Compute whether this value requires an input register, an output register, |
| 4801 | // or both. |
| 4802 | bool isOutReg = false; |
| 4803 | bool isInReg = false; |
| 4804 | switch (OpInfo.Type) { |
| 4805 | case InlineAsm::isOutput: |
| 4806 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4807 | |
| 4808 | // 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] | 4809 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4810 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4811 | break; |
| 4812 | case InlineAsm::isInput: |
| 4813 | isInReg = true; |
| 4814 | isOutReg = false; |
| 4815 | break; |
| 4816 | case InlineAsm::isClobber: |
| 4817 | isOutReg = true; |
| 4818 | isInReg = true; |
| 4819 | break; |
| 4820 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4821 | |
| 4822 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4823 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4824 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4825 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4826 | // If this is a constraint for a single physreg, or a constraint for a |
| 4827 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4828 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4829 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4830 | OpInfo.ConstraintVT); |
| 4831 | |
| 4832 | unsigned NumRegs = 1; |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4833 | if (OpInfo.ConstraintVT != MVT::Other) { |
| 4834 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4835 | // cast of the input value. More generally, handle any case where the input |
| 4836 | // value disagrees with the register class we plan to stick this in. |
| 4837 | if (OpInfo.Type == InlineAsm::isInput && |
| 4838 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
| 4839 | // Try to convert to the first MVT that the reg class contains. If the |
| 4840 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4841 | // vector types). |
| 4842 | MVT RegVT = *PhysReg.second->vt_begin(); |
| 4843 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4844 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4845 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4846 | OpInfo.ConstraintVT = RegVT; |
| 4847 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4848 | // If the input is a FP value and we want it in FP registers, do a |
| 4849 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4850 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4851 | // machine. |
| 4852 | RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4853 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4854 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4855 | OpInfo.ConstraintVT = RegVT; |
| 4856 | } |
| 4857 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4858 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4859 | NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4860 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4861 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4862 | MVT RegVT; |
| 4863 | MVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4864 | |
| 4865 | // If this is a constraint for a specific physical register, like {r17}, |
| 4866 | // assign it now. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4867 | if (unsigned AssignedReg = PhysReg.first) { |
| 4868 | const TargetRegisterClass *RC = PhysReg.second; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4869 | if (OpInfo.ConstraintVT == MVT::Other) |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4870 | ValueVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4871 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4872 | // Get the actual register value type. This is important, because the user |
| 4873 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4874 | // remember that AX is actually i16 to get the right extension. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4875 | RegVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4876 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4877 | // This is a explicit reference to a physical register. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4878 | Regs.push_back(AssignedReg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4879 | |
| 4880 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4881 | if (NumRegs != 1) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4882 | TargetRegisterClass::iterator I = RC->begin(); |
| 4883 | for (; *I != AssignedReg; ++I) |
| 4884 | assert(I != RC->end() && "Didn't find reg!"); |
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 | // Already added the first reg. |
| 4887 | --NumRegs; ++I; |
| 4888 | for (; NumRegs; --NumRegs, ++I) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4889 | assert(I != RC->end() && "Ran out of registers to allocate!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4890 | Regs.push_back(*I); |
| 4891 | } |
| 4892 | } |
| 4893 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4894 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4895 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4896 | return; |
| 4897 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4898 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4899 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 4900 | // for this reference. |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4901 | if (const TargetRegisterClass *RC = PhysReg.second) { |
| 4902 | RegVT = *RC->vt_begin(); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4903 | if (OpInfo.ConstraintVT == MVT::Other) |
| 4904 | ValueVT = RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4905 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4906 | // Create the appropriate number of virtual registers. |
| 4907 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 4908 | for (; NumRegs; --NumRegs) |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4909 | Regs.push_back(RegInfo.createVirtualRegister(RC)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4910 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4911 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4912 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4913 | } |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 4914 | |
| 4915 | // This is a reference to a register class that doesn't directly correspond |
| 4916 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 4917 | // registers from the class. |
| 4918 | std::vector<unsigned> RegClassRegs |
| 4919 | = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4920 | OpInfo.ConstraintVT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4921 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4922 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4923 | unsigned NumAllocated = 0; |
| 4924 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 4925 | unsigned Reg = RegClassRegs[i]; |
| 4926 | // See if this register is available. |
| 4927 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 4928 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 4929 | // Make sure we find consecutive registers. |
| 4930 | NumAllocated = 0; |
| 4931 | continue; |
| 4932 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4933 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4934 | // Check to see if this register is allocatable (i.e. don't give out the |
| 4935 | // stack pointer). |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 4936 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 4937 | if (!RC) { // Couldn't allocate this register. |
| 4938 | // Reset NumAllocated to make sure we return consecutive registers. |
| 4939 | NumAllocated = 0; |
| 4940 | continue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4941 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4942 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4943 | // Okay, this register is good, we can use it. |
| 4944 | ++NumAllocated; |
| 4945 | |
| 4946 | // If we allocated enough consecutive registers, succeed. |
| 4947 | if (NumAllocated == NumRegs) { |
| 4948 | unsigned RegStart = (i-NumAllocated)+1; |
| 4949 | unsigned RegEnd = i+1; |
| 4950 | // Mark all of the allocated registers used. |
| 4951 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 4952 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4953 | |
| 4954 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4955 | OpInfo.ConstraintVT); |
| 4956 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4957 | return; |
| 4958 | } |
| 4959 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4960 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4961 | // Otherwise, we couldn't allocate enough registers for this. |
| 4962 | } |
| 4963 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 4964 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 4965 | /// processed uses a memory 'm' constraint. |
| 4966 | static bool |
| 4967 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 4968 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 4969 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 4970 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 4971 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 4972 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 4973 | if (CType == TargetLowering::C_Memory) |
| 4974 | return true; |
| 4975 | } |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 4976 | |
| 4977 | // Indirect operand accesses access memory. |
| 4978 | if (CI.isIndirect) |
| 4979 | return true; |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 4980 | } |
| 4981 | |
| 4982 | return false; |
| 4983 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4984 | |
| 4985 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 4986 | /// |
| 4987 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 4988 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 4989 | |
| 4990 | /// ConstraintOperands - Information about all of the constraints. |
| 4991 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4992 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4993 | std::set<unsigned> OutputRegs, InputRegs; |
| 4994 | |
| 4995 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 4996 | // ConstraintOperands list. |
| 4997 | std::vector<InlineAsm::ConstraintInfo> |
| 4998 | ConstraintInfos = IA->ParseConstraints(); |
| 4999 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5000 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5001 | |
| 5002 | SDValue Chain, Flag; |
| 5003 | |
| 5004 | // We won't need to flush pending loads if this asm doesn't touch |
| 5005 | // memory and is nonvolatile. |
| 5006 | if (hasMemory || IA->hasSideEffects()) |
Dale Johannesen | 97d14fc | 2009-04-18 00:09:40 +0000 | [diff] [blame] | 5007 | Chain = getRoot(); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5008 | else |
| 5009 | Chain = DAG.getRoot(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5010 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5011 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5012 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5013 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5014 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5015 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5016 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5017 | MVT OpVT = MVT::Other; |
| 5018 | |
| 5019 | // Compute the value type for each operand. |
| 5020 | switch (OpInfo.Type) { |
| 5021 | case InlineAsm::isOutput: |
| 5022 | // Indirect outputs just consume an argument. |
| 5023 | if (OpInfo.isIndirect) { |
| 5024 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5025 | break; |
| 5026 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5027 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5028 | // The return value of the call is this value. As such, there is no |
| 5029 | // corresponding argument. |
| 5030 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5031 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5032 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5033 | } else { |
| 5034 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5035 | OpVT = TLI.getValueType(CS.getType()); |
| 5036 | } |
| 5037 | ++ResNo; |
| 5038 | break; |
| 5039 | case InlineAsm::isInput: |
| 5040 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5041 | break; |
| 5042 | case InlineAsm::isClobber: |
| 5043 | // Nothing to do. |
| 5044 | break; |
| 5045 | } |
| 5046 | |
| 5047 | // If this is an input or an indirect output, process the call argument. |
| 5048 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5049 | if (OpInfo.CallOperandVal) { |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5050 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5051 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5052 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5053 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5054 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5055 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5056 | OpVT = OpInfo.getCallOperandValMVT(TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5057 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5058 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5059 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5060 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5061 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5062 | // Second pass over the constraints: compute which constraint option to use |
| 5063 | // and assign registers to constraints that want a specific physreg. |
| 5064 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5065 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5066 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5067 | // 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] | 5068 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5069 | // other is floating point, or their sizes are different, flag it as an |
| 5070 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5071 | if (OpInfo.hasMatchingInput()) { |
| 5072 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5073 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5074 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5075 | Input.ConstraintVT.isInteger()) || |
| 5076 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5077 | Input.ConstraintVT.getSizeInBits())) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5078 | llvm_report_error("llvm: error: Unsupported asm: input constraint" |
| 5079 | " with a matching output constraint of incompatible" |
| 5080 | " type!"); |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5081 | } |
| 5082 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5083 | } |
| 5084 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5085 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5086 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5087 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5088 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5089 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5090 | // need to to provide an address for the memory input. |
| 5091 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5092 | !OpInfo.isIndirect) { |
| 5093 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5094 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5095 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5096 | // Memory operands really want the address of the value. If we don't have |
| 5097 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5098 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5099 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5100 | // If the operand is a float, integer, or vector constant, spill to a |
| 5101 | // constant pool entry to get its address. |
| 5102 | Value *OpVal = OpInfo.CallOperandVal; |
| 5103 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5104 | isa<ConstantVector>(OpVal)) { |
| 5105 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5106 | TLI.getPointerTy()); |
| 5107 | } else { |
| 5108 | // Otherwise, create a stack slot and emit a store to it before the |
| 5109 | // asm. |
| 5110 | const Type *Ty = OpVal->getType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5111 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5112 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5113 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5114 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5115 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5116 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5117 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5118 | OpInfo.CallOperand = StackSlot; |
| 5119 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5120 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5121 | // There is no longer a Value* corresponding to this operand. |
| 5122 | OpInfo.CallOperandVal = 0; |
| 5123 | // It is now an indirect operand. |
| 5124 | OpInfo.isIndirect = true; |
| 5125 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5126 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5127 | // If this constraint is for a specific register, allocate it before |
| 5128 | // anything else. |
| 5129 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5130 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5131 | } |
| 5132 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5133 | |
| 5134 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5135 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5136 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5137 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5138 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
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 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5141 | // to be. |
| 5142 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5143 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5144 | } |
| 5145 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5146 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5147 | std::vector<SDValue> AsmNodeOperands; |
| 5148 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5149 | AsmNodeOperands.push_back( |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5150 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5151 | |
| 5152 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5153 | // Loop over all of the inputs, copying the operand values into the |
| 5154 | // appropriate registers and processing the output regs. |
| 5155 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5156 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5157 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5158 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5159 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5160 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5161 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5162 | |
| 5163 | switch (OpInfo.Type) { |
| 5164 | case InlineAsm::isOutput: { |
| 5165 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5166 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5167 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5168 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5169 | |
| 5170 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5171 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5172 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5173 | TLI.getPointerTy())); |
| 5174 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5175 | break; |
| 5176 | } |
| 5177 | |
| 5178 | // Otherwise, this is a register or register class output. |
| 5179 | |
| 5180 | // Copy the output from the appropriate register. Find a register that |
| 5181 | // we can use. |
| 5182 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5183 | llvm_report_error("llvm: error: Couldn't allocate output reg for" |
| 5184 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5185 | } |
| 5186 | |
| 5187 | // If this is an indirect operand, store through the pointer after the |
| 5188 | // asm. |
| 5189 | if (OpInfo.isIndirect) { |
| 5190 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5191 | OpInfo.CallOperandVal)); |
| 5192 | } else { |
| 5193 | // This is the result value of the call. |
| 5194 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5195 | // Concatenate this output onto the outputs list. |
| 5196 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5197 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5198 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5199 | // Add information to the INLINEASM node to know that this register is |
| 5200 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5201 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5202 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5203 | 2 /* REGDEF */ , |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5204 | false, |
| 5205 | 0, |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5206 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5207 | break; |
| 5208 | } |
| 5209 | case InlineAsm::isInput: { |
| 5210 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5211 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5212 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5213 | // If this is required to match an output register we have already set, |
| 5214 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5215 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5216 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5217 | // Scan until we find the definition we already emitted of this operand. |
| 5218 | // When we find it, create a RegsForValue operand. |
| 5219 | unsigned CurOp = 2; // The first operand. |
| 5220 | for (; OperandNo; --OperandNo) { |
| 5221 | // Advance to the next operand. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5222 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5223 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5224 | assert(((OpFlag & 7) == 2 /*REGDEF*/ || |
| 5225 | (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
| 5226 | (OpFlag & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5227 | "Skipped past definitions?"); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5228 | CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5229 | } |
| 5230 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5231 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5232 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5233 | if ((OpFlag & 7) == 2 /*REGDEF*/ |
| 5234 | || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
| 5235 | // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5236 | if (OpInfo.isIndirect) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5237 | llvm_report_error("llvm: error: " |
| 5238 | "Don't know how to handle tied indirect " |
| 5239 | "register inputs yet!"); |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5240 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5241 | RegsForValue MatchedRegs; |
| 5242 | MatchedRegs.TLI = &TLI; |
| 5243 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5244 | MVT RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
| 5245 | MatchedRegs.RegVTs.push_back(RegVT); |
| 5246 | MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5247 | for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5248 | i != e; ++i) |
| 5249 | MatchedRegs.Regs. |
| 5250 | push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT))); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5251 | |
| 5252 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5253 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5254 | Chain, &Flag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5255 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, |
| 5256 | true, OpInfo.getMatchedOperand(), |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5257 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5258 | break; |
| 5259 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5260 | assert(((OpFlag & 7) == 4) && "Unknown matching constraint!"); |
| 5261 | assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 && |
| 5262 | "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5263 | // Add information to the INLINEASM node to know about this input. |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5264 | // See InlineAsm.h isUseOperandTiedToDef. |
| 5265 | OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5266 | AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5267 | TLI.getPointerTy())); |
| 5268 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5269 | break; |
| 5270 | } |
| 5271 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5272 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5273 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5274 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5275 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5276 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5277 | std::vector<SDValue> Ops; |
| 5278 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5279 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5280 | if (Ops.empty()) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5281 | llvm_report_error("llvm: error: Invalid operand for inline asm" |
| 5282 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5283 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5284 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5285 | // Add information to the INLINEASM node to know about this input. |
| 5286 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5287 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5288 | TLI.getPointerTy())); |
| 5289 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5290 | break; |
| 5291 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5292 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5293 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5294 | "Memory operands expect pointer values"); |
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 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5297 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5298 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5299 | TLI.getPointerTy())); |
| 5300 | AsmNodeOperands.push_back(InOperandVal); |
| 5301 | break; |
| 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 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5305 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5306 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5307 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5308 | "Don't know how to handle indirect register inputs yet!"); |
| 5309 | |
| 5310 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5311 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5312 | llvm_report_error("llvm: error: Couldn't allocate input reg for" |
| 5313 | " constraint '"+ OpInfo.ConstraintCode +"'!"); |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5314 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5315 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5316 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5317 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5318 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5319 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0, |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5320 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5321 | break; |
| 5322 | } |
| 5323 | case InlineAsm::isClobber: { |
| 5324 | // Add the clobbered value to the operand list, so that the register |
| 5325 | // allocator is aware that the physreg got clobbered. |
| 5326 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5327 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5328 | false, 0, DAG,AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5329 | break; |
| 5330 | } |
| 5331 | } |
| 5332 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5333 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5334 | // Finish up input operands. |
| 5335 | AsmNodeOperands[0] = Chain; |
| 5336 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5337 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5338 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5339 | DAG.getVTList(MVT::Other, MVT::Flag), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5340 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5341 | Flag = Chain.getValue(1); |
| 5342 | |
| 5343 | // If this asm returns a register value, copy the result from that register |
| 5344 | // and set it as the value of the call. |
| 5345 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5346 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5347 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5348 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5349 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5350 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
| 5351 | MVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5352 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5353 | // If any of the results of the inline asm is a vector, it may have the |
| 5354 | // wrong width/num elts. This can happen for register classes that can |
| 5355 | // contain multiple different value types. The preg or vreg allocated may |
| 5356 | // not have the same VT as was expected. Convert it to the right type |
| 5357 | // with bit_convert. |
| 5358 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5359 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5360 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5361 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5362 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5363 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5364 | // If a result value was tied to an input value, the computed result may |
| 5365 | // have a wider width than the expected result. Extract the relevant |
| 5366 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5367 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5368 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5369 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5370 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5371 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5372 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5373 | setValue(CS.getInstruction(), Val); |
Dale Johannesen | ec65a7d | 2009-04-14 00:56:56 +0000 | [diff] [blame] | 5374 | // Don't need to use this as a chain in this case. |
| 5375 | if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) |
| 5376 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5377 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5378 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5379 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5380 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5381 | // Process indirect outputs, first output all of the flagged copies out of |
| 5382 | // physregs. |
| 5383 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5384 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5385 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5386 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5387 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5388 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5389 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5390 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5391 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5392 | // Emit the non-flagged stores from the physregs. |
| 5393 | SmallVector<SDValue, 8> OutChains; |
| 5394 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5395 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5396 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5397 | getValue(StoresToEmit[i].second), |
| 5398 | StoresToEmit[i].second, 0)); |
| 5399 | if (!OutChains.empty()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5400 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5401 | &OutChains[0], OutChains.size()); |
| 5402 | DAG.setRoot(Chain); |
| 5403 | } |
| 5404 | |
| 5405 | |
| 5406 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5407 | SDValue Src = getValue(I.getOperand(0)); |
| 5408 | |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5409 | // Scale up by the type size in the original i32 type width. Various |
| 5410 | // mid-level optimizers may make assumptions about demanded bits etc from the |
| 5411 | // i32-ness of the optimizer: we do not want to promote to i64 and then |
| 5412 | // multiply on 64-bit targets. |
| 5413 | // FIXME: Malloc inst should go away: PR715. |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5414 | uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5415 | if (ElementSize != 1) |
| 5416 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
| 5417 | Src, DAG.getConstant(ElementSize, Src.getValueType())); |
| 5418 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5419 | MVT IntPtr = TLI.getPointerTy(); |
| 5420 | |
| 5421 | if (IntPtr.bitsLT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5422 | Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5423 | else if (IntPtr.bitsGT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5424 | Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5425 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5426 | TargetLowering::ArgListTy Args; |
| 5427 | TargetLowering::ArgListEntry Entry; |
| 5428 | Entry.Node = Src; |
| 5429 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5430 | Args.push_back(Entry); |
| 5431 | |
| 5432 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5433 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5434 | 0, CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5435 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5436 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5437 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5438 | DAG.setRoot(Result.second); |
| 5439 | } |
| 5440 | |
| 5441 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5442 | TargetLowering::ArgListTy Args; |
| 5443 | TargetLowering::ArgListEntry Entry; |
| 5444 | Entry.Node = getValue(I.getOperand(0)); |
| 5445 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5446 | Args.push_back(Entry); |
| 5447 | MVT IntPtr = TLI.getPointerTy(); |
| 5448 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5449 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5450 | 0, CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5451 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5452 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5453 | DAG.setRoot(Result.second); |
| 5454 | } |
| 5455 | |
| 5456 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5457 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5458 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5459 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5460 | DAG.getSrcValue(I.getOperand(1)))); |
| 5461 | } |
| 5462 | |
| 5463 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5464 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5465 | getRoot(), getValue(I.getOperand(0)), |
| 5466 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5467 | setValue(&I, V); |
| 5468 | DAG.setRoot(V.getValue(1)); |
| 5469 | } |
| 5470 | |
| 5471 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5472 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5473 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5474 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5475 | DAG.getSrcValue(I.getOperand(1)))); |
| 5476 | } |
| 5477 | |
| 5478 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5479 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5480 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5481 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5482 | getValue(I.getOperand(2)), |
| 5483 | DAG.getSrcValue(I.getOperand(1)), |
| 5484 | DAG.getSrcValue(I.getOperand(2)))); |
| 5485 | } |
| 5486 | |
| 5487 | /// TargetLowering::LowerArguments - This is the default LowerArguments |
| 5488 | /// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5489 | /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5490 | /// integrated into SDISel. |
| 5491 | void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5492 | SmallVectorImpl<SDValue> &ArgValues, |
| 5493 | DebugLoc dl) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5494 | // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node. |
| 5495 | SmallVector<SDValue, 3+16> Ops; |
| 5496 | Ops.push_back(DAG.getRoot()); |
| 5497 | Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy())); |
| 5498 | Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy())); |
| 5499 | |
| 5500 | // Add one result value for each formal argument. |
| 5501 | SmallVector<MVT, 16> RetVals; |
| 5502 | unsigned j = 1; |
| 5503 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5504 | I != E; ++I, ++j) { |
| 5505 | SmallVector<MVT, 4> ValueVTs; |
| 5506 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5507 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5508 | Value != NumValues; ++Value) { |
| 5509 | MVT VT = ValueVTs[Value]; |
Owen Anderson | d1474d0 | 2009-07-09 17:57:24 +0000 | [diff] [blame] | 5510 | const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5511 | ISD::ArgFlagsTy Flags; |
| 5512 | unsigned OriginalAlignment = |
| 5513 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5514 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5515 | if (F.paramHasAttr(j, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5516 | Flags.setZExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5517 | if (F.paramHasAttr(j, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5518 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5519 | if (F.paramHasAttr(j, Attribute::InReg)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5520 | Flags.setInReg(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5521 | if (F.paramHasAttr(j, Attribute::StructRet)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5522 | Flags.setSRet(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5523 | if (F.paramHasAttr(j, Attribute::ByVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5524 | Flags.setByVal(); |
| 5525 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5526 | const Type *ElementTy = Ty->getElementType(); |
| 5527 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5528 | unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5529 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5530 | // this info is not there but there are cases it cannot get right. |
| 5531 | if (F.getParamAlignment(j)) |
| 5532 | FrameAlign = F.getParamAlignment(j); |
| 5533 | Flags.setByValAlign(FrameAlign); |
| 5534 | Flags.setByValSize(FrameSize); |
| 5535 | } |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5536 | if (F.paramHasAttr(j, Attribute::Nest)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5537 | Flags.setNest(); |
| 5538 | Flags.setOrigAlign(OriginalAlignment); |
| 5539 | |
| 5540 | MVT RegisterVT = getRegisterType(VT); |
| 5541 | unsigned NumRegs = getNumRegisters(VT); |
| 5542 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5543 | RetVals.push_back(RegisterVT); |
| 5544 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5545 | if (NumRegs > 1 && i == 0) |
| 5546 | MyFlags.setSplit(); |
| 5547 | // if it isn't first piece, alignment must be 1 |
| 5548 | else if (i > 0) |
| 5549 | MyFlags.setOrigAlign(1); |
| 5550 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5551 | } |
| 5552 | } |
| 5553 | } |
| 5554 | |
| 5555 | RetVals.push_back(MVT::Other); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5556 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5557 | // Create the node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5558 | SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5559 | DAG.getVTList(&RetVals[0], RetVals.size()), |
| 5560 | &Ops[0], Ops.size()).getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5561 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5562 | // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but |
| 5563 | // allows exposing the loads that may be part of the argument access to the |
| 5564 | // first DAGCombiner pass. |
| 5565 | SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5566 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5567 | // The number of results should match up, except that the lowered one may have |
| 5568 | // an extra flag result. |
| 5569 | assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() || |
| 5570 | (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() && |
| 5571 | TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag)) |
| 5572 | && "Lowering produced unexpected number of results!"); |
| 5573 | |
| 5574 | // The FORMAL_ARGUMENTS node itself is likely no longer needed. |
| 5575 | if (Result != TmpRes.getNode() && Result->use_empty()) { |
| 5576 | HandleSDNode Dummy(DAG.getRoot()); |
| 5577 | DAG.RemoveDeadNode(Result); |
| 5578 | } |
| 5579 | |
| 5580 | Result = TmpRes.getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5581 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5582 | unsigned NumArgRegs = Result->getNumValues() - 1; |
| 5583 | DAG.setRoot(SDValue(Result, NumArgRegs)); |
| 5584 | |
| 5585 | // Set up the return result vector. |
| 5586 | unsigned i = 0; |
| 5587 | unsigned Idx = 1; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5588 | 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] | 5589 | ++I, ++Idx) { |
| 5590 | SmallVector<MVT, 4> ValueVTs; |
| 5591 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5592 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5593 | Value != NumValues; ++Value) { |
| 5594 | MVT VT = ValueVTs[Value]; |
| 5595 | MVT PartVT = getRegisterType(VT); |
| 5596 | |
| 5597 | unsigned NumParts = getNumRegisters(VT); |
| 5598 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5599 | for (unsigned j = 0; j != NumParts; ++j) |
| 5600 | Parts[j] = SDValue(Result, i++); |
| 5601 | |
| 5602 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5603 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5604 | AssertOp = ISD::AssertSext; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5605 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5606 | AssertOp = ISD::AssertZext; |
| 5607 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5608 | ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts, |
| 5609 | PartVT, VT, AssertOp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5610 | } |
| 5611 | } |
| 5612 | assert(i == NumArgRegs && "Argument register count mismatch!"); |
| 5613 | } |
| 5614 | |
| 5615 | |
| 5616 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
| 5617 | /// implementation, which just inserts an ISD::CALL node, which is later custom |
| 5618 | /// lowered by the target to something concrete. FIXME: When all targets are |
| 5619 | /// migrated to using ISD::CALL, this hook should be integrated into SDISel. |
| 5620 | std::pair<SDValue, SDValue> |
| 5621 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5622 | bool RetSExt, bool RetZExt, bool isVarArg, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5623 | bool isInreg, unsigned NumFixedArgs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5624 | unsigned CallingConv, bool isTailCall, |
| 5625 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5626 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5627 | assert((!isTailCall || PerformTailCallOpt) && |
| 5628 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5629 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5630 | SmallVector<SDValue, 32> Ops; |
| 5631 | Ops.push_back(Chain); // Op#0 - Chain |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5632 | Ops.push_back(Callee); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5633 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5634 | // Handle all of the outgoing arguments. |
| 5635 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 5636 | SmallVector<MVT, 4> ValueVTs; |
| 5637 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5638 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5639 | Value != NumValues; ++Value) { |
| 5640 | MVT VT = ValueVTs[Value]; |
Owen Anderson | d1474d0 | 2009-07-09 17:57:24 +0000 | [diff] [blame] | 5641 | const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext()); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5642 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5643 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5644 | ISD::ArgFlagsTy Flags; |
| 5645 | unsigned OriginalAlignment = |
| 5646 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5647 | |
| 5648 | if (Args[i].isZExt) |
| 5649 | Flags.setZExt(); |
| 5650 | if (Args[i].isSExt) |
| 5651 | Flags.setSExt(); |
| 5652 | if (Args[i].isInReg) |
| 5653 | Flags.setInReg(); |
| 5654 | if (Args[i].isSRet) |
| 5655 | Flags.setSRet(); |
| 5656 | if (Args[i].isByVal) { |
| 5657 | Flags.setByVal(); |
| 5658 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5659 | const Type *ElementTy = Ty->getElementType(); |
| 5660 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5661 | unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5662 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5663 | // info is not there but there are cases it cannot get right. |
| 5664 | if (Args[i].Alignment) |
| 5665 | FrameAlign = Args[i].Alignment; |
| 5666 | Flags.setByValAlign(FrameAlign); |
| 5667 | Flags.setByValSize(FrameSize); |
| 5668 | } |
| 5669 | if (Args[i].isNest) |
| 5670 | Flags.setNest(); |
| 5671 | Flags.setOrigAlign(OriginalAlignment); |
| 5672 | |
| 5673 | MVT PartVT = getRegisterType(VT); |
| 5674 | unsigned NumParts = getNumRegisters(VT); |
| 5675 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5676 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5677 | |
| 5678 | if (Args[i].isSExt) |
| 5679 | ExtendKind = ISD::SIGN_EXTEND; |
| 5680 | else if (Args[i].isZExt) |
| 5681 | ExtendKind = ISD::ZERO_EXTEND; |
| 5682 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5683 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5684 | |
| 5685 | for (unsigned i = 0; i != NumParts; ++i) { |
| 5686 | // if it isn't first piece, alignment must be 1 |
| 5687 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5688 | if (NumParts > 1 && i == 0) |
| 5689 | MyFlags.setSplit(); |
| 5690 | else if (i != 0) |
| 5691 | MyFlags.setOrigAlign(1); |
| 5692 | |
| 5693 | Ops.push_back(Parts[i]); |
| 5694 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5695 | } |
| 5696 | } |
| 5697 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5698 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5699 | // Figure out the result value types. We start by making a list of |
| 5700 | // the potentially illegal return value types. |
| 5701 | SmallVector<MVT, 4> LoweredRetTys; |
| 5702 | SmallVector<MVT, 4> RetTys; |
| 5703 | ComputeValueVTs(*this, RetTy, RetTys); |
| 5704 | |
| 5705 | // Then we translate that to a list of legal types. |
| 5706 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5707 | MVT VT = RetTys[I]; |
| 5708 | MVT RegisterVT = getRegisterType(VT); |
| 5709 | unsigned NumRegs = getNumRegisters(VT); |
| 5710 | for (unsigned i = 0; i != NumRegs; ++i) |
| 5711 | LoweredRetTys.push_back(RegisterVT); |
| 5712 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5713 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5714 | LoweredRetTys.push_back(MVT::Other); // Always has a chain. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5715 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5716 | // Create the CALL node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5717 | SDValue Res = DAG.getCall(CallingConv, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5718 | isVarArg, isTailCall, isInreg, |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5719 | DAG.getVTList(&LoweredRetTys[0], |
| 5720 | LoweredRetTys.size()), |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5721 | &Ops[0], Ops.size(), NumFixedArgs |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5722 | ); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5723 | Chain = Res.getValue(LoweredRetTys.size() - 1); |
| 5724 | |
| 5725 | // Gather up the call result into a single value. |
Dan Gohman | b5cc34d | 2008-10-07 00:12:37 +0000 | [diff] [blame] | 5726 | if (RetTy != Type::VoidTy && !RetTys.empty()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5727 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5728 | |
| 5729 | if (RetSExt) |
| 5730 | AssertOp = ISD::AssertSext; |
| 5731 | else if (RetZExt) |
| 5732 | AssertOp = ISD::AssertZext; |
| 5733 | |
| 5734 | SmallVector<SDValue, 4> ReturnValues; |
| 5735 | unsigned RegNo = 0; |
| 5736 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5737 | MVT VT = RetTys[I]; |
| 5738 | MVT RegisterVT = getRegisterType(VT); |
| 5739 | unsigned NumRegs = getNumRegisters(VT); |
| 5740 | unsigned RegNoEnd = NumRegs + RegNo; |
| 5741 | SmallVector<SDValue, 4> Results; |
| 5742 | for (; RegNo != RegNoEnd; ++RegNo) |
| 5743 | Results.push_back(Res.getValue(RegNo)); |
| 5744 | SDValue ReturnValue = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5745 | getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5746 | AssertOp); |
| 5747 | ReturnValues.push_back(ReturnValue); |
| 5748 | } |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5749 | Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 5750 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5751 | &ReturnValues[0], ReturnValues.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5752 | } |
| 5753 | |
| 5754 | return std::make_pair(Res, Chain); |
| 5755 | } |
| 5756 | |
Duncan Sands | 9fbc7e2 | 2009-01-21 09:00:29 +0000 | [diff] [blame] | 5757 | void TargetLowering::LowerOperationWrapper(SDNode *N, |
| 5758 | SmallVectorImpl<SDValue> &Results, |
| 5759 | SelectionDAG &DAG) { |
| 5760 | SDValue Res = LowerOperation(SDValue(N, 0), DAG); |
Sanjiv Gupta | bb326bb | 2009-01-21 04:48:39 +0000 | [diff] [blame] | 5761 | if (Res.getNode()) |
| 5762 | Results.push_back(Res); |
| 5763 | } |
| 5764 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5765 | SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5766 | LLVM_UNREACHABLE("LowerOperation not implemented for this target!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5767 | return SDValue(); |
| 5768 | } |
| 5769 | |
| 5770 | |
| 5771 | void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) { |
| 5772 | SDValue Op = getValue(V); |
| 5773 | assert((Op.getOpcode() != ISD::CopyFromReg || |
| 5774 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
| 5775 | "Copy from a reg to the same reg!"); |
| 5776 | assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); |
| 5777 | |
| 5778 | RegsForValue RFV(TLI, Reg, V->getType()); |
| 5779 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5780 | RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5781 | PendingExports.push_back(Chain); |
| 5782 | } |
| 5783 | |
| 5784 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 5785 | |
| 5786 | void SelectionDAGISel:: |
| 5787 | LowerArguments(BasicBlock *LLVMBB) { |
| 5788 | // If this is the entry block, emit arguments. |
| 5789 | Function &F = *LLVMBB->getParent(); |
| 5790 | SDValue OldRoot = SDL->DAG.getRoot(); |
| 5791 | SmallVector<SDValue, 16> Args; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5792 | TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5793 | |
| 5794 | unsigned a = 0; |
| 5795 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 5796 | AI != E; ++AI) { |
| 5797 | SmallVector<MVT, 4> ValueVTs; |
| 5798 | ComputeValueVTs(TLI, AI->getType(), ValueVTs); |
| 5799 | unsigned NumValues = ValueVTs.size(); |
| 5800 | if (!AI->use_empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5801 | SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues, |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 5802 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5803 | // If this argument is live outside of the entry block, insert a copy from |
| 5804 | // 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] | 5805 | SDL->CopyToExportRegsIfNeeded(AI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5806 | } |
| 5807 | a += NumValues; |
| 5808 | } |
| 5809 | |
| 5810 | // Finally, if the target has anything special to do, allow it to do so. |
| 5811 | // FIXME: this should insert code into the DAG! |
| 5812 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5813 | } |
| 5814 | |
| 5815 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5816 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5817 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5818 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5819 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5820 | /// the end. |
| 5821 | /// |
| 5822 | void |
| 5823 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5824 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5825 | |
| 5826 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5827 | |
| 5828 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5829 | // from this block. |
| 5830 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5831 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5832 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5833 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5834 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5835 | // If this terminator has multiple identical successors (common for |
| 5836 | // switches), only handle each succ once. |
| 5837 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5838 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5839 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5840 | PHINode *PN; |
| 5841 | |
| 5842 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5843 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5844 | // emitted yet. |
| 5845 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5846 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5847 | // Ignore dead phi's. |
| 5848 | if (PN->use_empty()) continue; |
| 5849 | |
| 5850 | unsigned Reg; |
| 5851 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5852 | |
| 5853 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5854 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5855 | if (RegOut == 0) { |
| 5856 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5857 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5858 | } |
| 5859 | Reg = RegOut; |
| 5860 | } else { |
| 5861 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5862 | if (Reg == 0) { |
| 5863 | assert(isa<AllocaInst>(PHIOp) && |
| 5864 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5865 | "Didn't codegen value into a register!??"); |
| 5866 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5867 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5868 | } |
| 5869 | } |
| 5870 | |
| 5871 | // Remember that this register needs to added to the machine PHI node as |
| 5872 | // the input for this MBB. |
| 5873 | SmallVector<MVT, 4> ValueVTs; |
| 5874 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5875 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 5876 | MVT VT = ValueVTs[vti]; |
| 5877 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
| 5878 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5879 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5880 | Reg += NumRegisters; |
| 5881 | } |
| 5882 | } |
| 5883 | } |
| 5884 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5885 | } |
| 5886 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5887 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5888 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5889 | /// creating SelectionDAG nodes. |
| 5890 | /// |
| 5891 | bool |
| 5892 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 5893 | FastISel *F) { |
| 5894 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5895 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5896 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5897 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 5898 | |
| 5899 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5900 | // from this block. |
| 5901 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5902 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5903 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5904 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5905 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5906 | // If this terminator has multiple identical successors (common for |
| 5907 | // switches), only handle each succ once. |
| 5908 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5909 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5910 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5911 | PHINode *PN; |
| 5912 | |
| 5913 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5914 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5915 | // emitted yet. |
| 5916 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5917 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5918 | // Ignore dead phi's. |
| 5919 | if (PN->use_empty()) continue; |
| 5920 | |
| 5921 | // Only handle legal types. Two interesting things to note here. First, |
| 5922 | // by bailing out early, we may leave behind some dead instructions, |
| 5923 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 5924 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 5925 | // use CreateRegForValue to create registers, so it always creates |
| 5926 | // exactly one register for each non-void instruction. |
| 5927 | MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 5928 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 5929 | // Promote MVT::i1. |
| 5930 | if (VT == MVT::i1) |
| 5931 | VT = TLI.getTypeToTransformTo(VT); |
| 5932 | else { |
| 5933 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 5934 | return false; |
| 5935 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5936 | } |
| 5937 | |
| 5938 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5939 | |
| 5940 | unsigned Reg = F->getRegForValue(PHIOp); |
| 5941 | if (Reg == 0) { |
| 5942 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 5943 | return false; |
| 5944 | } |
| 5945 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 5946 | } |
| 5947 | } |
| 5948 | |
| 5949 | return true; |
| 5950 | } |