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" |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 20 | #include "llvm/Constants.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 21 | #include "llvm/CallingConv.h" |
| 22 | #include "llvm/DerivedTypes.h" |
| 23 | #include "llvm/Function.h" |
| 24 | #include "llvm/GlobalVariable.h" |
| 25 | #include "llvm/InlineAsm.h" |
| 26 | #include "llvm/Instructions.h" |
| 27 | #include "llvm/Intrinsics.h" |
| 28 | #include "llvm/IntrinsicInst.h" |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 29 | #include "llvm/Module.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/FastISel.h" |
| 31 | #include "llvm/CodeGen/GCStrategy.h" |
| 32 | #include "llvm/CodeGen/GCMetadata.h" |
| 33 | #include "llvm/CodeGen/MachineFunction.h" |
| 34 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 35 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 36 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
| 37 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 38 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/SelectionDAG.h" |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 41 | #include "llvm/CodeGen/DwarfWriter.h" |
| 42 | #include "llvm/Analysis/DebugInfo.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 43 | #include "llvm/Target/TargetRegisterInfo.h" |
| 44 | #include "llvm/Target/TargetData.h" |
| 45 | #include "llvm/Target/TargetFrameInfo.h" |
| 46 | #include "llvm/Target/TargetInstrInfo.h" |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 47 | #include "llvm/Target/TargetIntrinsicInfo.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 48 | #include "llvm/Target/TargetLowering.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 49 | #include "llvm/Target/TargetOptions.h" |
| 50 | #include "llvm/Support/Compiler.h" |
Mikhail Glushenkov | 2388a58 | 2009-01-16 07:02:28 +0000 | [diff] [blame] | 51 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 52 | #include "llvm/Support/Debug.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 53 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 54 | #include "llvm/Support/MathExtras.h" |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 55 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 56 | #include <algorithm> |
| 57 | using namespace llvm; |
| 58 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 59 | /// LimitFloatPrecision - Generate low-precision inline sequences for |
| 60 | /// some float libcalls (6, 8 or 12 bits). |
| 61 | static unsigned LimitFloatPrecision; |
| 62 | |
| 63 | static cl::opt<unsigned, true> |
| 64 | LimitFPPrecision("limit-float-precision", |
| 65 | cl::desc("Generate low-precision inline sequences " |
| 66 | "for some float libcalls"), |
| 67 | cl::location(LimitFloatPrecision), |
| 68 | cl::init(0)); |
| 69 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 70 | /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 71 | /// of insertvalue or extractvalue indices that identify a member, return |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 72 | /// the linearized index of the start of the member. |
| 73 | /// |
| 74 | static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty, |
| 75 | const unsigned *Indices, |
| 76 | const unsigned *IndicesEnd, |
| 77 | unsigned CurIndex = 0) { |
| 78 | // Base case: We're done. |
| 79 | if (Indices && Indices == IndicesEnd) |
| 80 | return CurIndex; |
| 81 | |
| 82 | // Given a struct type, recursively traverse the elements. |
| 83 | if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 84 | for (StructType::element_iterator EB = STy->element_begin(), |
| 85 | EI = EB, |
| 86 | EE = STy->element_end(); |
| 87 | EI != EE; ++EI) { |
| 88 | if (Indices && *Indices == unsigned(EI - EB)) |
| 89 | return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex); |
| 90 | CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex); |
| 91 | } |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 92 | return CurIndex; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 93 | } |
| 94 | // Given an array type, recursively traverse the elements. |
| 95 | else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 96 | const Type *EltTy = ATy->getElementType(); |
| 97 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) { |
| 98 | if (Indices && *Indices == i) |
| 99 | return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex); |
| 100 | CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex); |
| 101 | } |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 102 | return CurIndex; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 103 | } |
| 104 | // We haven't found the type we're looking for, so keep searching. |
| 105 | return CurIndex + 1; |
| 106 | } |
| 107 | |
| 108 | /// ComputeValueVTs - Given an LLVM IR type, compute a sequence of |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 109 | /// EVTs that represent all the individual underlying |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 110 | /// non-aggregate types that comprise it. |
| 111 | /// |
| 112 | /// If Offsets is non-null, it points to a vector to be filled in |
| 113 | /// with the in-memory offsets of each of the individual values. |
| 114 | /// |
| 115 | static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 116 | SmallVectorImpl<EVT> &ValueVTs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 117 | SmallVectorImpl<uint64_t> *Offsets = 0, |
| 118 | uint64_t StartingOffset = 0) { |
| 119 | // Given a struct type, recursively traverse the elements. |
| 120 | if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 121 | const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy); |
| 122 | for (StructType::element_iterator EB = STy->element_begin(), |
| 123 | EI = EB, |
| 124 | EE = STy->element_end(); |
| 125 | EI != EE; ++EI) |
| 126 | ComputeValueVTs(TLI, *EI, ValueVTs, Offsets, |
| 127 | StartingOffset + SL->getElementOffset(EI - EB)); |
| 128 | return; |
| 129 | } |
| 130 | // Given an array type, recursively traverse the elements. |
| 131 | if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 132 | const Type *EltTy = ATy->getElementType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 133 | uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 134 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) |
| 135 | ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets, |
| 136 | StartingOffset + i * EltSize); |
| 137 | return; |
| 138 | } |
Dan Gohman | 5e5558b | 2009-04-23 22:50:03 +0000 | [diff] [blame] | 139 | // Interpret void as zero return values. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 140 | if (Ty == Type::getVoidTy(Ty->getContext())) |
Dan Gohman | 5e5558b | 2009-04-23 22:50:03 +0000 | [diff] [blame] | 141 | return; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 142 | // Base case: we can get an EVT for this LLVM IR type. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 143 | ValueVTs.push_back(TLI.getValueType(Ty)); |
| 144 | if (Offsets) |
| 145 | Offsets->push_back(StartingOffset); |
| 146 | } |
| 147 | |
Dan Gohman | 2a7c671 | 2008-09-03 23:18:39 +0000 | [diff] [blame] | 148 | namespace llvm { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 149 | /// RegsForValue - This struct represents the registers (physical or virtual) |
| 150 | /// that a particular set of values is assigned, and the type information about |
| 151 | /// the value. The most common situation is to represent one value at a time, |
| 152 | /// but struct or array values are handled element-wise as multiple values. |
| 153 | /// The splitting of aggregates is performed recursively, so that we never |
| 154 | /// have aggregate-typed registers. The values at this point do not necessarily |
| 155 | /// have legal types, so each value may require one or more registers of some |
| 156 | /// legal type. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 157 | /// |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 158 | struct VISIBILITY_HIDDEN RegsForValue { |
| 159 | /// TLI - The TargetLowering object. |
| 160 | /// |
| 161 | const TargetLowering *TLI; |
| 162 | |
| 163 | /// ValueVTs - The value types of the values, which may not be legal, and |
| 164 | /// may need be promoted or synthesized from one or more registers. |
| 165 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 166 | SmallVector<EVT, 4> ValueVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 167 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 168 | /// RegVTs - The value types of the registers. This is the same size as |
| 169 | /// ValueVTs and it records, for each value, what the type of the assigned |
| 170 | /// register or registers are. (Individual values are never synthesized |
| 171 | /// from more than one type of register.) |
| 172 | /// |
| 173 | /// With virtual registers, the contents of RegVTs is redundant with TLI's |
| 174 | /// getRegisterType member function, however when with physical registers |
| 175 | /// it is necessary to have a separate record of the types. |
| 176 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 177 | SmallVector<EVT, 4> RegVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 178 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 179 | /// Regs - This list holds the registers assigned to the values. |
| 180 | /// Each legal or promoted value requires one register, and each |
| 181 | /// expanded value requires multiple registers. |
| 182 | /// |
| 183 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 184 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 185 | RegsForValue() : TLI(0) {} |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 186 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 187 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 188 | const SmallVector<unsigned, 4> ®s, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 189 | EVT regvt, EVT valuevt) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 190 | : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {} |
| 191 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 192 | const SmallVector<unsigned, 4> ®s, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 193 | const SmallVector<EVT, 4> ®vts, |
| 194 | const SmallVector<EVT, 4> &valuevts) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 195 | : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {} |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 196 | RegsForValue(LLVMContext &Context, const TargetLowering &tli, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 197 | unsigned Reg, const Type *Ty) : TLI(&tli) { |
| 198 | ComputeValueVTs(tli, Ty, ValueVTs); |
| 199 | |
| 200 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 201 | EVT ValueVT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 202 | unsigned NumRegs = TLI->getNumRegisters(Context, ValueVT); |
| 203 | EVT RegisterVT = TLI->getRegisterType(Context, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 204 | for (unsigned i = 0; i != NumRegs; ++i) |
| 205 | Regs.push_back(Reg + i); |
| 206 | RegVTs.push_back(RegisterVT); |
| 207 | Reg += NumRegs; |
| 208 | } |
| 209 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 210 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 211 | /// append - Add the specified values to this one. |
| 212 | void append(const RegsForValue &RHS) { |
| 213 | TLI = RHS.TLI; |
| 214 | ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end()); |
| 215 | RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end()); |
| 216 | Regs.append(RHS.Regs.begin(), RHS.Regs.end()); |
| 217 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 218 | |
| 219 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 220 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 221 | /// this value and returns the result as a ValueVTs value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 222 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 223 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 224 | SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 225 | SDValue &Chain, SDValue *Flag) const; |
| 226 | |
| 227 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 228 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 229 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 230 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 231 | void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 232 | SDValue &Chain, SDValue *Flag) const; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 233 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 234 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 235 | /// operand list. This adds the code marker, matching input operand index |
| 236 | /// (if applicable), and includes the number of values added into it. |
| 237 | void AddInlineAsmOperands(unsigned Code, |
| 238 | bool HasMatching, unsigned MatchingIdx, |
| 239 | SelectionDAG &DAG, std::vector<SDValue> &Ops) const; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 240 | }; |
| 241 | } |
| 242 | |
| 243 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 244 | /// 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] | 245 | /// switch or atomic instruction, which may expand to multiple basic blocks. |
| 246 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 247 | if (isa<PHINode>(I)) return true; |
| 248 | BasicBlock *BB = I->getParent(); |
| 249 | 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] | 250 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 251 | return true; |
| 252 | return false; |
| 253 | } |
| 254 | |
| 255 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
| 256 | /// entry block, return true. This includes arguments used by switches, since |
| 257 | /// the switch may expand into multiple basic blocks. |
| 258 | static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) { |
| 259 | // With FastISel active, we may be splitting blocks, so force creation |
| 260 | // of virtual registers for all non-dead arguments. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 261 | // Don't force virtual registers for byval arguments though, because |
| 262 | // fast-isel can't handle those in all cases. |
| 263 | if (EnableFastISel && !A->hasByValAttr()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 264 | return A->use_empty(); |
| 265 | |
| 266 | BasicBlock *Entry = A->getParent()->begin(); |
| 267 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
| 268 | if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) |
| 269 | return false; // Use not in entry block. |
| 270 | return true; |
| 271 | } |
| 272 | |
| 273 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli) |
| 274 | : TLI(tli) { |
| 275 | } |
| 276 | |
| 277 | void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf, |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 278 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 279 | bool EnableFastISel) { |
| 280 | Fn = &fn; |
| 281 | MF = &mf; |
| 282 | RegInfo = &MF->getRegInfo(); |
| 283 | |
| 284 | // Create a vreg for each argument register that is not dead and is used |
| 285 | // outside of the entry block for the function. |
| 286 | for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end(); |
| 287 | AI != E; ++AI) |
| 288 | if (!isOnlyUsedInEntryBlock(AI, EnableFastISel)) |
| 289 | InitializeRegForValue(AI); |
| 290 | |
| 291 | // Initialize the mapping of values to registers. This is only set up for |
| 292 | // instruction values that are used outside of the block that defines |
| 293 | // them. |
| 294 | Function::iterator BB = Fn->begin(), EB = Fn->end(); |
| 295 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 296 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 297 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { |
| 298 | const Type *Ty = AI->getAllocatedType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 299 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 300 | unsigned Align = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 301 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 302 | AI->getAlignment()); |
| 303 | |
| 304 | TySize *= CUI->getZExtValue(); // Get total allocated size. |
| 305 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
| 306 | StaticAllocaMap[AI] = |
| 307 | MF->getFrameInfo()->CreateStackObject(TySize, Align); |
| 308 | } |
| 309 | |
| 310 | for (; BB != EB; ++BB) |
| 311 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 312 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 313 | if (!isa<AllocaInst>(I) || |
| 314 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 315 | InitializeRegForValue(I); |
| 316 | |
| 317 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 318 | // also creates the initial PHI MachineInstrs, though none of the input |
| 319 | // operands are populated. |
| 320 | for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) { |
| 321 | MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB); |
| 322 | MBBMap[BB] = MBB; |
| 323 | MF->push_back(MBB); |
| 324 | |
| 325 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 326 | // appropriate. |
| 327 | PHINode *PN; |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 328 | DebugLoc DL; |
| 329 | for (BasicBlock::iterator |
| 330 | I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 331 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 332 | if (Function *F = CI->getCalledFunction()) { |
| 333 | switch (F->getIntrinsicID()) { |
| 334 | default: break; |
| 335 | case Intrinsic::dbg_stoppoint: { |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 336 | DbgStopPointInst *SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 337 | if (isValidDebugInfoIntrinsic(*SPI, CodeGenOpt::Default)) |
| 338 | DL = ExtractDebugLocation(*SPI, MF->getDebugLocInfo()); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 339 | break; |
| 340 | } |
| 341 | case Intrinsic::dbg_func_start: { |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 342 | DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 343 | if (isValidDebugInfoIntrinsic(*FSI, CodeGenOpt::Default)) |
| 344 | DL = ExtractDebugLocation(*FSI, MF->getDebugLocInfo()); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 345 | break; |
| 346 | } |
| 347 | } |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | PN = dyn_cast<PHINode>(I); |
| 352 | if (!PN || PN->use_empty()) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 353 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 354 | unsigned PHIReg = ValueMap[PN]; |
| 355 | assert(PHIReg && "PHI node does not have an assigned virtual register!"); |
| 356 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 357 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 358 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 359 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 360 | EVT VT = ValueVTs[vti]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 361 | unsigned NumRegisters = TLI.getNumRegisters(*DAG.getContext(), VT); |
Dan Gohman | 6448d91 | 2008-09-04 15:39:15 +0000 | [diff] [blame] | 362 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 363 | for (unsigned i = 0; i != NumRegisters; ++i) |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 364 | BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 365 | PHIReg += NumRegisters; |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | } |
| 370 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 371 | unsigned FunctionLoweringInfo::MakeReg(EVT VT) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 372 | return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 373 | } |
| 374 | |
| 375 | /// CreateRegForValue - Allocate the appropriate number of virtual registers of |
| 376 | /// the correctly promoted or expanded types. Assign these registers |
| 377 | /// consecutive vreg numbers and return the first assigned number. |
| 378 | /// |
| 379 | /// In the case that the given value has struct or array type, this function |
| 380 | /// will assign registers for each member or element. |
| 381 | /// |
| 382 | unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 383 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 384 | ComputeValueVTs(TLI, V->getType(), ValueVTs); |
| 385 | |
| 386 | unsigned FirstReg = 0; |
| 387 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 388 | EVT ValueVT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 389 | EVT RegisterVT = TLI.getRegisterType(V->getContext(), ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 390 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 391 | unsigned NumRegs = TLI.getNumRegisters(V->getContext(), ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 392 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 393 | unsigned R = MakeReg(RegisterVT); |
| 394 | if (!FirstReg) FirstReg = R; |
| 395 | } |
| 396 | } |
| 397 | return FirstReg; |
| 398 | } |
| 399 | |
| 400 | /// getCopyFromParts - Create a value that contains the specified legal parts |
| 401 | /// combined into the value they represent. If the parts combine to a type |
| 402 | /// larger then ValueVT then AssertOp can be used to specify whether the extra |
| 403 | /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT |
| 404 | /// (ISD::AssertSext). |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 405 | static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, |
| 406 | const SDValue *Parts, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 407 | unsigned NumParts, EVT PartVT, EVT ValueVT, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 408 | ISD::NodeType AssertOp = ISD::DELETED_NODE) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 409 | assert(NumParts > 0 && "No parts to assemble!"); |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 410 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 411 | SDValue Val = Parts[0]; |
| 412 | |
| 413 | if (NumParts > 1) { |
| 414 | // Assemble the value from multiple parts. |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 415 | if (!ValueVT.isVector() && ValueVT.isInteger()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 416 | unsigned PartBits = PartVT.getSizeInBits(); |
| 417 | unsigned ValueBits = ValueVT.getSizeInBits(); |
| 418 | |
| 419 | // Assemble the power of 2 part. |
| 420 | unsigned RoundParts = NumParts & (NumParts - 1) ? |
| 421 | 1 << Log2_32(NumParts) : NumParts; |
| 422 | unsigned RoundBits = PartBits * RoundParts; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 423 | EVT RoundVT = RoundBits == ValueBits ? |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 424 | ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 425 | SDValue Lo, Hi; |
| 426 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 427 | EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2); |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 428 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 429 | if (RoundParts > 2) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 430 | Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT); |
| 431 | Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 432 | PartVT, HalfVT); |
| 433 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 434 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]); |
| 435 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 436 | } |
| 437 | if (TLI.isBigEndian()) |
| 438 | std::swap(Lo, Hi); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 439 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 440 | |
| 441 | if (RoundParts < NumParts) { |
| 442 | // Assemble the trailing non-power-of-2 part. |
| 443 | unsigned OddParts = NumParts - RoundParts; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 444 | EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 445 | Hi = getCopyFromParts(DAG, dl, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 446 | Parts+RoundParts, OddParts, PartVT, OddVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 447 | |
| 448 | // Combine the round and odd parts. |
| 449 | Lo = Val; |
| 450 | if (TLI.isBigEndian()) |
| 451 | std::swap(Lo, Hi); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 452 | EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 453 | Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi); |
| 454 | Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 455 | DAG.getConstant(Lo.getValueType().getSizeInBits(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 456 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 457 | Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo); |
| 458 | Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 459 | } |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 460 | } else if (ValueVT.isVector()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 461 | // Handle a multi-element vector. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 462 | EVT IntermediateVT, RegisterVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 463 | unsigned NumIntermediates; |
| 464 | unsigned NumRegs = |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 465 | TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT, |
| 466 | NumIntermediates, RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 467 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 468 | NumParts = NumRegs; // Silence a compiler warning. |
| 469 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 470 | assert(RegisterVT == Parts[0].getValueType() && |
| 471 | "Part type doesn't match part!"); |
| 472 | |
| 473 | // Assemble the parts into intermediate operands. |
| 474 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 475 | if (NumIntermediates == NumParts) { |
| 476 | // If the register was not expanded, truncate or copy the value, |
| 477 | // as appropriate. |
| 478 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 479 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 480 | PartVT, IntermediateVT); |
| 481 | } else if (NumParts > 0) { |
| 482 | // If the intermediate type was expanded, build the intermediate operands |
| 483 | // from the parts. |
| 484 | assert(NumParts % NumIntermediates == 0 && |
| 485 | "Must expand into a divisible number of parts!"); |
| 486 | unsigned Factor = NumParts / NumIntermediates; |
| 487 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 488 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 489 | PartVT, IntermediateVT); |
| 490 | } |
| 491 | |
| 492 | // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate |
| 493 | // operands. |
| 494 | Val = DAG.getNode(IntermediateVT.isVector() ? |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 495 | ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 496 | ValueVT, &Ops[0], NumIntermediates); |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 497 | } else if (PartVT.isFloatingPoint()) { |
| 498 | // FP split into multiple FP parts (for ppcf128) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 499 | assert(ValueVT == EVT(MVT::ppcf128) && PartVT == EVT(MVT::f64) && |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 500 | "Unexpected split"); |
| 501 | SDValue Lo, Hi; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 502 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[0]); |
| 503 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[1]); |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 504 | if (TLI.isBigEndian()) |
| 505 | std::swap(Lo, Hi); |
| 506 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi); |
| 507 | } else { |
| 508 | // FP split into integer parts (soft fp) |
| 509 | assert(ValueVT.isFloatingPoint() && PartVT.isInteger() && |
| 510 | !PartVT.isVector() && "Unexpected split"); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 511 | EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); |
Eli Friedman | 2ac8b32 | 2009-05-20 06:02:09 +0000 | [diff] [blame] | 512 | Val = getCopyFromParts(DAG, dl, Parts, NumParts, PartVT, IntVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | |
| 516 | // There is now one part, held in Val. Correct it to match ValueVT. |
| 517 | PartVT = Val.getValueType(); |
| 518 | |
| 519 | if (PartVT == ValueVT) |
| 520 | return Val; |
| 521 | |
| 522 | if (PartVT.isVector()) { |
| 523 | assert(ValueVT.isVector() && "Unknown vector conversion!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 524 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | if (ValueVT.isVector()) { |
| 528 | assert(ValueVT.getVectorElementType() == PartVT && |
| 529 | ValueVT.getVectorNumElements() == 1 && |
| 530 | "Only trivial scalar-to-vector conversions should get here!"); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 531 | return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | if (PartVT.isInteger() && |
| 535 | ValueVT.isInteger()) { |
| 536 | if (ValueVT.bitsLT(PartVT)) { |
| 537 | // For a truncate, see if we have any information to |
| 538 | // indicate whether the truncated bits will always be |
| 539 | // zero or sign-extension. |
| 540 | if (AssertOp != ISD::DELETED_NODE) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 541 | Val = DAG.getNode(AssertOp, dl, PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 542 | DAG.getValueType(ValueVT)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 543 | return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 544 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 545 | return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 546 | } |
| 547 | } |
| 548 | |
| 549 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 550 | if (ValueVT.bitsLT(Val.getValueType())) |
| 551 | // FP_ROUND's are always exact here. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 552 | return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 553 | DAG.getIntPtrConstant(1)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 554 | return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 558 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 559 | |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 560 | llvm_unreachable("Unknown mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 561 | return SDValue(); |
| 562 | } |
| 563 | |
| 564 | /// getCopyToParts - Create a series of nodes that contain the specified value |
| 565 | /// split into legal parts. If the parts contain more bits than Val, then, for |
| 566 | /// 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] | 567 | static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 568 | SDValue *Parts, unsigned NumParts, EVT PartVT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 569 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 570 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 571 | EVT PtrVT = TLI.getPointerTy(); |
| 572 | EVT ValueVT = Val.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 573 | unsigned PartBits = PartVT.getSizeInBits(); |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 574 | unsigned OrigNumParts = NumParts; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 575 | assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!"); |
| 576 | |
| 577 | if (!NumParts) |
| 578 | return; |
| 579 | |
| 580 | if (!ValueVT.isVector()) { |
| 581 | if (PartVT == ValueVT) { |
| 582 | assert(NumParts == 1 && "No-op copy with multiple parts!"); |
| 583 | Parts[0] = Val; |
| 584 | return; |
| 585 | } |
| 586 | |
| 587 | if (NumParts * PartBits > ValueVT.getSizeInBits()) { |
| 588 | // If the parts cover more bits than the value has, promote the value. |
| 589 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 590 | assert(NumParts == 1 && "Do not know what to promote to!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 591 | Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 592 | } else if (PartVT.isInteger() && ValueVT.isInteger()) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 593 | ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 594 | Val = DAG.getNode(ExtendKind, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 595 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 596 | llvm_unreachable("Unknown mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 597 | } |
| 598 | } else if (PartBits == ValueVT.getSizeInBits()) { |
| 599 | // Different types of the same size. |
| 600 | assert(NumParts == 1 && PartVT != ValueVT); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 601 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 602 | } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { |
| 603 | // If the parts cover less bits than value has, truncate the value. |
| 604 | if (PartVT.isInteger() && ValueVT.isInteger()) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 605 | ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 606 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 607 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 608 | llvm_unreachable("Unknown mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
| 612 | // The value may have changed - recompute ValueVT. |
| 613 | ValueVT = Val.getValueType(); |
| 614 | assert(NumParts * PartBits == ValueVT.getSizeInBits() && |
| 615 | "Failed to tile the value with PartVT!"); |
| 616 | |
| 617 | if (NumParts == 1) { |
| 618 | assert(PartVT == ValueVT && "Type conversion failed!"); |
| 619 | Parts[0] = Val; |
| 620 | return; |
| 621 | } |
| 622 | |
| 623 | // Expand the value into multiple parts. |
| 624 | if (NumParts & (NumParts - 1)) { |
| 625 | // The number of parts is not a power of 2. Split off and copy the tail. |
| 626 | assert(PartVT.isInteger() && ValueVT.isInteger() && |
| 627 | "Do not know what to expand to!"); |
| 628 | unsigned RoundParts = 1 << Log2_32(NumParts); |
| 629 | unsigned RoundBits = RoundParts * PartBits; |
| 630 | unsigned OddParts = NumParts - RoundParts; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 631 | SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 632 | DAG.getConstant(RoundBits, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 633 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 634 | getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 635 | if (TLI.isBigEndian()) |
| 636 | // The odd parts were reversed by getCopyToParts - unreverse them. |
| 637 | std::reverse(Parts + RoundParts, Parts + NumParts); |
| 638 | NumParts = RoundParts; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 639 | ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 640 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | // The number of parts is a power of 2. Repeatedly bisect the value using |
| 644 | // EXTRACT_ELEMENT. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 645 | Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 646 | EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 647 | Val); |
| 648 | for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { |
| 649 | for (unsigned i = 0; i < NumParts; i += StepSize) { |
| 650 | unsigned ThisBits = StepSize * PartBits / 2; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 651 | EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 652 | SDValue &Part0 = Parts[i]; |
| 653 | SDValue &Part1 = Parts[i+StepSize/2]; |
| 654 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 655 | Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 656 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 657 | DAG.getConstant(1, PtrVT)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 658 | Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 659 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 660 | DAG.getConstant(0, PtrVT)); |
| 661 | |
| 662 | if (ThisBits == PartBits && ThisVT != PartVT) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 663 | Part0 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 664 | PartVT, Part0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 665 | Part1 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 666 | PartVT, Part1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 667 | } |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | if (TLI.isBigEndian()) |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 672 | std::reverse(Parts, Parts + OrigNumParts); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 673 | |
| 674 | return; |
| 675 | } |
| 676 | |
| 677 | // Vector ValueVT. |
| 678 | if (NumParts == 1) { |
| 679 | if (PartVT != ValueVT) { |
| 680 | if (PartVT.isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 681 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 682 | } else { |
| 683 | assert(ValueVT.getVectorElementType() == PartVT && |
| 684 | ValueVT.getVectorNumElements() == 1 && |
| 685 | "Only trivial vector-to-scalar conversions should get here!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 686 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 687 | PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 688 | DAG.getConstant(0, PtrVT)); |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | Parts[0] = Val; |
| 693 | return; |
| 694 | } |
| 695 | |
| 696 | // Handle a multi-element vector. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 697 | EVT IntermediateVT, RegisterVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 698 | unsigned NumIntermediates; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 699 | unsigned NumRegs = TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, |
| 700 | IntermediateVT, NumIntermediates, RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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(); |
Evan Cheng | fb2e752 | 2009-09-18 21:02:19 +0000 | [diff] [blame] | 754 | EdgeMapping.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 755 | DAG.clear(); |
Bill Wendling | 8fcf170 | 2009-02-06 21:36:23 +0000 | [diff] [blame] | 756 | CurDebugLoc = DebugLoc::getUnknownLoc(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 757 | HasTailCall = false; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 761 | /// flushing any PendingLoad items. This must be done before emitting |
| 762 | /// a store or any other node that may need to be ordered after any |
| 763 | /// prior load instructions. |
| 764 | /// |
| 765 | SDValue SelectionDAGLowering::getRoot() { |
| 766 | if (PendingLoads.empty()) |
| 767 | return DAG.getRoot(); |
| 768 | |
| 769 | if (PendingLoads.size() == 1) { |
| 770 | SDValue Root = PendingLoads[0]; |
| 771 | DAG.setRoot(Root); |
| 772 | PendingLoads.clear(); |
| 773 | return Root; |
| 774 | } |
| 775 | |
| 776 | // Otherwise, we have to make a token factor node. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 777 | SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 778 | &PendingLoads[0], PendingLoads.size()); |
| 779 | PendingLoads.clear(); |
| 780 | DAG.setRoot(Root); |
| 781 | return Root; |
| 782 | } |
| 783 | |
| 784 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 785 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 786 | /// to do this before emitting a terminator instruction. |
| 787 | /// |
| 788 | SDValue SelectionDAGLowering::getControlRoot() { |
| 789 | SDValue Root = DAG.getRoot(); |
| 790 | |
| 791 | if (PendingExports.empty()) |
| 792 | return Root; |
| 793 | |
| 794 | // Turn all of the CopyToReg chains into one factored node. |
| 795 | if (Root.getOpcode() != ISD::EntryToken) { |
| 796 | unsigned i = 0, e = PendingExports.size(); |
| 797 | for (; i != e; ++i) { |
| 798 | assert(PendingExports[i].getNode()->getNumOperands() > 1); |
| 799 | if (PendingExports[i].getNode()->getOperand(0) == Root) |
| 800 | break; // Don't add the root if we already indirectly depend on it. |
| 801 | } |
| 802 | |
| 803 | if (i == e) |
| 804 | PendingExports.push_back(Root); |
| 805 | } |
| 806 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 807 | Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 808 | &PendingExports[0], |
| 809 | PendingExports.size()); |
| 810 | PendingExports.clear(); |
| 811 | DAG.setRoot(Root); |
| 812 | return Root; |
| 813 | } |
| 814 | |
| 815 | void SelectionDAGLowering::visit(Instruction &I) { |
| 816 | visit(I.getOpcode(), I); |
| 817 | } |
| 818 | |
| 819 | void SelectionDAGLowering::visit(unsigned Opcode, User &I) { |
| 820 | // Note: this doesn't use InstVisitor, because it has to work with |
| 821 | // ConstantExpr's in addition to instructions. |
| 822 | switch (Opcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 823 | default: llvm_unreachable("Unknown instruction type encountered!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 824 | // Build the switch statement using the Instruction.def file. |
| 825 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 826 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 827 | #include "llvm/Instruction.def" |
| 828 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 829 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 830 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 831 | SDValue SelectionDAGLowering::getValue(const Value *V) { |
| 832 | SDValue &N = NodeMap[V]; |
| 833 | if (N.getNode()) return N; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 834 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 835 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 836 | EVT VT = TLI.getValueType(V->getType(), true); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 837 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 838 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 839 | return N = DAG.getConstant(*CI, VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 840 | |
| 841 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 842 | return N = DAG.getGlobalAddress(GV, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 843 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 844 | if (isa<ConstantPointerNull>(C)) |
| 845 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 846 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 847 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 848 | return N = DAG.getConstantFP(*CFP, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 849 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 850 | if (isa<UndefValue>(C) && !V->getType()->isAggregateType()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 851 | return N = DAG.getUNDEF(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 852 | |
| 853 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 854 | visit(CE->getOpcode(), *CE); |
| 855 | SDValue N1 = NodeMap[V]; |
| 856 | assert(N1.getNode() && "visit didn't populate the ValueMap!"); |
| 857 | return N1; |
| 858 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 859 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 860 | if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { |
| 861 | SmallVector<SDValue, 4> Constants; |
| 862 | for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); |
| 863 | OI != OE; ++OI) { |
| 864 | SDNode *Val = getValue(*OI).getNode(); |
Dan Gohman | ed48caf | 2009-09-08 01:44:02 +0000 | [diff] [blame] | 865 | // If the operand is an empty aggregate, there are no values. |
| 866 | if (!Val) continue; |
| 867 | // Add each leaf value from the operand to the Constants list |
| 868 | // to form a flattened list of all the values. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 869 | for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) |
| 870 | Constants.push_back(SDValue(Val, i)); |
| 871 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 872 | return DAG.getMergeValues(&Constants[0], Constants.size(), |
| 873 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) { |
| 877 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 878 | "Unknown struct or array constant!"); |
| 879 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 880 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 881 | ComputeValueVTs(TLI, C->getType(), ValueVTs); |
| 882 | unsigned NumElts = ValueVTs.size(); |
| 883 | if (NumElts == 0) |
| 884 | return SDValue(); // empty struct |
| 885 | SmallVector<SDValue, 4> Constants(NumElts); |
| 886 | for (unsigned i = 0; i != NumElts; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 887 | EVT EltVT = ValueVTs[i]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 888 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 889 | Constants[i] = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 890 | else if (EltVT.isFloatingPoint()) |
| 891 | Constants[i] = DAG.getConstantFP(0, EltVT); |
| 892 | else |
| 893 | Constants[i] = DAG.getConstant(0, EltVT); |
| 894 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 895 | return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | const VectorType *VecTy = cast<VectorType>(V->getType()); |
| 899 | unsigned NumElements = VecTy->getNumElements(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 900 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 901 | // Now that we know the number and type of the elements, get that number of |
| 902 | // elements into the Ops array based on what kind of constant it is. |
| 903 | SmallVector<SDValue, 16> Ops; |
| 904 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { |
| 905 | for (unsigned i = 0; i != NumElements; ++i) |
| 906 | Ops.push_back(getValue(CP->getOperand(i))); |
| 907 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 908 | assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 909 | EVT EltVT = TLI.getValueType(VecTy->getElementType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 910 | |
| 911 | SDValue Op; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 912 | if (EltVT.isFloatingPoint()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 913 | Op = DAG.getConstantFP(0, EltVT); |
| 914 | else |
| 915 | Op = DAG.getConstant(0, EltVT); |
| 916 | Ops.assign(NumElements, Op); |
| 917 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 918 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 919 | // Create a BUILD_VECTOR node. |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 920 | return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 921 | VT, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 922 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 923 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 924 | // If this is a static alloca, generate it as the frameindex instead of |
| 925 | // computation. |
| 926 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 927 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 928 | FuncInfo.StaticAllocaMap.find(AI); |
| 929 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 930 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 931 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 932 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 933 | unsigned InReg = FuncInfo.ValueMap[V]; |
| 934 | assert(InReg && "Value not in map!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 935 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 936 | RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 937 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 938 | return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | |
| 942 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 943 | SDValue Chain = getControlRoot(); |
| 944 | SmallVector<ISD::OutputArg, 8> Outs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 945 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 946 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 953 | EVT VT = ValueVTs[j]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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()) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 968 | EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32); |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 969 | if (VT.bitsLT(MinVT)) |
| 970 | VT = MinVT; |
| 971 | } |
| 972 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 973 | unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT); |
| 974 | EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT); |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 975 | SmallVector<SDValue, 4> Parts(NumParts); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 976 | getCopyToParts(DAG, getCurDebugLoc(), |
| 977 | SDValue(RetOp.getNode(), RetOp.getResNo() + j), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 978 | &Parts[0], NumParts, PartVT, ExtendKind); |
| 979 | |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 980 | // 'inreg' on function refers to return value |
| 981 | ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 982 | if (F->paramHasAttr(0, Attribute::InReg)) |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 983 | Flags.setInReg(); |
Anton Korobeynikov | 0692fab | 2009-07-16 13:35:48 +0000 | [diff] [blame] | 984 | |
| 985 | // Propagate extension type if any |
| 986 | if (F->paramHasAttr(0, Attribute::SExt)) |
| 987 | Flags.setSExt(); |
| 988 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
| 989 | Flags.setZExt(); |
| 990 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 991 | for (unsigned i = 0; i < NumParts; ++i) |
| 992 | Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 993 | } |
| 994 | } |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 995 | |
| 996 | bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 997 | CallingConv::ID CallConv = |
| 998 | DAG.getMachineFunction().getFunction()->getCallingConv(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 999 | Chain = TLI.LowerReturn(Chain, CallConv, isVarArg, |
| 1000 | Outs, getCurDebugLoc(), DAG); |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 1001 | |
| 1002 | // Verify that the target's LowerReturn behaved as expected. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1003 | assert(Chain.getNode() && Chain.getValueType() == MVT::Other && |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 1004 | "LowerReturn didn't return a valid chain!"); |
| 1005 | |
| 1006 | // Update the DAG with the new chain value resulting from return lowering. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1007 | DAG.setRoot(Chain); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1010 | /// CopyToExportRegsIfNeeded - If the given value has virtual registers |
| 1011 | /// created for it, emit nodes to copy the value into the virtual |
| 1012 | /// registers. |
| 1013 | void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) { |
| 1014 | if (!V->use_empty()) { |
| 1015 | DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); |
| 1016 | if (VMI != FuncInfo.ValueMap.end()) |
| 1017 | CopyValueToVirtualRegister(V, VMI->second); |
| 1018 | } |
| 1019 | } |
| 1020 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1021 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1022 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1023 | /// CopyTo/FromReg. |
| 1024 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1025 | // No need to export constants. |
| 1026 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
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 | // Already exported? |
| 1029 | if (FuncInfo.isExportedInst(V)) return; |
| 1030 | |
| 1031 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1032 | CopyValueToVirtualRegister(V, Reg); |
| 1033 | } |
| 1034 | |
| 1035 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1036 | const BasicBlock *FromBB) { |
| 1037 | // The operands of the setcc have to be in this block. We don't know |
| 1038 | // how to export them from some other block. |
| 1039 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1040 | // Can export from current BB. |
| 1041 | if (VI->getParent() == FromBB) |
| 1042 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1043 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1044 | // Is already exported, noop. |
| 1045 | return FuncInfo.isExportedInst(V); |
| 1046 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1047 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1048 | // If this is an argument, we can export it if the BB is the entry block or |
| 1049 | // if it is already exported. |
| 1050 | if (isa<Argument>(V)) { |
| 1051 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1052 | return true; |
| 1053 | |
| 1054 | // Otherwise, can only export this if it is already exported. |
| 1055 | return FuncInfo.isExportedInst(V); |
| 1056 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1057 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1058 | // Otherwise, constants can always be exported. |
| 1059 | return true; |
| 1060 | } |
| 1061 | |
| 1062 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1063 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1064 | return I->getParent() == BB; |
| 1065 | return true; |
| 1066 | } |
| 1067 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1068 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1069 | /// the given LLVM IR floating-point condition code. This includes |
| 1070 | /// consideration of global floating-point math flags. |
| 1071 | /// |
| 1072 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1073 | ISD::CondCode FPC, FOC; |
| 1074 | switch (Pred) { |
| 1075 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1076 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1077 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1078 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1079 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1080 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1081 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1082 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1083 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1084 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1085 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1086 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1087 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1088 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1089 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1090 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1091 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1092 | llvm_unreachable("Invalid FCmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1093 | FOC = FPC = ISD::SETFALSE; |
| 1094 | break; |
| 1095 | } |
| 1096 | if (FiniteOnlyFPMath()) |
| 1097 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1098 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1099 | return FPC; |
| 1100 | } |
| 1101 | |
| 1102 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1103 | /// the given LLVM IR integer condition code. |
| 1104 | /// |
| 1105 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1106 | switch (Pred) { |
| 1107 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1108 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1109 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1110 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1111 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1112 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1113 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1114 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1115 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1116 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1117 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1118 | llvm_unreachable("Invalid ICmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1119 | return ISD::SETNE; |
| 1120 | } |
| 1121 | } |
| 1122 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1123 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1124 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1125 | /// AND operator tree. |
| 1126 | /// |
| 1127 | void |
| 1128 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1129 | MachineBasicBlock *TBB, |
| 1130 | MachineBasicBlock *FBB, |
| 1131 | MachineBasicBlock *CurBB) { |
| 1132 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1133 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1134 | // If the leaf of the tree is a comparison, merge the condition into |
| 1135 | // the caseblock. |
| 1136 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1137 | // The operands of the cmp have to be in this block. We don't know |
| 1138 | // how to export them from some other block. If this is the first block |
| 1139 | // of the sequence, no exporting is needed. |
| 1140 | if (CurBB == CurMBB || |
| 1141 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1142 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1143 | ISD::CondCode Condition; |
| 1144 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1145 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1146 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1147 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1148 | } else { |
| 1149 | Condition = ISD::SETEQ; // silence warning. |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1150 | llvm_unreachable("Unknown compare instruction"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1151 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1152 | |
| 1153 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1154 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1155 | SwitchCases.push_back(CB); |
| 1156 | return; |
| 1157 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1158 | } |
| 1159 | |
| 1160 | // Create a CaseBlock record representing this branch. |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1161 | CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()), |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1162 | NULL, TBB, FBB, CurBB); |
| 1163 | SwitchCases.push_back(CB); |
| 1164 | } |
| 1165 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1166 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1167 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1168 | MachineBasicBlock *TBB, |
| 1169 | MachineBasicBlock *FBB, |
| 1170 | MachineBasicBlock *CurBB, |
| 1171 | unsigned Opc) { |
| 1172 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1173 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1174 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1175 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1176 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1177 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1178 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1179 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1180 | return; |
| 1181 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1182 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1183 | // Create TmpBB after CurBB. |
| 1184 | MachineFunction::iterator BBI = CurBB; |
| 1185 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1186 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1187 | CurBB->getParent()->insert(++BBI, TmpBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1188 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1189 | if (Opc == Instruction::Or) { |
| 1190 | // Codegen X | Y as: |
| 1191 | // jmp_if_X TBB |
| 1192 | // jmp TmpBB |
| 1193 | // TmpBB: |
| 1194 | // jmp_if_Y TBB |
| 1195 | // jmp FBB |
| 1196 | // |
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), TBB, TmpBB, 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 | } else { |
| 1204 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1205 | // Codegen X & Y as: |
| 1206 | // jmp_if_X TmpBB |
| 1207 | // jmp FBB |
| 1208 | // TmpBB: |
| 1209 | // jmp_if_Y TBB |
| 1210 | // jmp FBB |
| 1211 | // |
| 1212 | // This requires creation of TmpBB after CurBB. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1213 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1214 | // Emit the LHS condition. |
| 1215 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1216 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1217 | // Emit the RHS condition into TmpBB. |
| 1218 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1219 | } |
| 1220 | } |
| 1221 | |
| 1222 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1223 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1224 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1225 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1226 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1227 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1228 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1229 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1230 | // will get folded into a single comparison, so don't emit two blocks. |
| 1231 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1232 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1233 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1234 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1235 | return false; |
| 1236 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1237 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1238 | return true; |
| 1239 | } |
| 1240 | |
| 1241 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1242 | // Update machine-CFG edges. |
| 1243 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1244 | |
| 1245 | // Figure out which block is immediately after the current one. |
| 1246 | MachineBasicBlock *NextBlock = 0; |
| 1247 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1248 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1249 | NextBlock = BBI; |
| 1250 | |
| 1251 | if (I.isUnconditional()) { |
| 1252 | // Update machine-CFG edges. |
| 1253 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1254 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1255 | // If this is not a fall-through branch, emit the branch. |
| 1256 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1257 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1258 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1259 | DAG.getBasicBlock(Succ0MBB))); |
| 1260 | return; |
| 1261 | } |
| 1262 | |
| 1263 | // If this condition is one of the special cases we handle, do special stuff |
| 1264 | // now. |
| 1265 | Value *CondVal = I.getCondition(); |
| 1266 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1267 | |
| 1268 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1269 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1270 | // For example, instead of something like: |
| 1271 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1272 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1273 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1274 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1275 | // or C, F |
| 1276 | // jnz foo |
| 1277 | // Emit: |
| 1278 | // cmp A, B |
| 1279 | // je foo |
| 1280 | // cmp D, E |
| 1281 | // jle foo |
| 1282 | // |
| 1283 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1284 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1285 | (BOp->getOpcode() == Instruction::And || |
| 1286 | BOp->getOpcode() == Instruction::Or)) { |
| 1287 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1288 | // If the compares in later blocks need to use values not currently |
| 1289 | // exported from this block, export them now. This block should always |
| 1290 | // be the first entry. |
| 1291 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1292 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1293 | // Allow some cases to be rejected. |
| 1294 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1295 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1296 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1297 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1298 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1299 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1300 | // Emit the branch for this block. |
| 1301 | visitSwitchCase(SwitchCases[0]); |
| 1302 | SwitchCases.erase(SwitchCases.begin()); |
| 1303 | return; |
| 1304 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1305 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1306 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1307 | // SwitchCases. |
| 1308 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1309 | FuncInfo.MF->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1310 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1311 | SwitchCases.clear(); |
| 1312 | } |
| 1313 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1314 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1315 | // Create a CaseBlock record representing this branch. |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1316 | CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1317 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1318 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1319 | // cond branch. |
| 1320 | visitSwitchCase(CB); |
| 1321 | } |
| 1322 | |
| 1323 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1324 | /// the binary search tree resulting from lowering a switch instruction. |
| 1325 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1326 | SDValue Cond; |
| 1327 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1328 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1329 | |
| 1330 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1331 | if (CB.CmpMHS == NULL) { |
| 1332 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1333 | // handle common cases produced by branch lowering. |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1334 | if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) && |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame] | 1335 | CB.CC == ISD::SETEQ) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1336 | Cond = CondLHS; |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1337 | else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) && |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame] | 1338 | CB.CC == ISD::SETEQ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1339 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1340 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1341 | } else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1342 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1343 | } else { |
| 1344 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1345 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1346 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1347 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1348 | |
| 1349 | SDValue CmpOp = getValue(CB.CmpMHS); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1350 | EVT VT = CmpOp.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1351 | |
| 1352 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1353 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1354 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1355 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1356 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1357 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1358 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1359 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1360 | } |
| 1361 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1362 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1363 | // Update successor info |
| 1364 | CurMBB->addSuccessor(CB.TrueBB); |
| 1365 | CurMBB->addSuccessor(CB.FalseBB); |
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 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1368 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1369 | MachineBasicBlock *NextBlock = 0; |
| 1370 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1371 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1372 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1373 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1374 | // If the lhs block is the next block, invert the condition so that we can |
| 1375 | // fall through to the lhs instead of the rhs block. |
| 1376 | if (CB.TrueBB == NextBlock) { |
| 1377 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1378 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1379 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1380 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1381 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1382 | MVT::Other, getControlRoot(), Cond, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1383 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1384 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1385 | // If the branch was constant folded, fix up the CFG. |
| 1386 | if (BrCond.getOpcode() == ISD::BR) { |
| 1387 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1388 | DAG.setRoot(BrCond); |
| 1389 | } else { |
| 1390 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1391 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1392 | CurMBB->removeSuccessor(CB.TrueBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1393 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1394 | if (CB.FalseBB == NextBlock) |
| 1395 | DAG.setRoot(BrCond); |
| 1396 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1397 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1398 | DAG.getBasicBlock(CB.FalseBB))); |
| 1399 | } |
| 1400 | } |
| 1401 | |
| 1402 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1403 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1404 | // Emit the code for the jump table |
| 1405 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1406 | EVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1407 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1408 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1409 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1410 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1411 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1412 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1413 | } |
| 1414 | |
| 1415 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1416 | /// in the JumpTable from switch case. |
| 1417 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1418 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1419 | // Subtract the lowest switch case value from the value being switched on and |
| 1420 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1421 | // difference between smallest and largest cases. |
| 1422 | SDValue SwitchOp = getValue(JTH.SValue); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1423 | EVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1424 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1425 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1426 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1427 | // The SDNode we just created, which holds the value being switched on minus |
| 1428 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1429 | // can be used as an index into the jump table in a subsequent basic block. |
| 1430 | // This value may be smaller or larger than the target's pointer type, and |
| 1431 | // therefore require extension or truncating. |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 1432 | SwitchOp = DAG.getZExtOrTrunc(SUB, getCurDebugLoc(), TLI.getPointerTy()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1433 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1434 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1435 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1436 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1437 | JT.Reg = JumpTableReg; |
| 1438 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1439 | // Emit the range check for the jump table, and branch to the default block |
| 1440 | // for the switch statement if the value being switched on exceeds the largest |
| 1441 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1442 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1443 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1444 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1445 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1446 | |
| 1447 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1448 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1449 | MachineBasicBlock *NextBlock = 0; |
| 1450 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1451 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1452 | NextBlock = BBI; |
| 1453 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1454 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1455 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1456 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1457 | |
| 1458 | if (JT.MBB == NextBlock) |
| 1459 | DAG.setRoot(BrCond); |
| 1460 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1461 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1462 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1463 | } |
| 1464 | |
| 1465 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1466 | /// suitable for "bit tests" |
| 1467 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1468 | // Subtract the minimum value |
| 1469 | SDValue SwitchOp = getValue(B.SValue); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1470 | EVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1471 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1472 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1473 | |
| 1474 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1475 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1476 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1477 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1478 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1479 | |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 1480 | SDValue ShiftOp = DAG.getZExtOrTrunc(SUB, getCurDebugLoc(), TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1481 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1482 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1483 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1484 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1485 | |
| 1486 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1487 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1488 | MachineBasicBlock *NextBlock = 0; |
| 1489 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1490 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1491 | NextBlock = BBI; |
| 1492 | |
| 1493 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1494 | |
| 1495 | CurMBB->addSuccessor(B.Default); |
| 1496 | CurMBB->addSuccessor(MBB); |
| 1497 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1498 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1499 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1500 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1501 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1502 | if (MBB == NextBlock) |
| 1503 | DAG.setRoot(BrRange); |
| 1504 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1505 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1506 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | /// visitBitTestCase - this function produces one "bit test" |
| 1510 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1511 | unsigned Reg, |
| 1512 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1513 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1514 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1515 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1516 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1517 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1518 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1519 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1520 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1521 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1522 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1523 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1524 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1525 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1526 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1527 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1528 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1529 | |
| 1530 | CurMBB->addSuccessor(B.TargetBB); |
| 1531 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1532 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1533 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1534 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1535 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1536 | |
| 1537 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1538 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1539 | MachineBasicBlock *NextBlock = 0; |
| 1540 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1541 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1542 | NextBlock = BBI; |
| 1543 | |
| 1544 | if (NextMBB == NextBlock) |
| 1545 | DAG.setRoot(BrAnd); |
| 1546 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1547 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1548 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1549 | } |
| 1550 | |
| 1551 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1552 | // Retrieve successors. |
| 1553 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1554 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1555 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1556 | const Value *Callee(I.getCalledValue()); |
| 1557 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1558 | visitInlineAsm(&I); |
| 1559 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1560 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1561 | |
| 1562 | // If the value of the invoke is used outside of its defining block, make it |
| 1563 | // available as a virtual register. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1564 | CopyToExportRegsIfNeeded(&I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1565 | |
| 1566 | // Update successor info |
| 1567 | CurMBB->addSuccessor(Return); |
| 1568 | CurMBB->addSuccessor(LandingPad); |
| 1569 | |
| 1570 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1571 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1572 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1573 | DAG.getBasicBlock(Return))); |
| 1574 | } |
| 1575 | |
| 1576 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1577 | } |
| 1578 | |
| 1579 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1580 | /// small case ranges). |
| 1581 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1582 | CaseRecVector& WorkList, |
| 1583 | Value* SV, |
| 1584 | MachineBasicBlock* Default) { |
| 1585 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1586 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1587 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1588 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1589 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1590 | return false; |
| 1591 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1592 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1593 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1594 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1595 | |
| 1596 | // Figure out which block is immediately after the current one. |
| 1597 | MachineBasicBlock *NextBlock = 0; |
| 1598 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1599 | |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1600 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1601 | NextBlock = BBI; |
| 1602 | |
| 1603 | // TODO: If any two of the cases has the same destination, and if one value |
| 1604 | // is the same as the other, but has one bit unset that the other has set, |
| 1605 | // use bit manipulation to do two compares at once. For example: |
| 1606 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1607 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1608 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1609 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1610 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1611 | // branches in this order. See if rearranging a case value would help. |
| 1612 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1613 | if (I->BB == NextBlock) { |
| 1614 | std::swap(*I, BackCase); |
| 1615 | break; |
| 1616 | } |
| 1617 | } |
| 1618 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1619 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1620 | // Create a CaseBlock record representing a conditional branch to |
| 1621 | // the Case's target mbb if the value being switched on SV is equal |
| 1622 | // to C. |
| 1623 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1624 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1625 | MachineBasicBlock *FallThrough; |
| 1626 | if (I != E-1) { |
| 1627 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1628 | CurMF->insert(BBI, FallThrough); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1629 | |
| 1630 | // Put SV in a virtual register to make it available from the new blocks. |
| 1631 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1632 | } else { |
| 1633 | // If the last case doesn't match, go to the default block. |
| 1634 | FallThrough = Default; |
| 1635 | } |
| 1636 | |
| 1637 | Value *RHS, *LHS, *MHS; |
| 1638 | ISD::CondCode CC; |
| 1639 | if (I->High == I->Low) { |
| 1640 | // This is just small small case range :) containing exactly 1 case |
| 1641 | CC = ISD::SETEQ; |
| 1642 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1643 | } else { |
| 1644 | CC = ISD::SETLE; |
| 1645 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1646 | } |
| 1647 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1648 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1649 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1650 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1651 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1652 | // before the next MBB. |
| 1653 | if (CurBlock == CurMBB) |
| 1654 | visitSwitchCase(CB); |
| 1655 | else |
| 1656 | SwitchCases.push_back(CB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1657 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1658 | CurBlock = FallThrough; |
| 1659 | } |
| 1660 | |
| 1661 | return true; |
| 1662 | } |
| 1663 | |
| 1664 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1665 | return !DisableJumpTables && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1666 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1667 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1668 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1669 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1670 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1671 | APInt LastExt(Last), FirstExt(First); |
| 1672 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1673 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1674 | return (LastExt - FirstExt + 1ULL); |
| 1675 | } |
| 1676 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1677 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1678 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1679 | CaseRecVector& WorkList, |
| 1680 | Value* SV, |
| 1681 | MachineBasicBlock* Default) { |
| 1682 | Case& FrontCase = *CR.Range.first; |
| 1683 | Case& BackCase = *(CR.Range.second-1); |
| 1684 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1685 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1686 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1687 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1688 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1689 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1690 | I!=E; ++I) |
| 1691 | TSize += I->size(); |
| 1692 | |
| 1693 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1694 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1695 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1696 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1697 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1698 | if (Density < 0.4) |
| 1699 | return false; |
| 1700 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1701 | DEBUG(errs() << "Lowering jump table\n" |
| 1702 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1703 | << "Range: " << Range |
| 1704 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1705 | |
| 1706 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1707 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1708 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1709 | |
| 1710 | // Figure out which block is immediately after the current one. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1711 | MachineFunction::iterator BBI = CR.CaseBB; |
Duncan Sands | 5149852 | 2009-09-06 18:03:32 +0000 | [diff] [blame] | 1712 | ++BBI; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1713 | |
| 1714 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1715 | |
| 1716 | // Create a new basic block to hold the code for loading the address |
| 1717 | // of the jump table, and jumping to it. Update successor information; |
| 1718 | // we will either branch to the default case for the switch, or the jump |
| 1719 | // table. |
| 1720 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1721 | CurMF->insert(BBI, JumpTableBB); |
| 1722 | CR.CaseBB->addSuccessor(Default); |
| 1723 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1724 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1725 | // Build a vector of destination BBs, corresponding to each target |
| 1726 | // of the jump table. If the value of the jump table slot corresponds to |
| 1727 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1728 | // the default BB. |
| 1729 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1730 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1731 | 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] | 1732 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1733 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1734 | |
| 1735 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1736 | DestBBs.push_back(I->BB); |
| 1737 | if (TEI==High) |
| 1738 | ++I; |
| 1739 | } else { |
| 1740 | DestBBs.push_back(Default); |
| 1741 | } |
| 1742 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1743 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1744 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1745 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1746 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1747 | E = DestBBs.end(); I != E; ++I) { |
| 1748 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1749 | SuccsHandled[(*I)->getNumber()] = true; |
| 1750 | JumpTableBB->addSuccessor(*I); |
| 1751 | } |
| 1752 | } |
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 | // Create a jump table index for this jump table, or return an existing |
| 1755 | // one. |
| 1756 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1757 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1758 | // Set the jump table information so that we can codegen it as a second |
| 1759 | // MachineBasicBlock |
| 1760 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1761 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1762 | if (CR.CaseBB == CurMBB) |
| 1763 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1764 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1765 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1766 | |
| 1767 | return true; |
| 1768 | } |
| 1769 | |
| 1770 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1771 | /// 2 subtrees. |
| 1772 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1773 | CaseRecVector& WorkList, |
| 1774 | Value* SV, |
| 1775 | MachineBasicBlock* Default) { |
| 1776 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1777 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1778 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1779 | |
| 1780 | // Figure out which block is immediately after the current one. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1781 | MachineFunction::iterator BBI = CR.CaseBB; |
Duncan Sands | 5149852 | 2009-09-06 18:03:32 +0000 | [diff] [blame] | 1782 | ++BBI; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1783 | |
| 1784 | Case& FrontCase = *CR.Range.first; |
| 1785 | Case& BackCase = *(CR.Range.second-1); |
| 1786 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1787 | |
| 1788 | // Size is the number of Cases represented by this range. |
| 1789 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1790 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1791 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1792 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1793 | double FMetric = 0; |
| 1794 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1795 | |
| 1796 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1797 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1798 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1799 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1800 | I!=E; ++I) |
| 1801 | TSize += I->size(); |
| 1802 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1803 | size_t LSize = FrontCase.size(); |
| 1804 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1805 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1806 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1807 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1808 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1809 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1810 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1811 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1812 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1813 | assert((Range - 2ULL).isNonNegative() && |
| 1814 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1815 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1816 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1817 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1818 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1819 | DEBUG(errs() <<"=>Step\n" |
| 1820 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1821 | << "LDensity: " << LDensity |
| 1822 | << ", RDensity: " << RDensity << '\n' |
| 1823 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1824 | if (FMetric < Metric) { |
| 1825 | Pivot = J; |
| 1826 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1827 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | LSize += J->size(); |
| 1831 | RSize -= J->size(); |
| 1832 | } |
| 1833 | if (areJTsAllowed(TLI)) { |
| 1834 | // If our case is dense we *really* should handle it earlier! |
| 1835 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1836 | } else { |
| 1837 | Pivot = CR.Range.first + Size/2; |
| 1838 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1839 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1840 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1841 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1842 | Constant *C = Pivot->Low; |
| 1843 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1844 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1845 | // 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] | 1846 | // 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] | 1847 | // 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] | 1848 | // 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] | 1849 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1850 | // rather than creating a leaf node for it. |
| 1851 | if ((LHSR.second - LHSR.first) == 1 && |
| 1852 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1853 | cast<ConstantInt>(C)->getValue() == |
| 1854 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1855 | TrueBB = LHSR.first->BB; |
| 1856 | } else { |
| 1857 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1858 | CurMF->insert(BBI, TrueBB); |
| 1859 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1860 | |
| 1861 | // Put SV in a virtual register to make it available from the new blocks. |
| 1862 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1863 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1864 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1865 | // Similar to the optimization above, if the Value being switched on is |
| 1866 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1867 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1868 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1869 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1870 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1871 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1872 | FalseBB = RHSR.first->BB; |
| 1873 | } else { |
| 1874 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1875 | CurMF->insert(BBI, FalseBB); |
| 1876 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1877 | |
| 1878 | // Put SV in a virtual register to make it available from the new blocks. |
| 1879 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1880 | } |
| 1881 | |
| 1882 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1883 | // 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] | 1884 | // Otherwise, branch to LHS. |
| 1885 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1886 | |
| 1887 | if (CR.CaseBB == CurMBB) |
| 1888 | visitSwitchCase(CB); |
| 1889 | else |
| 1890 | SwitchCases.push_back(CB); |
| 1891 | |
| 1892 | return true; |
| 1893 | } |
| 1894 | |
| 1895 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1896 | /// range span less, than machine word bitwidth, encode case range into series |
| 1897 | /// of masks and emit bit tests with these masks. |
| 1898 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1899 | CaseRecVector& WorkList, |
| 1900 | Value* SV, |
| 1901 | MachineBasicBlock* Default){ |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1902 | EVT PTy = TLI.getPointerTy(); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 1903 | unsigned IntPtrBits = PTy.getSizeInBits(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1904 | |
| 1905 | Case& FrontCase = *CR.Range.first; |
| 1906 | Case& BackCase = *(CR.Range.second-1); |
| 1907 | |
| 1908 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1909 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1910 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1911 | |
Anton Korobeynikov | d34167a | 2009-05-08 18:51:34 +0000 | [diff] [blame] | 1912 | // If target does not have legal shift left, do not emit bit tests at all. |
| 1913 | if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy())) |
| 1914 | return false; |
| 1915 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1916 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1917 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1918 | I!=E; ++I) { |
| 1919 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1920 | numCmps += (I->Low == I->High ? 1 : 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1921 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1922 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1923 | // Count unique destinations |
| 1924 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1925 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1926 | Dests.insert(I->BB); |
| 1927 | if (Dests.size() > 3) |
| 1928 | // Don't bother the code below, if there are too much unique destinations |
| 1929 | return false; |
| 1930 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1931 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1932 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1933 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1934 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1935 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1936 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1937 | APInt cmpRange = maxValue - minValue; |
| 1938 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1939 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1940 | << "Low bound: " << minValue << '\n' |
| 1941 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1942 | |
| 1943 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1944 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1945 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1946 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1947 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1948 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1949 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1950 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1951 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1952 | // Optimize the case where all the case values fit in a |
| 1953 | // word without having to subtract minValue. In this case, |
| 1954 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1955 | if (minValue.isNonNegative() && |
| 1956 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1957 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1958 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1959 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1960 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1961 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1962 | CaseBitsVector CasesBits; |
| 1963 | unsigned i, count = 0; |
| 1964 | |
| 1965 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1966 | MachineBasicBlock* Dest = I->BB; |
| 1967 | for (i = 0; i < count; ++i) |
| 1968 | if (Dest == CasesBits[i].BB) |
| 1969 | break; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1970 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1971 | if (i == count) { |
| 1972 | assert((count < 3) && "Too much destinations to test!"); |
| 1973 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1974 | count++; |
| 1975 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1976 | |
| 1977 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1978 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1979 | |
| 1980 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 1981 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 1982 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1983 | for (uint64_t j = lo; j <= hi; j++) { |
| 1984 | CasesBits[i].Mask |= 1ULL << j; |
| 1985 | CasesBits[i].Bits++; |
| 1986 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1987 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1988 | } |
| 1989 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1990 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1991 | BitTestInfo BTC; |
| 1992 | |
| 1993 | // Figure out which block is immediately after the current one. |
| 1994 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1995 | ++BBI; |
| 1996 | |
| 1997 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1998 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1999 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2000 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2001 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2002 | << ", Bits: " << CasesBits[i].Bits |
| 2003 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2004 | |
| 2005 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2006 | CurMF->insert(BBI, CaseBB); |
| 2007 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2008 | CaseBB, |
| 2009 | CasesBits[i].BB)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 2010 | |
| 2011 | // Put SV in a virtual register to make it available from the new blocks. |
| 2012 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2013 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2014 | |
| 2015 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2016 | -1U, (CR.CaseBB == CurMBB), |
| 2017 | CR.CaseBB, Default, BTC); |
| 2018 | |
| 2019 | if (CR.CaseBB == CurMBB) |
| 2020 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2021 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2022 | BitTestCases.push_back(BTB); |
| 2023 | |
| 2024 | return true; |
| 2025 | } |
| 2026 | |
| 2027 | |
| 2028 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2029 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2030 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2031 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2032 | |
| 2033 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2034 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2035 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2036 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2037 | SI.getSuccessorValue(i), |
| 2038 | SMBB)); |
| 2039 | } |
| 2040 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2041 | |
| 2042 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2043 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2044 | // Must recompute end() each iteration because it may be |
| 2045 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2046 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2047 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2048 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2049 | MachineBasicBlock* nextBB = J->BB; |
| 2050 | MachineBasicBlock* currentBB = I->BB; |
| 2051 | |
| 2052 | // If the two neighboring cases go to the same destination, merge them |
| 2053 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2054 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2055 | I->High = J->High; |
| 2056 | J = Cases.erase(J); |
| 2057 | } else { |
| 2058 | I = J++; |
| 2059 | } |
| 2060 | } |
| 2061 | |
| 2062 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2063 | if (I->Low != I->High) |
| 2064 | // A range counts double, since it requires two compares. |
| 2065 | ++numCmps; |
| 2066 | } |
| 2067 | |
| 2068 | return numCmps; |
| 2069 | } |
| 2070 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2071 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2072 | // Figure out which block is immediately after the current one. |
| 2073 | MachineBasicBlock *NextBlock = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2074 | |
| 2075 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2076 | |
| 2077 | // If there is only the default destination, branch to it if it is not the |
| 2078 | // next basic block. Otherwise, just fall through. |
| 2079 | if (SI.getNumOperands() == 2) { |
| 2080 | // Update machine-CFG edges. |
| 2081 | |
| 2082 | // If this is not a fall-through branch, emit the branch. |
| 2083 | CurMBB->addSuccessor(Default); |
| 2084 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2085 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2086 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2087 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2088 | return; |
| 2089 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2090 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2091 | // If there are any non-default case statements, create a vector of Cases |
| 2092 | // representing each one, and sort the vector so that we can efficiently |
| 2093 | // create a binary search tree from them. |
| 2094 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2095 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2096 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2097 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2098 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2099 | |
| 2100 | // Get the Value to be switched on and default basic blocks, which will be |
| 2101 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2102 | // search tree. |
| 2103 | Value *SV = SI.getOperand(0); |
| 2104 | |
| 2105 | // Push the initial CaseRec onto the worklist |
| 2106 | CaseRecVector WorkList; |
| 2107 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2108 | |
| 2109 | while (!WorkList.empty()) { |
| 2110 | // Grab a record representing a case range to process off the worklist |
| 2111 | CaseRec CR = WorkList.back(); |
| 2112 | WorkList.pop_back(); |
| 2113 | |
| 2114 | if (handleBitTestsSwitchCase(CR, WorkList, SV, Default)) |
| 2115 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2116 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2117 | // If the range has few cases (two or less) emit a series of specific |
| 2118 | // tests. |
| 2119 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2120 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2121 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2122 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2123 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2124 | // lowering the switch to a binary tree of conditional branches. |
| 2125 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2126 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2127 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2128 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2129 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2130 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2135 | void SelectionDAGLowering::visitFSub(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2136 | // -0.0 - X --> fneg |
| 2137 | const Type *Ty = I.getType(); |
| 2138 | if (isa<VectorType>(Ty)) { |
| 2139 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2140 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2141 | const Type *ElTy = DestTy->getElementType(); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2142 | unsigned VL = DestTy->getNumElements(); |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 2143 | std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy)); |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 2144 | Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size()); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2145 | if (CV == CNZ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2146 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2147 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2148 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2149 | return; |
| 2150 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2151 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2152 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2153 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 2154 | if (CFP->isExactlyValue(ConstantFP::getNegativeZero(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. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2178 | EVT PTy = TLI.getPointerTy(); |
| 2179 | EVT STy = TLI.getShiftAmountTy(); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2180 | if (STy.bitsGT(Op2.getValueType())) |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2181 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
| 2182 | TLI.getShiftAmountTy(), Op2); |
| 2183 | // If the operand is larger than the shift count type but the shift |
| 2184 | // count type has enough bits to represent any shift value, truncate |
| 2185 | // it now. This is a common case and it exposes the truncate to |
| 2186 | // optimization early. |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2187 | else if (STy.getSizeInBits() >= |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2188 | Log2_32_Ceil(Op2.getValueType().getSizeInBits())) |
| 2189 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2190 | TLI.getShiftAmountTy(), Op2); |
| 2191 | // Otherwise we'll need to temporarily settle for some other |
| 2192 | // convenient type; type legalization will make adjustments as |
| 2193 | // needed. |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2194 | else if (PTy.bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2195 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2196 | TLI.getPointerTy(), Op2); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2197 | else if (PTy.bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2198 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2199 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2200 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2201 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2202 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2203 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2204 | } |
| 2205 | |
| 2206 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2207 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2208 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2209 | predicate = IC->getPredicate(); |
| 2210 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2211 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2212 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2213 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2214 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2215 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2216 | EVT DestVT = TLI.getValueType(I.getType()); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2217 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2218 | } |
| 2219 | |
| 2220 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2221 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2222 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2223 | predicate = FC->getPredicate(); |
| 2224 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2225 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2226 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2227 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2228 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2229 | EVT DestVT = TLI.getValueType(I.getType()); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2230 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2231 | } |
| 2232 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2233 | void SelectionDAGLowering::visitSelect(User &I) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2234 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2235 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2236 | unsigned NumValues = ValueVTs.size(); |
| 2237 | if (NumValues != 0) { |
| 2238 | SmallVector<SDValue, 4> Values(NumValues); |
| 2239 | SDValue Cond = getValue(I.getOperand(0)); |
| 2240 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2241 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2242 | |
| 2243 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2244 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2245 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2246 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2247 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2248 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2249 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2250 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2251 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2252 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2253 | } |
| 2254 | |
| 2255 | |
| 2256 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2257 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2258 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2259 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2260 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2264 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2265 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2266 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2267 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2268 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2269 | } |
| 2270 | |
| 2271 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2272 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2273 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2274 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2275 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2276 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2277 | } |
| 2278 | |
| 2279 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2280 | // FPTrunc is never a no-op cast, no need to check |
| 2281 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2282 | EVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2283 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2284 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2285 | } |
| 2286 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2287 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2288 | // FPTrunc is never a no-op cast, no need to check |
| 2289 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2290 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2291 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2292 | } |
| 2293 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2294 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2295 | // FPToUI is never a no-op cast, no need to check |
| 2296 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2297 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2298 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2299 | } |
| 2300 | |
| 2301 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2302 | // FPToSI is never a no-op cast, no need to check |
| 2303 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2304 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2305 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2306 | } |
| 2307 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2308 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2309 | // UIToFP is never a no-op cast, no need to check |
| 2310 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2311 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2312 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2313 | } |
| 2314 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2315 | void SelectionDAGLowering::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2316 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2317 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2318 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2319 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2320 | } |
| 2321 | |
| 2322 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2323 | // What to do depends on the size of the integer and the size of the pointer. |
| 2324 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2325 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2326 | EVT SrcVT = N.getValueType(); |
| 2327 | EVT DestVT = TLI.getValueType(I.getType()); |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 2328 | SDValue Result = DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2329 | setValue(&I, Result); |
| 2330 | } |
| 2331 | |
| 2332 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2333 | // What to do depends on the size of the integer and the size of the pointer. |
| 2334 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2335 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2336 | EVT SrcVT = N.getValueType(); |
| 2337 | EVT DestVT = TLI.getValueType(I.getType()); |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 2338 | setValue(&I, DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2339 | } |
| 2340 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2341 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2342 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2343 | EVT DestVT = TLI.getValueType(I.getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2344 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2345 | // 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] | 2346 | // is either a BIT_CONVERT or a no-op. |
| 2347 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2348 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2349 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2350 | else |
| 2351 | setValue(&I, N); // noop cast. |
| 2352 | } |
| 2353 | |
| 2354 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2355 | SDValue InVec = getValue(I.getOperand(0)); |
| 2356 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2357 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2358 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2359 | getValue(I.getOperand(2))); |
| 2360 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2361 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2362 | TLI.getValueType(I.getType()), |
| 2363 | InVec, InVal, InIdx)); |
| 2364 | } |
| 2365 | |
| 2366 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2367 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2368 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2369 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2370 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2371 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2372 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2373 | } |
| 2374 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2375 | |
| 2376 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2377 | // from SIndx and increasing to the element length (undefs are allowed). |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2378 | static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) { |
| 2379 | unsigned MaskNumElts = Mask.size(); |
| 2380 | for (unsigned i = 0; i != MaskNumElts; ++i) |
| 2381 | if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx))) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2382 | return false; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2383 | return true; |
| 2384 | } |
| 2385 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2386 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2387 | SmallVector<int, 8> Mask; |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2388 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2389 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2390 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2391 | // Convert the ConstantVector mask operand into an array of ints, with -1 |
| 2392 | // representing undef values. |
| 2393 | SmallVector<Constant*, 8> MaskElts; |
Owen Anderson | 001dbfe | 2009-07-16 18:04:31 +0000 | [diff] [blame] | 2394 | cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(), |
| 2395 | MaskElts); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2396 | unsigned MaskNumElts = MaskElts.size(); |
| 2397 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2398 | if (isa<UndefValue>(MaskElts[i])) |
| 2399 | Mask.push_back(-1); |
| 2400 | else |
| 2401 | Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue()); |
| 2402 | } |
| 2403 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2404 | EVT VT = TLI.getValueType(I.getType()); |
| 2405 | EVT SrcVT = Src1.getValueType(); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2406 | unsigned SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2407 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2408 | if (SrcNumElts == MaskNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2409 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2410 | &Mask[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2411 | return; |
| 2412 | } |
| 2413 | |
| 2414 | // 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] | 2415 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2416 | // Mask is longer than the source vectors and is a multiple of the source |
| 2417 | // 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] | 2418 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2419 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2420 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2421 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2422 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2423 | return; |
| 2424 | } |
| 2425 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2426 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2427 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2428 | bool Src1U = Src1.getOpcode() == ISD::UNDEF; |
| 2429 | bool Src2U = Src2.getOpcode() == ISD::UNDEF; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2430 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2431 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2432 | SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); |
| 2433 | SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2434 | MOps1[0] = Src1; |
| 2435 | MOps2[0] = Src2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2436 | |
| 2437 | Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2438 | getCurDebugLoc(), VT, |
| 2439 | &MOps1[0], NumConcat); |
| 2440 | Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2441 | getCurDebugLoc(), VT, |
| 2442 | &MOps2[0], NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2443 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2444 | // Readjust mask for new input vector length. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2445 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2446 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2447 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2448 | if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2449 | MappedOps.push_back(Idx); |
| 2450 | else |
| 2451 | MappedOps.push_back(Idx + MaskNumElts - SrcNumElts); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2452 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2453 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2454 | &MappedOps[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2455 | return; |
| 2456 | } |
| 2457 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2458 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2459 | // Analyze the access pattern of the vector to see if we can extract |
| 2460 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2461 | // the range of elements the mask access on both vectors. |
| 2462 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2463 | int MaxRange[2] = {-1, -1}; |
| 2464 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2465 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2466 | int Idx = Mask[i]; |
| 2467 | int Input = 0; |
| 2468 | if (Idx < 0) |
| 2469 | continue; |
| 2470 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2471 | if (Idx >= (int)SrcNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2472 | Input = 1; |
| 2473 | Idx -= SrcNumElts; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2474 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2475 | if (Idx > MaxRange[Input]) |
| 2476 | MaxRange[Input] = Idx; |
| 2477 | if (Idx < MinRange[Input]) |
| 2478 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2479 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2480 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2481 | // Check if the access is smaller than the vector size and can we find |
| 2482 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2483 | 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] | 2484 | int StartIdx[2]; // StartIdx to extract from |
| 2485 | for (int Input=0; Input < 2; ++Input) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2486 | if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2487 | RangeUse[Input] = 0; // Unused |
| 2488 | StartIdx[Input] = 0; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2489 | } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2490 | // 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] | 2491 | // start index that is a multiple of the mask length. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2492 | if (MaxRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2493 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2494 | StartIdx[Input] = 0; |
| 2495 | } else { |
| 2496 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2497 | if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2498 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2499 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2500 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2501 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2502 | } |
| 2503 | |
Bill Wendling | 636e258 | 2009-08-21 18:16:06 +0000 | [diff] [blame] | 2504 | if (RangeUse[0] == 0 && RangeUse[1] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2505 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2506 | return; |
| 2507 | } |
| 2508 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2509 | // Extract appropriate subvector and generate a vector shuffle |
| 2510 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2511 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2512 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2513 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2514 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2515 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2516 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2517 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2518 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2519 | // Calculate new mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2520 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2521 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2522 | int Idx = Mask[i]; |
| 2523 | if (Idx < 0) |
| 2524 | MappedOps.push_back(Idx); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2525 | else if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2526 | MappedOps.push_back(Idx - StartIdx[0]); |
| 2527 | else |
| 2528 | MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2529 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2530 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2531 | &MappedOps[0])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2532 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2533 | } |
| 2534 | } |
| 2535 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2536 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2537 | // replacing the shuffle with extract and build vector. |
| 2538 | // to insert and build vector. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2539 | EVT EltVT = VT.getVectorElementType(); |
| 2540 | EVT PtrVT = TLI.getPointerTy(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2541 | SmallVector<SDValue,8> Ops; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2542 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2543 | if (Mask[i] < 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2544 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2545 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2546 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2547 | if (Idx < (int)SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2548 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2549 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2550 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2551 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2552 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2553 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2554 | } |
| 2555 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2556 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2557 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2558 | } |
| 2559 | |
| 2560 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2561 | const Value *Op0 = I.getOperand(0); |
| 2562 | const Value *Op1 = I.getOperand(1); |
| 2563 | const Type *AggTy = I.getType(); |
| 2564 | const Type *ValTy = Op1->getType(); |
| 2565 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2566 | bool FromUndef = isa<UndefValue>(Op1); |
| 2567 | |
| 2568 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2569 | I.idx_begin(), I.idx_end()); |
| 2570 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2571 | SmallVector<EVT, 4> AggValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2572 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2573 | SmallVector<EVT, 4> ValValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2574 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2575 | |
| 2576 | unsigned NumAggValues = AggValueVTs.size(); |
| 2577 | unsigned NumValValues = ValValueVTs.size(); |
| 2578 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2579 | |
| 2580 | SDValue Agg = getValue(Op0); |
| 2581 | SDValue Val = getValue(Op1); |
| 2582 | unsigned i = 0; |
| 2583 | // Copy the beginning value(s) from the original aggregate. |
| 2584 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2585 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2586 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2587 | // Copy values from the inserted value(s). |
| 2588 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2589 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2590 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2591 | // Copy remaining value(s) from the original aggregate. |
| 2592 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2593 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2594 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2595 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2596 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2597 | DAG.getVTList(&AggValueVTs[0], NumAggValues), |
| 2598 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2599 | } |
| 2600 | |
| 2601 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2602 | const Value *Op0 = I.getOperand(0); |
| 2603 | const Type *AggTy = Op0->getType(); |
| 2604 | const Type *ValTy = I.getType(); |
| 2605 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2606 | |
| 2607 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2608 | I.idx_begin(), I.idx_end()); |
| 2609 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2610 | SmallVector<EVT, 4> ValValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2611 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2612 | |
| 2613 | unsigned NumValValues = ValValueVTs.size(); |
| 2614 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2615 | |
| 2616 | SDValue Agg = getValue(Op0); |
| 2617 | // Copy out the selected value(s). |
| 2618 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2619 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2620 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2621 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2622 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2623 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2624 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2625 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2626 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2627 | } |
| 2628 | |
| 2629 | |
| 2630 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2631 | SDValue N = getValue(I.getOperand(0)); |
| 2632 | const Type *Ty = I.getOperand(0)->getType(); |
| 2633 | |
| 2634 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2635 | OI != E; ++OI) { |
| 2636 | Value *Idx = *OI; |
| 2637 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2638 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2639 | if (Field) { |
| 2640 | // N = N + Offset |
| 2641 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2642 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2643 | DAG.getIntPtrConstant(Offset)); |
| 2644 | } |
| 2645 | Ty = StTy->getElementType(Field); |
| 2646 | } else { |
| 2647 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2648 | |
| 2649 | // If this is a constant subscript, handle it quickly. |
| 2650 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2651 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2652 | uint64_t Offs = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2653 | TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2654 | SDValue OffsVal; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2655 | EVT PTy = TLI.getPointerTy(); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2656 | unsigned PtrBits = PTy.getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2657 | if (PtrBits < 64) { |
| 2658 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2659 | TLI.getPointerTy(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2660 | DAG.getConstant(Offs, MVT::i64)); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2661 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2662 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2663 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2664 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2665 | continue; |
| 2666 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2667 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2668 | // N = N + Idx * ElementSize; |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2669 | uint64_t ElementSize = TD->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2670 | SDValue IdxN = getValue(Idx); |
| 2671 | |
| 2672 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2673 | // it. |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 2674 | IdxN = DAG.getSExtOrTrunc(IdxN, getCurDebugLoc(), N.getValueType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2675 | |
| 2676 | // If this is a multiply by a power of two, turn it into a shl |
| 2677 | // immediately. This is a very common case. |
| 2678 | if (ElementSize != 1) { |
| 2679 | if (isPowerOf2_64(ElementSize)) { |
| 2680 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2681 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2682 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2683 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2684 | } else { |
| 2685 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2686 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2687 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2688 | } |
| 2689 | } |
| 2690 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2691 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2692 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2693 | } |
| 2694 | } |
| 2695 | setValue(&I, N); |
| 2696 | } |
| 2697 | |
| 2698 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2699 | // If this is a fixed sized alloca in the entry block of the function, |
| 2700 | // allocate it statically on the stack. |
| 2701 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2702 | return; // getValue will auto-populate this. |
| 2703 | |
| 2704 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2705 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2706 | unsigned Align = |
| 2707 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2708 | I.getAlignment()); |
| 2709 | |
| 2710 | SDValue AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 2711 | |
| 2712 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(), |
| 2713 | AllocSize, |
| 2714 | DAG.getConstant(TySize, AllocSize.getValueType())); |
| 2715 | |
| 2716 | |
| 2717 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2718 | EVT IntPtr = TLI.getPointerTy(); |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 2719 | AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2720 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2721 | // Handle alignment. If the requested alignment is less than or equal to |
| 2722 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2723 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2724 | unsigned StackAlign = |
| 2725 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2726 | if (Align <= StackAlign) |
| 2727 | Align = 0; |
| 2728 | |
| 2729 | // Round the size of the allocation up to the stack alignment size |
| 2730 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2731 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2732 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2733 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2734 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2735 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2736 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2737 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2738 | |
| 2739 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2740 | SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2741 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2742 | VTs, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2743 | setValue(&I, DSA); |
| 2744 | DAG.setRoot(DSA.getValue(1)); |
| 2745 | |
| 2746 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2747 | // object. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 2748 | FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2749 | } |
| 2750 | |
| 2751 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2752 | const Value *SV = I.getOperand(0); |
| 2753 | SDValue Ptr = getValue(SV); |
| 2754 | |
| 2755 | const Type *Ty = I.getType(); |
| 2756 | bool isVolatile = I.isVolatile(); |
| 2757 | unsigned Alignment = I.getAlignment(); |
| 2758 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2759 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2760 | SmallVector<uint64_t, 4> Offsets; |
| 2761 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2762 | unsigned NumValues = ValueVTs.size(); |
| 2763 | if (NumValues == 0) |
| 2764 | return; |
| 2765 | |
| 2766 | SDValue Root; |
| 2767 | bool ConstantMemory = false; |
| 2768 | if (I.isVolatile()) |
| 2769 | // Serialize volatile loads with other side effects. |
| 2770 | Root = getRoot(); |
| 2771 | else if (AA->pointsToConstantMemory(SV)) { |
| 2772 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2773 | Root = DAG.getEntryNode(); |
| 2774 | ConstantMemory = true; |
| 2775 | } else { |
| 2776 | // Do not serialize non-volatile loads against each other. |
| 2777 | Root = DAG.getRoot(); |
| 2778 | } |
| 2779 | |
| 2780 | SmallVector<SDValue, 4> Values(NumValues); |
| 2781 | SmallVector<SDValue, 4> Chains(NumValues); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2782 | EVT PtrVT = Ptr.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2783 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2784 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Nate Begeman | e679837 | 2009-09-15 00:13:12 +0000 | [diff] [blame] | 2785 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
| 2786 | PtrVT, Ptr, |
| 2787 | DAG.getConstant(Offsets[i], PtrVT)), |
Nate Begeman | 101b25c | 2009-09-15 19:05:41 +0000 | [diff] [blame] | 2788 | SV, Offsets[i], isVolatile, Alignment); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2789 | Values[i] = L; |
| 2790 | Chains[i] = L.getValue(1); |
| 2791 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2792 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2793 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2794 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2795 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2796 | &Chains[0], NumValues); |
| 2797 | if (isVolatile) |
| 2798 | DAG.setRoot(Chain); |
| 2799 | else |
| 2800 | PendingLoads.push_back(Chain); |
| 2801 | } |
| 2802 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2803 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2804 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2805 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2806 | } |
| 2807 | |
| 2808 | |
| 2809 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2810 | Value *SrcV = I.getOperand(0); |
| 2811 | Value *PtrV = I.getOperand(1); |
| 2812 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2813 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2814 | SmallVector<uint64_t, 4> Offsets; |
| 2815 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2816 | unsigned NumValues = ValueVTs.size(); |
| 2817 | if (NumValues == 0) |
| 2818 | return; |
| 2819 | |
| 2820 | // Get the lowered operands. Note that we do this after |
| 2821 | // checking if NumResults is zero, because with zero results |
| 2822 | // the operands won't have values in the map. |
| 2823 | SDValue Src = getValue(SrcV); |
| 2824 | SDValue Ptr = getValue(PtrV); |
| 2825 | |
| 2826 | SDValue Root = getRoot(); |
| 2827 | SmallVector<SDValue, 4> Chains(NumValues); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2828 | EVT PtrVT = Ptr.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2829 | bool isVolatile = I.isVolatile(); |
| 2830 | unsigned Alignment = I.getAlignment(); |
| 2831 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2832 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2833 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2834 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2835 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2836 | DAG.getConstant(Offsets[i], PtrVT)), |
Nate Begeman | 101b25c | 2009-09-15 19:05:41 +0000 | [diff] [blame] | 2837 | PtrV, Offsets[i], isVolatile, Alignment); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2838 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2839 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2840 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2841 | } |
| 2842 | |
| 2843 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2844 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2845 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2846 | unsigned Intrinsic) { |
| 2847 | bool HasChain = !I.doesNotAccessMemory(); |
| 2848 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2849 | |
| 2850 | // Build the operand list. |
| 2851 | SmallVector<SDValue, 8> Ops; |
| 2852 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2853 | if (OnlyLoad) { |
| 2854 | // We don't need to serialize loads against other loads. |
| 2855 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2856 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2857 | Ops.push_back(getRoot()); |
| 2858 | } |
| 2859 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2860 | |
| 2861 | // Info is set by getTgtMemInstrinsic |
| 2862 | TargetLowering::IntrinsicInfo Info; |
| 2863 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2864 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2865 | // 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] | 2866 | if (!IsTgtIntrinsic) |
| 2867 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2868 | |
| 2869 | // Add all operands of the call to the operand list. |
| 2870 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2871 | SDValue Op = getValue(I.getOperand(i)); |
| 2872 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2873 | "Intrinsic uses a non-legal type?"); |
| 2874 | Ops.push_back(Op); |
| 2875 | } |
| 2876 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2877 | SmallVector<EVT, 4> ValueVTs; |
Bob Wilson | 8d91955 | 2009-07-31 22:41:21 +0000 | [diff] [blame] | 2878 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2879 | #ifndef NDEBUG |
| 2880 | for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) { |
| 2881 | assert(TLI.isTypeLegal(ValueVTs[Val]) && |
| 2882 | "Intrinsic uses a non-legal type?"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2883 | } |
Bob Wilson | 8d91955 | 2009-07-31 22:41:21 +0000 | [diff] [blame] | 2884 | #endif // NDEBUG |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2885 | if (HasChain) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2886 | ValueVTs.push_back(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2887 | |
Bob Wilson | 8d91955 | 2009-07-31 22:41:21 +0000 | [diff] [blame] | 2888 | SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2889 | |
| 2890 | // Create the node. |
| 2891 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2892 | if (IsTgtIntrinsic) { |
| 2893 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2894 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2895 | VTs, &Ops[0], Ops.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2896 | Info.memVT, Info.ptrVal, Info.offset, |
| 2897 | Info.align, Info.vol, |
| 2898 | Info.readMem, Info.writeMem); |
| 2899 | } |
| 2900 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2901 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2902 | VTs, &Ops[0], Ops.size()); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2903 | else if (I.getType() != Type::getVoidTy(*DAG.getContext())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2904 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2905 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2906 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2907 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2908 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2909 | |
| 2910 | if (HasChain) { |
| 2911 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 2912 | if (OnlyLoad) |
| 2913 | PendingLoads.push_back(Chain); |
| 2914 | else |
| 2915 | DAG.setRoot(Chain); |
| 2916 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2917 | if (I.getType() != Type::getVoidTy(*DAG.getContext())) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2918 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2919 | EVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2920 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2921 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2922 | setValue(&I, Result); |
| 2923 | } |
| 2924 | } |
| 2925 | |
| 2926 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 2927 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 2928 | V = V->stripPointerCasts(); |
| 2929 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 2930 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 2931 | "TypeInfo must be a global variable or NULL"); |
| 2932 | return GV; |
| 2933 | } |
| 2934 | |
| 2935 | namespace llvm { |
| 2936 | |
| 2937 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 2938 | /// call, and add them to the specified machine basic block. |
| 2939 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 2940 | MachineBasicBlock *MBB) { |
| 2941 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 2942 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 2943 | assert(CE->getOpcode() == Instruction::BitCast && |
| 2944 | isa<Function>(CE->getOperand(0)) && |
| 2945 | "Personality should be a function"); |
| 2946 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 2947 | |
| 2948 | // Gather all the type infos for this landing pad and pass them along to |
| 2949 | // MachineModuleInfo. |
| 2950 | std::vector<GlobalVariable *> TyInfo; |
| 2951 | unsigned N = I.getNumOperands(); |
| 2952 | |
| 2953 | for (unsigned i = N - 1; i > 2; --i) { |
| 2954 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 2955 | unsigned FilterLength = CI->getZExtValue(); |
| 2956 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 2957 | assert (FirstCatch <= N && "Invalid filter length"); |
| 2958 | |
| 2959 | if (FirstCatch < N) { |
| 2960 | TyInfo.reserve(N - FirstCatch); |
| 2961 | for (unsigned j = FirstCatch; j < N; ++j) |
| 2962 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2963 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 2964 | TyInfo.clear(); |
| 2965 | } |
| 2966 | |
| 2967 | if (!FilterLength) { |
| 2968 | // Cleanup. |
| 2969 | MMI->addCleanup(MBB); |
| 2970 | } else { |
| 2971 | // Filter. |
| 2972 | TyInfo.reserve(FilterLength - 1); |
| 2973 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 2974 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2975 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 2976 | TyInfo.clear(); |
| 2977 | } |
| 2978 | |
| 2979 | N = i; |
| 2980 | } |
| 2981 | } |
| 2982 | |
| 2983 | if (N > 3) { |
| 2984 | TyInfo.reserve(N - 3); |
| 2985 | for (unsigned j = 3; j < N; ++j) |
| 2986 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2987 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 2988 | } |
| 2989 | } |
| 2990 | |
| 2991 | } |
| 2992 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 2993 | /// GetSignificand - Get the significand and build it into a floating-point |
| 2994 | /// number with exponent of 1: |
| 2995 | /// |
| 2996 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 2997 | /// |
| 2998 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 2999 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3000 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3001 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
| 3002 | DAG.getConstant(0x007fffff, MVT::i32)); |
| 3003 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
| 3004 | DAG.getConstant(0x3f800000, MVT::i32)); |
| 3005 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3006 | } |
| 3007 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3008 | /// GetExponent - Get the exponent: |
| 3009 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3010 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3011 | /// |
| 3012 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3013 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3014 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3015 | DebugLoc dl) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3016 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
| 3017 | DAG.getConstant(0x7f800000, MVT::i32)); |
| 3018 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3019 | DAG.getConstant(23, TLI.getPointerTy())); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3020 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
| 3021 | DAG.getConstant(127, MVT::i32)); |
| 3022 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3023 | } |
| 3024 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3025 | /// getF32Constant - Get 32-bit floating point constant. |
| 3026 | static SDValue |
| 3027 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3028 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3029 | } |
| 3030 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3031 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3032 | /// visitIntrinsicCall: I is a call instruction |
| 3033 | /// Op is the associated NodeType for I |
| 3034 | const char * |
| 3035 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3036 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3037 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3038 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3039 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3040 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3041 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3042 | getValue(I.getOperand(2)), |
| 3043 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3044 | setValue(&I, L); |
| 3045 | DAG.setRoot(L.getValue(1)); |
| 3046 | return 0; |
| 3047 | } |
| 3048 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3049 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3050 | const char * |
| 3051 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3052 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3053 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3054 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3055 | SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3056 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3057 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3058 | setValue(&I, Result); |
| 3059 | return 0; |
| 3060 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3061 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3062 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3063 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3064 | void |
| 3065 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3066 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3067 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3068 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3069 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3070 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3071 | SDValue Op = getValue(I.getOperand(1)); |
| 3072 | |
| 3073 | // Put the exponent in the right bit position for later addition to the |
| 3074 | // final result: |
| 3075 | // |
| 3076 | // #define LOG2OFe 1.4426950f |
| 3077 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3078 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3079 | getF32Constant(DAG, 0x3fb8aa3b)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3080 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3081 | |
| 3082 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3083 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3084 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3085 | |
| 3086 | // IntegerPartOfX <<= 23; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3087 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3088 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3089 | |
| 3090 | if (LimitFloatPrecision <= 6) { |
| 3091 | // For floating-point precision of 6: |
| 3092 | // |
| 3093 | // TwoToFractionalPartOfX = |
| 3094 | // 0.997535578f + |
| 3095 | // (0.735607626f + 0.252464424f * x) * x; |
| 3096 | // |
| 3097 | // error 0.0144103317, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3098 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3099 | getF32Constant(DAG, 0x3e814304)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3100 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3101 | getF32Constant(DAG, 0x3f3c50c8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3102 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3103 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3104 | getF32Constant(DAG, 0x3f7f5e7e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3105 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3106 | |
| 3107 | // Add the exponent into the result in integer domain. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3108 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3109 | TwoToFracPartOfX, IntegerPartOfX); |
| 3110 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3111 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3112 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3113 | // For floating-point precision of 12: |
| 3114 | // |
| 3115 | // TwoToFractionalPartOfX = |
| 3116 | // 0.999892986f + |
| 3117 | // (0.696457318f + |
| 3118 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3119 | // |
| 3120 | // 0.000107046256 error, which is 13 to 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3121 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3122 | getF32Constant(DAG, 0x3da235e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3123 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3124 | getF32Constant(DAG, 0x3e65b8f3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3125 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3126 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3127 | getF32Constant(DAG, 0x3f324b07)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3128 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3129 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3130 | getF32Constant(DAG, 0x3f7ff8fd)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3131 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3132 | |
| 3133 | // Add the exponent into the result in integer domain. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3134 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3135 | TwoToFracPartOfX, IntegerPartOfX); |
| 3136 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3137 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3138 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3139 | // For floating-point precision of 18: |
| 3140 | // |
| 3141 | // TwoToFractionalPartOfX = |
| 3142 | // 0.999999982f + |
| 3143 | // (0.693148872f + |
| 3144 | // (0.240227044f + |
| 3145 | // (0.554906021e-1f + |
| 3146 | // (0.961591928e-2f + |
| 3147 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3148 | // |
| 3149 | // error 2.47208000*10^(-7), which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3150 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3151 | getF32Constant(DAG, 0x3924b03e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3152 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3153 | getF32Constant(DAG, 0x3ab24b87)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3154 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3155 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3156 | getF32Constant(DAG, 0x3c1d8c17)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3157 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3158 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3159 | getF32Constant(DAG, 0x3d634a1d)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3160 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3161 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3162 | getF32Constant(DAG, 0x3e75fe14)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3163 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3164 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3165 | getF32Constant(DAG, 0x3f317234)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3166 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3167 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3168 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3169 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3170 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3171 | |
| 3172 | // Add the exponent into the result in integer domain. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3173 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3174 | TwoToFracPartOfX, IntegerPartOfX); |
| 3175 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3176 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3177 | } |
| 3178 | } else { |
| 3179 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3180 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3181 | getValue(I.getOperand(1)).getValueType(), |
| 3182 | getValue(I.getOperand(1))); |
| 3183 | } |
| 3184 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3185 | setValue(&I, result); |
| 3186 | } |
| 3187 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3188 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3189 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3190 | void |
| 3191 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3192 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3193 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3194 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3195 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3196 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3197 | SDValue Op = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3198 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3199 | |
| 3200 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3201 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3202 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3203 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3204 | |
| 3205 | // Get the significand and build it into a floating-point number with |
| 3206 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3207 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3208 | |
| 3209 | if (LimitFloatPrecision <= 6) { |
| 3210 | // For floating-point precision of 6: |
| 3211 | // |
| 3212 | // LogofMantissa = |
| 3213 | // -1.1609546f + |
| 3214 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3215 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3216 | // error 0.0034276066, which is better than 8 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3217 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3218 | getF32Constant(DAG, 0xbe74c456)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3219 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3220 | getF32Constant(DAG, 0x3fb3a2b1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3221 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3222 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3223 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3224 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3225 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3226 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3227 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3228 | // For floating-point precision of 12: |
| 3229 | // |
| 3230 | // LogOfMantissa = |
| 3231 | // -1.7417939f + |
| 3232 | // (2.8212026f + |
| 3233 | // (-1.4699568f + |
| 3234 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3235 | // |
| 3236 | // error 0.000061011436, which is 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3237 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3238 | getF32Constant(DAG, 0xbd67b6d6)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3239 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3240 | getF32Constant(DAG, 0x3ee4f4b8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3241 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3242 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3243 | getF32Constant(DAG, 0x3fbc278b)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3244 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3245 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3246 | getF32Constant(DAG, 0x40348e95)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3247 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3248 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3249 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3250 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3251 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3252 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3253 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3254 | // For floating-point precision of 18: |
| 3255 | // |
| 3256 | // LogOfMantissa = |
| 3257 | // -2.1072184f + |
| 3258 | // (4.2372794f + |
| 3259 | // (-3.7029485f + |
| 3260 | // (2.2781945f + |
| 3261 | // (-0.87823314f + |
| 3262 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3263 | // |
| 3264 | // error 0.0000023660568, which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3265 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3266 | getF32Constant(DAG, 0xbc91e5ac)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3267 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3268 | getF32Constant(DAG, 0x3e4350aa)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3269 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3270 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3271 | getF32Constant(DAG, 0x3f60d3e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3272 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3273 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3274 | getF32Constant(DAG, 0x4011cdf0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3275 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3276 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3277 | getF32Constant(DAG, 0x406cfd1c)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3278 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3279 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3280 | getF32Constant(DAG, 0x408797cb)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3281 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3282 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3283 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3284 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3285 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3286 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3287 | } |
| 3288 | } else { |
| 3289 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3290 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3291 | getValue(I.getOperand(1)).getValueType(), |
| 3292 | getValue(I.getOperand(1))); |
| 3293 | } |
| 3294 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3295 | setValue(&I, result); |
| 3296 | } |
| 3297 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3298 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3299 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3300 | void |
| 3301 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3302 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3303 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3304 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3305 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3306 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3307 | SDValue Op = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3308 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3309 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3310 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3311 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3312 | |
| 3313 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3314 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3315 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3316 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3317 | // Different possible minimax approximations of significand in |
| 3318 | // floating-point for various degrees of accuracy over [1,2]. |
| 3319 | if (LimitFloatPrecision <= 6) { |
| 3320 | // For floating-point precision of 6: |
| 3321 | // |
| 3322 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3323 | // |
| 3324 | // error 0.0049451742, which is more than 7 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3325 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3326 | getF32Constant(DAG, 0xbeb08fe0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3327 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3328 | getF32Constant(DAG, 0x40019463)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3329 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3330 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3331 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3332 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3333 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3334 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3335 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3336 | // For floating-point precision of 12: |
| 3337 | // |
| 3338 | // Log2ofMantissa = |
| 3339 | // -2.51285454f + |
| 3340 | // (4.07009056f + |
| 3341 | // (-2.12067489f + |
| 3342 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3343 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3344 | // error 0.0000876136000, which is better than 13 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3345 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3346 | getF32Constant(DAG, 0xbda7262e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3347 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3348 | getF32Constant(DAG, 0x3f25280b)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3349 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3350 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3351 | getF32Constant(DAG, 0x4007b923)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3352 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3353 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3354 | getF32Constant(DAG, 0x40823e2f)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3355 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3356 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3357 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3358 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3359 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3360 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3361 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3362 | // For floating-point precision of 18: |
| 3363 | // |
| 3364 | // Log2ofMantissa = |
| 3365 | // -3.0400495f + |
| 3366 | // (6.1129976f + |
| 3367 | // (-5.3420409f + |
| 3368 | // (3.2865683f + |
| 3369 | // (-1.2669343f + |
| 3370 | // (0.27515199f - |
| 3371 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3372 | // |
| 3373 | // error 0.0000018516, which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3374 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3375 | getF32Constant(DAG, 0xbcd2769e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3376 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3377 | getF32Constant(DAG, 0x3e8ce0b9)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3378 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3379 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3380 | getF32Constant(DAG, 0x3fa22ae7)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3381 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3382 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3383 | getF32Constant(DAG, 0x40525723)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3384 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3385 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3386 | getF32Constant(DAG, 0x40aaf200)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3387 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3388 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3389 | getF32Constant(DAG, 0x40c39dad)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3390 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3391 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3392 | getF32Constant(DAG, 0x4042902c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3393 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3394 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3395 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3396 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3397 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3398 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3399 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3400 | getValue(I.getOperand(1)).getValueType(), |
| 3401 | getValue(I.getOperand(1))); |
| 3402 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3403 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3404 | setValue(&I, result); |
| 3405 | } |
| 3406 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3407 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3408 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3409 | void |
| 3410 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3411 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3412 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3413 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3414 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3415 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3416 | SDValue Op = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3417 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3418 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3419 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3420 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3421 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3422 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3423 | |
| 3424 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3425 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3426 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3427 | |
| 3428 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3429 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3430 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3431 | // Log10ofMantissa = |
| 3432 | // -0.50419619f + |
| 3433 | // (0.60948995f - 0.10380950f * x) * x; |
| 3434 | // |
| 3435 | // error 0.0014886165, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3436 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3437 | getF32Constant(DAG, 0xbdd49a13)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3438 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3439 | getF32Constant(DAG, 0x3f1c0789)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3440 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3441 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3442 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3443 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3444 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3445 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3446 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3447 | // For floating-point precision of 12: |
| 3448 | // |
| 3449 | // Log10ofMantissa = |
| 3450 | // -0.64831180f + |
| 3451 | // (0.91751397f + |
| 3452 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3453 | // |
| 3454 | // error 0.00019228036, which is better than 12 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3455 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3456 | getF32Constant(DAG, 0x3d431f31)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3457 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3458 | getF32Constant(DAG, 0x3ea21fb2)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3459 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3460 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3461 | getF32Constant(DAG, 0x3f6ae232)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3462 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3463 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3464 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3465 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3466 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3467 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3468 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3469 | // For floating-point precision of 18: |
| 3470 | // |
| 3471 | // Log10ofMantissa = |
| 3472 | // -0.84299375f + |
| 3473 | // (1.5327582f + |
| 3474 | // (-1.0688956f + |
| 3475 | // (0.49102474f + |
| 3476 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3477 | // |
| 3478 | // error 0.0000037995730, which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47: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, 0x3c5d51ce)); |
Owen Anderson | 825b72b | 2009-08-11 20:47: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, 0x3e00685a)); |
Owen Anderson | 825b72b | 2009-08-11 20:47: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, 0x3efb6798)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3486 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3487 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3488 | getF32Constant(DAG, 0x3f88d192)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3489 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3490 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3491 | getF32Constant(DAG, 0x3fc4316c)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3492 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3493 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3494 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3495 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3496 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3497 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3498 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3499 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3500 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3501 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3502 | getValue(I.getOperand(1)).getValueType(), |
| 3503 | getValue(I.getOperand(1))); |
| 3504 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3505 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3506 | setValue(&I, result); |
| 3507 | } |
| 3508 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3509 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3510 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3511 | void |
| 3512 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3513 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3514 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3515 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3516 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3517 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3518 | SDValue Op = getValue(I.getOperand(1)); |
| 3519 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3520 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3521 | |
| 3522 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3523 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3524 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3525 | |
| 3526 | // IntegerPartOfX <<= 23; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3527 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3528 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3529 | |
| 3530 | if (LimitFloatPrecision <= 6) { |
| 3531 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3532 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3533 | // TwoToFractionalPartOfX = |
| 3534 | // 0.997535578f + |
| 3535 | // (0.735607626f + 0.252464424f * x) * x; |
| 3536 | // |
| 3537 | // error 0.0144103317, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3538 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3539 | getF32Constant(DAG, 0x3e814304)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3540 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3541 | getF32Constant(DAG, 0x3f3c50c8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3542 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3543 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3544 | getF32Constant(DAG, 0x3f7f5e7e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3545 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3546 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3547 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3548 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3549 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3550 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3551 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3552 | // For floating-point precision of 12: |
| 3553 | // |
| 3554 | // TwoToFractionalPartOfX = |
| 3555 | // 0.999892986f + |
| 3556 | // (0.696457318f + |
| 3557 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3558 | // |
| 3559 | // error 0.000107046256, which is 13 to 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3560 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3561 | getF32Constant(DAG, 0x3da235e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3562 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3563 | getF32Constant(DAG, 0x3e65b8f3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3564 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3565 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3566 | getF32Constant(DAG, 0x3f324b07)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3567 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3568 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3569 | getF32Constant(DAG, 0x3f7ff8fd)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3570 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3571 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3572 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3573 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3574 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3575 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3576 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3577 | // For floating-point precision of 18: |
| 3578 | // |
| 3579 | // TwoToFractionalPartOfX = |
| 3580 | // 0.999999982f + |
| 3581 | // (0.693148872f + |
| 3582 | // (0.240227044f + |
| 3583 | // (0.554906021e-1f + |
| 3584 | // (0.961591928e-2f + |
| 3585 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3586 | // error 2.47208000*10^(-7), which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3587 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3588 | getF32Constant(DAG, 0x3924b03e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3589 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3590 | getF32Constant(DAG, 0x3ab24b87)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3591 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3592 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3593 | getF32Constant(DAG, 0x3c1d8c17)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3594 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3595 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3596 | getF32Constant(DAG, 0x3d634a1d)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3597 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3598 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3599 | getF32Constant(DAG, 0x3e75fe14)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3600 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3601 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3602 | getF32Constant(DAG, 0x3f317234)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3603 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3604 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3605 | getF32Constant(DAG, 0x3f800000)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3606 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3607 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3608 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3609 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3610 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3611 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3612 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3613 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3614 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3615 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3616 | getValue(I.getOperand(1)).getValueType(), |
| 3617 | getValue(I.getOperand(1))); |
| 3618 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3619 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3620 | setValue(&I, result); |
| 3621 | } |
| 3622 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3623 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3624 | /// limited-precision mode with x == 10.0f. |
| 3625 | void |
| 3626 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3627 | SDValue result; |
| 3628 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3629 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3630 | bool IsExp10 = false; |
| 3631 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3632 | if (getValue(Val).getValueType() == MVT::f32 && |
| 3633 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3634 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3635 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3636 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3637 | APFloat Ten(10.0f); |
| 3638 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3639 | } |
| 3640 | } |
| 3641 | } |
| 3642 | |
| 3643 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3644 | SDValue Op = getValue(I.getOperand(2)); |
| 3645 | |
| 3646 | // Put the exponent in the right bit position for later addition to the |
| 3647 | // final result: |
| 3648 | // |
| 3649 | // #define LOG2OF10 3.3219281f |
| 3650 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3651 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3652 | getF32Constant(DAG, 0x40549a78)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3653 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3654 | |
| 3655 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3656 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3657 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3658 | |
| 3659 | // IntegerPartOfX <<= 23; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3660 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3661 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3662 | |
| 3663 | if (LimitFloatPrecision <= 6) { |
| 3664 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3665 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3666 | // twoToFractionalPartOfX = |
| 3667 | // 0.997535578f + |
| 3668 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3669 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3670 | // error 0.0144103317, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3671 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3672 | getF32Constant(DAG, 0x3e814304)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3673 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3674 | getF32Constant(DAG, 0x3f3c50c8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3675 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3676 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3677 | getF32Constant(DAG, 0x3f7f5e7e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3678 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3679 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3680 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3681 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3682 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3683 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3684 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3685 | // For floating-point precision of 12: |
| 3686 | // |
| 3687 | // TwoToFractionalPartOfX = |
| 3688 | // 0.999892986f + |
| 3689 | // (0.696457318f + |
| 3690 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3691 | // |
| 3692 | // error 0.000107046256, which is 13 to 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3693 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3694 | getF32Constant(DAG, 0x3da235e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3695 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3696 | getF32Constant(DAG, 0x3e65b8f3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3697 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3698 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3699 | getF32Constant(DAG, 0x3f324b07)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3700 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3701 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3702 | getF32Constant(DAG, 0x3f7ff8fd)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3703 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3704 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3705 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3706 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3707 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3708 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3709 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3710 | // For floating-point precision of 18: |
| 3711 | // |
| 3712 | // TwoToFractionalPartOfX = |
| 3713 | // 0.999999982f + |
| 3714 | // (0.693148872f + |
| 3715 | // (0.240227044f + |
| 3716 | // (0.554906021e-1f + |
| 3717 | // (0.961591928e-2f + |
| 3718 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3719 | // error 2.47208000*10^(-7), which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3720 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3721 | getF32Constant(DAG, 0x3924b03e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3722 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3723 | getF32Constant(DAG, 0x3ab24b87)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3724 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3725 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3726 | getF32Constant(DAG, 0x3c1d8c17)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3727 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3728 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3729 | getF32Constant(DAG, 0x3d634a1d)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3730 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3731 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3732 | getF32Constant(DAG, 0x3e75fe14)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3733 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3734 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3735 | getF32Constant(DAG, 0x3f317234)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3736 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3737 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3738 | getF32Constant(DAG, 0x3f800000)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3739 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3740 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3741 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3742 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3743 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3744 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3745 | } |
| 3746 | } else { |
| 3747 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3748 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3749 | getValue(I.getOperand(1)).getValueType(), |
| 3750 | getValue(I.getOperand(1)), |
| 3751 | getValue(I.getOperand(2))); |
| 3752 | } |
| 3753 | |
| 3754 | setValue(&I, result); |
| 3755 | } |
| 3756 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3757 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3758 | /// we want to emit this as a call to a named external function, return the name |
| 3759 | /// otherwise lower it and return null. |
| 3760 | const char * |
| 3761 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3762 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3763 | switch (Intrinsic) { |
| 3764 | default: |
| 3765 | // By default, turn this into a target intrinsic node. |
| 3766 | visitTargetIntrinsic(I, Intrinsic); |
| 3767 | return 0; |
| 3768 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3769 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3770 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3771 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3772 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3773 | getValue(I.getOperand(1)))); |
| 3774 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3775 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3776 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3777 | getValue(I.getOperand(1)))); |
| 3778 | return 0; |
| 3779 | case Intrinsic::setjmp: |
| 3780 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3781 | break; |
| 3782 | case Intrinsic::longjmp: |
| 3783 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3784 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3785 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3786 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3787 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3788 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3789 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3790 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3791 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3792 | return 0; |
| 3793 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3794 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3795 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3796 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3797 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3798 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3799 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3800 | I.getOperand(1), 0)); |
| 3801 | return 0; |
| 3802 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3803 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3804 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3805 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3806 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3807 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3808 | |
| 3809 | // If the source and destination are known to not be aliases, we can |
| 3810 | // lower memmove as memcpy. |
| 3811 | uint64_t Size = -1ULL; |
| 3812 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3813 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3814 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3815 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3816 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3817 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3818 | return 0; |
| 3819 | } |
| 3820 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3821 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3822 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3823 | return 0; |
| 3824 | } |
| 3825 | case Intrinsic::dbg_stoppoint: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3826 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3827 | if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3828 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3829 | DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo()); |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3830 | setCurDebugLoc(Loc); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3831 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 3832 | if (OptLevel == CodeGenOpt::None) |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3833 | DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(), |
Dale Johannesen | beaec4c | 2009-03-25 17:36:08 +0000 | [diff] [blame] | 3834 | SPI.getLine(), |
| 3835 | SPI.getColumn(), |
| 3836 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3837 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3838 | return 0; |
| 3839 | } |
| 3840 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3841 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3842 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3843 | if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW |
| 3844 | && DW->ShouldEmitDwarfDebug()) { |
Bill Wendling | df7d5d3 | 2009-05-21 00:04:55 +0000 | [diff] [blame] | 3845 | unsigned LabelID = |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 3846 | DW->RecordRegionStart(RSI.getContext()); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3847 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3848 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3849 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3850 | return 0; |
| 3851 | } |
| 3852 | case Intrinsic::dbg_region_end: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3853 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3854 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3855 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3856 | if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW |
| 3857 | || !DW->ShouldEmitDwarfDebug()) |
| 3858 | return 0; |
Bill Wendling | 6c4311d | 2009-05-08 21:14:49 +0000 | [diff] [blame] | 3859 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3860 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 3861 | DISubprogram Subprogram(REI.getContext()); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3862 | |
| 3863 | if (isInlinedFnEnd(REI, MF.getFunction())) { |
| 3864 | // This is end of inlined function. Debugging information for inlined |
| 3865 | // function is not handled yet (only supported by FastISel). |
| 3866 | if (OptLevel == CodeGenOpt::None) { |
| 3867 | unsigned ID = DW->RecordInlinedFnEnd(Subprogram); |
| 3868 | if (ID != 0) |
| 3869 | // Returned ID is 0 if this is unbalanced "end of inlined |
| 3870 | // scope". This could happen if optimizer eats dbg intrinsics or |
| 3871 | // "beginning of inlined scope" is not recoginized due to missing |
| 3872 | // location info. In such cases, do ignore this region.end. |
| 3873 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3874 | getRoot(), ID)); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3875 | } |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3876 | return 0; |
| 3877 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3878 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3879 | unsigned LabelID = |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 3880 | DW->RecordRegionEnd(REI.getContext()); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3881 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3882 | getRoot(), LabelID)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3883 | return 0; |
| 3884 | } |
| 3885 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3886 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3887 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3888 | if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None)) |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3889 | return 0; |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3890 | |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3891 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3892 | // This is a beginning of an inlined function. |
| 3893 | if (isInlinedFnStart(FSI, MF.getFunction())) { |
| 3894 | if (OptLevel != CodeGenOpt::None) |
| 3895 | // FIXME: Debugging informaation for inlined function is only |
| 3896 | // supported at CodeGenOpt::Node. |
| 3897 | return 0; |
| 3898 | |
Bill Wendling | c677fe5 | 2009-05-10 00:10:50 +0000 | [diff] [blame] | 3899 | DebugLoc PrevLoc = CurDebugLoc; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3900 | // If llvm.dbg.func.start is seen in a new block before any |
| 3901 | // llvm.dbg.stoppoint intrinsic then the location info is unknown. |
| 3902 | // FIXME : Why DebugLoc is reset at the beginning of each block ? |
| 3903 | if (PrevLoc.isUnknown()) |
| 3904 | return 0; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3905 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3906 | // Record the source line. |
| 3907 | setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
| 3908 | |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3909 | if (!DW || !DW->ShouldEmitDwarfDebug()) |
| 3910 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3911 | DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc); |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 3912 | DISubprogram SP(FSI.getSubprogram()); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3913 | DICompileUnit CU(PrevLocTpl.CompileUnit); |
| 3914 | unsigned LabelID = DW->RecordInlinedFnStart(SP, CU, |
| 3915 | PrevLocTpl.Line, |
| 3916 | PrevLocTpl.Col); |
| 3917 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3918 | getRoot(), LabelID)); |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3919 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3920 | } |
| 3921 | |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3922 | // This is a beginning of a new function. |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3923 | MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3924 | |
| 3925 | if (!DW || !DW->ShouldEmitDwarfDebug()) |
| 3926 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3927 | // llvm.dbg.func_start also defines beginning of function scope. |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 3928 | DW->RecordRegionStart(FSI.getSubprogram()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3929 | return 0; |
| 3930 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3931 | case Intrinsic::dbg_declare: { |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3932 | if (OptLevel != CodeGenOpt::None) |
| 3933 | // FIXME: Variable debug info is not supported here. |
| 3934 | return 0; |
Devang Patel | 24f20e0 | 2009-08-22 17:12:53 +0000 | [diff] [blame] | 3935 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 3936 | if (!DW) |
| 3937 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3938 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 3939 | if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None)) |
| 3940 | return 0; |
| 3941 | |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 3942 | MDNode *Variable = DI.getVariable(); |
Devang Patel | 24f20e0 | 2009-08-22 17:12:53 +0000 | [diff] [blame] | 3943 | Value *Address = DI.getAddress(); |
| 3944 | if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address)) |
| 3945 | Address = BCI->getOperand(0); |
| 3946 | AllocaInst *AI = dyn_cast<AllocaInst>(Address); |
| 3947 | // Don't handle byval struct arguments or VLAs, for example. |
| 3948 | if (!AI) |
| 3949 | return 0; |
Devang Patel | bd1d6a8 | 2009-09-05 00:34:14 +0000 | [diff] [blame] | 3950 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 3951 | FuncInfo.StaticAllocaMap.find(AI); |
| 3952 | if (SI == FuncInfo.StaticAllocaMap.end()) |
| 3953 | return 0; // VLAs. |
| 3954 | int FI = SI->second; |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 3955 | #ifdef ATTACH_DEBUG_INFO_TO_AN_INSN |
| 3956 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 3957 | if (MMI) |
| 3958 | MMI->setVariableDbgInfo(Variable, FI); |
| 3959 | #else |
| 3960 | DW->RecordVariable(Variable, FI); |
| 3961 | #endif |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3962 | return 0; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3963 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3964 | case Intrinsic::eh_exception: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3965 | // Insert the EXCEPTIONADDR instruction. |
Duncan Sands | b0f1e17 | 2009-05-22 20:36:31 +0000 | [diff] [blame] | 3966 | assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3967 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3968 | SDValue Ops[1]; |
| 3969 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3970 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3971 | setValue(&I, Op); |
| 3972 | DAG.setRoot(Op.getValue(1)); |
| 3973 | return 0; |
| 3974 | } |
| 3975 | |
| 3976 | case Intrinsic::eh_selector_i32: |
| 3977 | case Intrinsic::eh_selector_i64: { |
| 3978 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3979 | |
Chris Lattner | 3a5815f | 2009-09-17 23:54:54 +0000 | [diff] [blame] | 3980 | if (CurMBB->isLandingPad()) |
| 3981 | AddCatchInfo(I, MMI, CurMBB); |
| 3982 | else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3983 | #ifndef NDEBUG |
Chris Lattner | 3a5815f | 2009-09-17 23:54:54 +0000 | [diff] [blame] | 3984 | FuncInfo.CatchInfoLost.insert(&I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3985 | #endif |
Chris Lattner | 3a5815f | 2009-09-17 23:54:54 +0000 | [diff] [blame] | 3986 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 3987 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 3988 | if (Reg) CurMBB->addLiveIn(Reg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3989 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3990 | |
Chris Lattner | 3a5815f | 2009-09-17 23:54:54 +0000 | [diff] [blame] | 3991 | // Insert the EHSELECTION instruction. |
| 3992 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
| 3993 | SDValue Ops[2]; |
| 3994 | Ops[0] = getValue(I.getOperand(1)); |
| 3995 | Ops[1] = getRoot(); |
| 3996 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
| 3997 | |
| 3998 | DAG.setRoot(Op.getValue(1)); |
| 3999 | |
| 4000 | MVT::SimpleValueType VT = |
| 4001 | (Intrinsic == Intrinsic::eh_selector_i32 ? MVT::i32 : MVT::i64); |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 4002 | setValue(&I, DAG.getSExtOrTrunc(Op, dl, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4003 | return 0; |
| 4004 | } |
| 4005 | |
| 4006 | case Intrinsic::eh_typeid_for_i32: |
| 4007 | case Intrinsic::eh_typeid_for_i64: { |
| 4008 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4009 | EVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4010 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4011 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4012 | if (MMI) { |
| 4013 | // Find the type id for the given typeinfo. |
| 4014 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4015 | |
| 4016 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4017 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4018 | } else { |
| 4019 | // Return something different to eh_selector. |
| 4020 | setValue(&I, DAG.getConstant(1, VT)); |
| 4021 | } |
| 4022 | |
| 4023 | return 0; |
| 4024 | } |
| 4025 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4026 | case Intrinsic::eh_return_i32: |
| 4027 | case Intrinsic::eh_return_i64: |
| 4028 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4029 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4030 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4031 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4032 | getControlRoot(), |
| 4033 | getValue(I.getOperand(1)), |
| 4034 | getValue(I.getOperand(2)))); |
| 4035 | } else { |
| 4036 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4037 | } |
| 4038 | |
| 4039 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4040 | case Intrinsic::eh_unwind_init: |
| 4041 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4042 | MMI->setCallsUnwindInit(true); |
| 4043 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4044 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4045 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4046 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4047 | case Intrinsic::eh_dwarf_cfa: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4048 | EVT VT = getValue(I.getOperand(1)).getValueType(); |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 4049 | SDValue CfaArg = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), dl, |
| 4050 | TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4051 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4052 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4053 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4054 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4055 | TLI.getPointerTy()), |
| 4056 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4057 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4058 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4059 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4060 | TLI.getPointerTy(), |
| 4061 | DAG.getConstant(0, |
| 4062 | TLI.getPointerTy())), |
| 4063 | Offset)); |
| 4064 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4065 | } |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4066 | case Intrinsic::convertff: |
| 4067 | case Intrinsic::convertfsi: |
| 4068 | case Intrinsic::convertfui: |
| 4069 | case Intrinsic::convertsif: |
| 4070 | case Intrinsic::convertuif: |
| 4071 | case Intrinsic::convertss: |
| 4072 | case Intrinsic::convertsu: |
| 4073 | case Intrinsic::convertus: |
| 4074 | case Intrinsic::convertuu: { |
| 4075 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4076 | switch (Intrinsic) { |
| 4077 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4078 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4079 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4080 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4081 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4082 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4083 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4084 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4085 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4086 | } |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4087 | EVT DestVT = TLI.getValueType(I.getType()); |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4088 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4089 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4090 | DAG.getValueType(DestVT), |
| 4091 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4092 | getValue(I.getOperand(2)), |
| 4093 | getValue(I.getOperand(3)), |
| 4094 | Code)); |
| 4095 | return 0; |
| 4096 | } |
| 4097 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4098 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4099 | setValue(&I, DAG.getNode(ISD::FSQRT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4100 | getValue(I.getOperand(1)).getValueType(), |
| 4101 | getValue(I.getOperand(1)))); |
| 4102 | return 0; |
| 4103 | case Intrinsic::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4104 | setValue(&I, DAG.getNode(ISD::FPOWI, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4105 | getValue(I.getOperand(1)).getValueType(), |
| 4106 | getValue(I.getOperand(1)), |
| 4107 | getValue(I.getOperand(2)))); |
| 4108 | return 0; |
| 4109 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4110 | setValue(&I, DAG.getNode(ISD::FSIN, 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::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4115 | setValue(&I, DAG.getNode(ISD::FCOS, 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 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4119 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4120 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4121 | return 0; |
| 4122 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4123 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4124 | return 0; |
| 4125 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4126 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4127 | return 0; |
| 4128 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4129 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4130 | return 0; |
| 4131 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4132 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4133 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4134 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4135 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4136 | return 0; |
| 4137 | case Intrinsic::pcmarker: { |
| 4138 | SDValue Tmp = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4139 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4140 | return 0; |
| 4141 | } |
| 4142 | case Intrinsic::readcyclecounter: { |
| 4143 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4144 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4145 | DAG.getVTList(MVT::i64, MVT::Other), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4146 | &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4147 | setValue(&I, Tmp); |
| 4148 | DAG.setRoot(Tmp.getValue(1)); |
| 4149 | return 0; |
| 4150 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4151 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4152 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4153 | getValue(I.getOperand(1)).getValueType(), |
| 4154 | getValue(I.getOperand(1)))); |
| 4155 | return 0; |
| 4156 | case Intrinsic::cttz: { |
| 4157 | SDValue Arg = getValue(I.getOperand(1)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4158 | EVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4159 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4160 | setValue(&I, result); |
| 4161 | return 0; |
| 4162 | } |
| 4163 | case Intrinsic::ctlz: { |
| 4164 | SDValue Arg = getValue(I.getOperand(1)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4165 | EVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4166 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4167 | setValue(&I, result); |
| 4168 | return 0; |
| 4169 | } |
| 4170 | case Intrinsic::ctpop: { |
| 4171 | SDValue Arg = getValue(I.getOperand(1)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4172 | EVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4173 | SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4174 | setValue(&I, result); |
| 4175 | return 0; |
| 4176 | } |
| 4177 | case Intrinsic::stacksave: { |
| 4178 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4179 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4180 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4181 | setValue(&I, Tmp); |
| 4182 | DAG.setRoot(Tmp.getValue(1)); |
| 4183 | return 0; |
| 4184 | } |
| 4185 | case Intrinsic::stackrestore: { |
| 4186 | SDValue Tmp = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4187 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4188 | return 0; |
| 4189 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4190 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4191 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4192 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4193 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4194 | EVT PtrTy = TLI.getPointerTy(); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4195 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4196 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4197 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4198 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4199 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4200 | MFI->setStackProtectorIndex(FI); |
| 4201 | |
| 4202 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4203 | |
| 4204 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4205 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4206 | PseudoSourceValue::getFixedStack(FI), |
| 4207 | 0, true); |
| 4208 | setValue(&I, Result); |
| 4209 | DAG.setRoot(Result); |
| 4210 | return 0; |
| 4211 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4212 | case Intrinsic::var_annotation: |
| 4213 | // Discard annotate attributes |
| 4214 | return 0; |
| 4215 | |
| 4216 | case Intrinsic::init_trampoline: { |
| 4217 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4218 | |
| 4219 | SDValue Ops[6]; |
| 4220 | Ops[0] = getRoot(); |
| 4221 | Ops[1] = getValue(I.getOperand(1)); |
| 4222 | Ops[2] = getValue(I.getOperand(2)); |
| 4223 | Ops[3] = getValue(I.getOperand(3)); |
| 4224 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4225 | Ops[5] = DAG.getSrcValue(F); |
| 4226 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4227 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4228 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4229 | Ops, 6); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4230 | |
| 4231 | setValue(&I, Tmp); |
| 4232 | DAG.setRoot(Tmp.getValue(1)); |
| 4233 | return 0; |
| 4234 | } |
| 4235 | |
| 4236 | case Intrinsic::gcroot: |
| 4237 | if (GFI) { |
| 4238 | Value *Alloca = I.getOperand(1); |
| 4239 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4240 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4241 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4242 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4243 | } |
| 4244 | return 0; |
| 4245 | |
| 4246 | case Intrinsic::gcread: |
| 4247 | case Intrinsic::gcwrite: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 4248 | llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4249 | return 0; |
| 4250 | |
| 4251 | case Intrinsic::flt_rounds: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4252 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4253 | return 0; |
| 4254 | } |
| 4255 | |
| 4256 | case Intrinsic::trap: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4257 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4258 | return 0; |
| 4259 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4260 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4261 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4262 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4263 | case Intrinsic::sadd_with_overflow: |
| 4264 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4265 | case Intrinsic::usub_with_overflow: |
| 4266 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4267 | case Intrinsic::ssub_with_overflow: |
| 4268 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4269 | case Intrinsic::umul_with_overflow: |
| 4270 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4271 | case Intrinsic::smul_with_overflow: |
| 4272 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4273 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4274 | case Intrinsic::prefetch: { |
| 4275 | SDValue Ops[4]; |
| 4276 | Ops[0] = getRoot(); |
| 4277 | Ops[1] = getValue(I.getOperand(1)); |
| 4278 | Ops[2] = getValue(I.getOperand(2)); |
| 4279 | Ops[3] = getValue(I.getOperand(3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4280 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4281 | return 0; |
| 4282 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4283 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4284 | case Intrinsic::memory_barrier: { |
| 4285 | SDValue Ops[6]; |
| 4286 | Ops[0] = getRoot(); |
| 4287 | for (int x = 1; x < 6; ++x) |
| 4288 | Ops[x] = getValue(I.getOperand(x)); |
| 4289 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4290 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4291 | return 0; |
| 4292 | } |
| 4293 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4294 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4295 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4296 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4297 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4298 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4299 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4300 | getValue(I.getOperand(2)), |
| 4301 | getValue(I.getOperand(3)), |
| 4302 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4303 | setValue(&I, L); |
| 4304 | DAG.setRoot(L.getValue(1)); |
| 4305 | return 0; |
| 4306 | } |
| 4307 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4308 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4309 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4310 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4311 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4312 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4313 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4314 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4315 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4316 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4317 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4318 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4319 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4320 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4321 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4322 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4323 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4324 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4325 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4326 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4327 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4328 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4329 | } |
| 4330 | } |
| 4331 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4332 | /// Test if the given instruction is in a position to be optimized |
| 4333 | /// with a tail-call. This roughly means that it's in a block with |
| 4334 | /// a return and there's nothing that needs to be scheduled |
| 4335 | /// between it and the return. |
| 4336 | /// |
| 4337 | /// This function only tests target-independent requirements. |
| 4338 | /// For target-dependent requirements, a target should override |
| 4339 | /// TargetLowering::IsEligibleForTailCallOptimization. |
| 4340 | /// |
| 4341 | static bool |
| 4342 | isInTailCallPosition(const Instruction *I, Attributes RetAttr, |
| 4343 | const TargetLowering &TLI) { |
| 4344 | const BasicBlock *ExitBB = I->getParent(); |
| 4345 | const TerminatorInst *Term = ExitBB->getTerminator(); |
| 4346 | const ReturnInst *Ret = dyn_cast<ReturnInst>(Term); |
| 4347 | const Function *F = ExitBB->getParent(); |
| 4348 | |
| 4349 | // The block must end in a return statement or an unreachable. |
| 4350 | if (!Ret && !isa<UnreachableInst>(Term)) return false; |
| 4351 | |
| 4352 | // If I will have a chain, make sure no other instruction that will have a |
| 4353 | // chain interposes between I and the return. |
| 4354 | if (I->mayHaveSideEffects() || I->mayReadFromMemory() || |
| 4355 | !I->isSafeToSpeculativelyExecute()) |
| 4356 | for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ; |
| 4357 | --BBI) { |
| 4358 | if (&*BBI == I) |
| 4359 | break; |
| 4360 | if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || |
| 4361 | !BBI->isSafeToSpeculativelyExecute()) |
| 4362 | return false; |
| 4363 | } |
| 4364 | |
| 4365 | // If the block ends with a void return or unreachable, it doesn't matter |
| 4366 | // what the call's return type is. |
| 4367 | if (!Ret || Ret->getNumOperands() == 0) return true; |
| 4368 | |
| 4369 | // Conservatively require the attributes of the call to match those of |
| 4370 | // the return. |
| 4371 | if (F->getAttributes().getRetAttributes() != RetAttr) |
| 4372 | return false; |
| 4373 | |
| 4374 | // Otherwise, make sure the unmodified return value of I is the return value. |
| 4375 | for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ; |
| 4376 | U = dyn_cast<Instruction>(U->getOperand(0))) { |
| 4377 | if (!U) |
| 4378 | return false; |
| 4379 | if (!U->hasOneUse()) |
| 4380 | return false; |
| 4381 | if (U == I) |
| 4382 | break; |
| 4383 | // Check for a truly no-op truncate. |
| 4384 | if (isa<TruncInst>(U) && |
| 4385 | TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType())) |
| 4386 | continue; |
| 4387 | // Check for a truly no-op bitcast. |
| 4388 | if (isa<BitCastInst>(U) && |
| 4389 | (U->getOperand(0)->getType() == U->getType() || |
| 4390 | (isa<PointerType>(U->getOperand(0)->getType()) && |
| 4391 | isa<PointerType>(U->getType())))) |
| 4392 | continue; |
| 4393 | // Otherwise it's not a true no-op. |
| 4394 | return false; |
| 4395 | } |
| 4396 | |
| 4397 | return true; |
| 4398 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4399 | |
| 4400 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4401 | bool isTailCall, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4402 | MachineBasicBlock *LandingPad) { |
| 4403 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4404 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4405 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4406 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4407 | |
| 4408 | TargetLowering::ArgListTy Args; |
| 4409 | TargetLowering::ArgListEntry Entry; |
| 4410 | Args.reserve(CS.arg_size()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4411 | unsigned j = 1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4412 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4413 | i != e; ++i, ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4414 | SDValue ArgNode = getValue(*i); |
| 4415 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4416 | |
| 4417 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4418 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4419 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4420 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4421 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4422 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4423 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4424 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4425 | Args.push_back(Entry); |
| 4426 | } |
| 4427 | |
| 4428 | if (LandingPad && MMI) { |
| 4429 | // Insert a label before the invoke call to mark the try range. This can be |
| 4430 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4431 | BeginLabel = MMI->NextLabelID(); |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 4432 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4433 | // Both PendingLoads and PendingExports must be flushed here; |
| 4434 | // this call might not return. |
| 4435 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4436 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4437 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4438 | } |
| 4439 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4440 | // Check if target-independent constraints permit a tail call here. |
| 4441 | // Target-dependent constraints are checked within TLI.LowerCallTo. |
| 4442 | if (isTailCall && |
| 4443 | !isInTailCallPosition(CS.getInstruction(), |
| 4444 | CS.getAttributes().getRetAttributes(), |
| 4445 | TLI)) |
| 4446 | isTailCall = false; |
| 4447 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4448 | std::pair<SDValue,SDValue> Result = |
| 4449 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4450 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4451 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 4452 | CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4453 | CS.getCallingConv(), |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4454 | isTailCall, |
| 4455 | !CS.getInstruction()->use_empty(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4456 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4457 | assert((isTailCall || Result.second.getNode()) && |
| 4458 | "Non-null chain expected with non-tail call!"); |
| 4459 | assert((Result.second.getNode() || !Result.first.getNode()) && |
| 4460 | "Null value expected with tail call!"); |
| 4461 | if (Result.first.getNode()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4462 | setValue(CS.getInstruction(), Result.first); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4463 | // As a special case, a null chain means that a tail call has |
| 4464 | // been emitted and the DAG root is already updated. |
| 4465 | if (Result.second.getNode()) |
| 4466 | DAG.setRoot(Result.second); |
| 4467 | else |
| 4468 | HasTailCall = true; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4469 | |
| 4470 | if (LandingPad && MMI) { |
| 4471 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4472 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4473 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4474 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4475 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4476 | |
| 4477 | // Inform MachineModuleInfo of range. |
| 4478 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4479 | } |
| 4480 | } |
| 4481 | |
| 4482 | |
| 4483 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4484 | const char *RenameFn = 0; |
| 4485 | if (Function *F = I.getCalledFunction()) { |
| 4486 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4487 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4488 | if (II) { |
| 4489 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4490 | RenameFn = visitIntrinsicCall(I, IID); |
| 4491 | if (!RenameFn) |
| 4492 | return; |
| 4493 | } |
| 4494 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4495 | if (unsigned IID = F->getIntrinsicID()) { |
| 4496 | RenameFn = visitIntrinsicCall(I, IID); |
| 4497 | if (!RenameFn) |
| 4498 | return; |
| 4499 | } |
| 4500 | } |
| 4501 | |
| 4502 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4503 | // can't be a library call. |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4504 | if (!F->hasLocalLinkage() && F->hasName()) { |
| 4505 | StringRef Name = F->getName(); |
| 4506 | if (Name == "copysign" || Name == "copysignf") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4507 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4508 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4509 | I.getType() == I.getOperand(1)->getType() && |
| 4510 | I.getType() == I.getOperand(2)->getType()) { |
| 4511 | SDValue LHS = getValue(I.getOperand(1)); |
| 4512 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4513 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4514 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4515 | return; |
| 4516 | } |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4517 | } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4518 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4519 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4520 | I.getType() == I.getOperand(1)->getType()) { |
| 4521 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4522 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4523 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4524 | return; |
| 4525 | } |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4526 | } else if (Name == "sin" || Name == "sinf" || Name == "sinl") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4527 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4528 | I.getOperand(1)->getType()->isFloatingPoint() && |
Dale Johannesen | a45bfd3 | 2009-09-25 18:00:35 +0000 | [diff] [blame] | 4529 | I.getType() == I.getOperand(1)->getType() && |
| 4530 | I.onlyReadsMemory()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4531 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4532 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4533 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4534 | return; |
| 4535 | } |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4536 | } else if (Name == "cos" || Name == "cosf" || Name == "cosl") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4537 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4538 | I.getOperand(1)->getType()->isFloatingPoint() && |
Dale Johannesen | a45bfd3 | 2009-09-25 18:00:35 +0000 | [diff] [blame] | 4539 | I.getType() == I.getOperand(1)->getType() && |
| 4540 | I.onlyReadsMemory()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4541 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4542 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4543 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4544 | return; |
| 4545 | } |
Dale Johannesen | 52fb79b | 2009-09-25 17:23:22 +0000 | [diff] [blame] | 4546 | } else if (Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl") { |
| 4547 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4548 | I.getOperand(1)->getType()->isFloatingPoint() && |
Dale Johannesen | a45bfd3 | 2009-09-25 18:00:35 +0000 | [diff] [blame] | 4549 | I.getType() == I.getOperand(1)->getType() && |
| 4550 | I.onlyReadsMemory()) { |
Dale Johannesen | 52fb79b | 2009-09-25 17:23:22 +0000 | [diff] [blame] | 4551 | SDValue Tmp = getValue(I.getOperand(1)); |
| 4552 | setValue(&I, DAG.getNode(ISD::FSQRT, getCurDebugLoc(), |
| 4553 | Tmp.getValueType(), Tmp)); |
| 4554 | return; |
| 4555 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4556 | } |
| 4557 | } |
| 4558 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4559 | visitInlineAsm(&I); |
| 4560 | return; |
| 4561 | } |
| 4562 | |
| 4563 | SDValue Callee; |
| 4564 | if (!RenameFn) |
| 4565 | Callee = getValue(I.getOperand(0)); |
| 4566 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4567 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4568 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4569 | // Check if we can potentially perform a tail call. More detailed |
| 4570 | // checking is be done within LowerCallTo, after more information |
| 4571 | // about the call is known. |
| 4572 | bool isTailCall = PerformTailCallOpt && I.isTailCall(); |
| 4573 | |
| 4574 | LowerCallTo(&I, Callee, isTailCall); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4575 | } |
| 4576 | |
| 4577 | |
| 4578 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4579 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4580 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4581 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4582 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4583 | SDValue &Chain, |
| 4584 | SDValue *Flag) const { |
| 4585 | // Assemble the legal parts into the final values. |
| 4586 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4587 | SmallVector<SDValue, 8> Parts; |
| 4588 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4589 | // Copy the legal parts from the registers. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4590 | EVT ValueVT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4591 | unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4592 | EVT RegisterVT = RegVTs[Value]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4593 | |
| 4594 | Parts.resize(NumRegs); |
| 4595 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4596 | SDValue P; |
| 4597 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4598 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4599 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4600 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4601 | *Flag = P.getValue(2); |
| 4602 | } |
| 4603 | Chain = P.getValue(1); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4604 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4605 | // If the source register was virtual and if we know something about it, |
| 4606 | // add an assert node. |
| 4607 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4608 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4609 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4610 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4611 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4612 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4613 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4614 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4615 | unsigned NumSignBits = LOI.NumSignBits; |
| 4616 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4617 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4618 | // FIXME: We capture more information than the dag can represent. For |
| 4619 | // now, just use the tightest assertzext/assertsext possible. |
| 4620 | bool isSExt = true; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4621 | EVT FromVT(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4622 | if (NumSignBits == RegSize) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4623 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4624 | else if (NumZeroBits >= RegSize-1) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4625 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4626 | else if (NumSignBits > RegSize-8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4627 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4628 | else if (NumZeroBits >= RegSize-8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4629 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4630 | else if (NumSignBits > RegSize-16) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4631 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4632 | else if (NumZeroBits >= RegSize-16) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4633 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4634 | else if (NumSignBits > RegSize-32) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4635 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4636 | else if (NumZeroBits >= RegSize-32) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4637 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4638 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4639 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4640 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4641 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4642 | |
| 4643 | } |
| 4644 | } |
| 4645 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4646 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4647 | Parts[i] = P; |
| 4648 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4649 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4650 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4651 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4652 | Part += NumRegs; |
| 4653 | Parts.clear(); |
| 4654 | } |
| 4655 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4656 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4657 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4658 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4659 | } |
| 4660 | |
| 4661 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4662 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4663 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4664 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4665 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4666 | SDValue &Chain, SDValue *Flag) const { |
| 4667 | // Get the list of the values's legal parts. |
| 4668 | unsigned NumRegs = Regs.size(); |
| 4669 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4670 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4671 | EVT ValueVT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4672 | unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4673 | EVT RegisterVT = RegVTs[Value]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4674 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4675 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4676 | &Parts[Part], NumParts, RegisterVT); |
| 4677 | Part += NumParts; |
| 4678 | } |
| 4679 | |
| 4680 | // Copy the parts into the registers. |
| 4681 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4682 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4683 | SDValue Part; |
| 4684 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4685 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4686 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4687 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4688 | *Flag = Part.getValue(1); |
| 4689 | } |
| 4690 | Chains[i] = Part.getValue(0); |
| 4691 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4692 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4693 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4694 | // 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] | 4695 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4696 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4697 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4698 | // user as well as a successor (the TF operands are flagged to the user). |
| 4699 | // c1, f1 = CopyToReg |
| 4700 | // c2, f2 = CopyToReg |
| 4701 | // c3 = TokenFactor c1, c2 |
| 4702 | // ... |
| 4703 | // = op c3, ..., f2 |
| 4704 | Chain = Chains[NumRegs-1]; |
| 4705 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4706 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4707 | } |
| 4708 | |
| 4709 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4710 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4711 | /// values added into it. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4712 | void RegsForValue::AddInlineAsmOperands(unsigned Code, |
| 4713 | bool HasMatching,unsigned MatchingIdx, |
| 4714 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4715 | std::vector<SDValue> &Ops) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4716 | EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4717 | assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!"); |
| 4718 | unsigned Flag = Code | (Regs.size() << 3); |
| 4719 | if (HasMatching) |
| 4720 | Flag |= 0x80000000 | (MatchingIdx << 16); |
| 4721 | Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4722 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4723 | unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4724 | EVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4725 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4726 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4727 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4728 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4729 | } |
| 4730 | } |
| 4731 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4732 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4733 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4734 | /// register class for the register. Otherwise, return null. |
| 4735 | static const TargetRegisterClass * |
| 4736 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4737 | const TargetLowering &TLI, |
| 4738 | const TargetRegisterInfo *TRI) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4739 | EVT FoundVT = MVT::Other; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4740 | const TargetRegisterClass *FoundRC = 0; |
| 4741 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4742 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4743 | EVT ThisVT = MVT::Other; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4744 | |
| 4745 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4746 | // 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] | 4747 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4748 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4749 | I != E; ++I) { |
| 4750 | if (TLI.isTypeLegal(*I)) { |
| 4751 | // If we have already found this register in a different register class, |
| 4752 | // choose the one with the largest VT specified. For example, on |
| 4753 | // PowerPC, we favor f64 register classes over f32. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4754 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4755 | ThisVT = *I; |
| 4756 | break; |
| 4757 | } |
| 4758 | } |
| 4759 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4760 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4761 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4762 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4763 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4764 | // frame pointer in functions that need it (due to them not being taken |
| 4765 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4766 | // yet). This is a slight code pessimization, but should still work. |
| 4767 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4768 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4769 | if (*I == Reg) { |
| 4770 | // We found a matching register class. Keep looking at others in case |
| 4771 | // we find one with larger registers that this physreg is also in. |
| 4772 | FoundRC = RC; |
| 4773 | FoundVT = ThisVT; |
| 4774 | break; |
| 4775 | } |
| 4776 | } |
| 4777 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4778 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4779 | |
| 4780 | |
| 4781 | namespace llvm { |
| 4782 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4783 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4784 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4785 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4786 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4787 | /// CallOperand - If this is the result output operand or a clobber |
| 4788 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4789 | /// This gets modified as the asm is processed. |
| 4790 | SDValue CallOperand; |
| 4791 | |
| 4792 | /// AssignedRegs - If this is a register or register class operand, this |
| 4793 | /// contains the set of register corresponding to the operand. |
| 4794 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4795 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4796 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4797 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4798 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4799 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4800 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4801 | /// busy in OutputRegs/InputRegs. |
| 4802 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4803 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4804 | std::set<unsigned> &InputRegs, |
| 4805 | const TargetRegisterInfo &TRI) const { |
| 4806 | if (isOutReg) { |
| 4807 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4808 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4809 | } |
| 4810 | if (isInReg) { |
| 4811 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4812 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4813 | } |
| 4814 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4815 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4816 | /// getCallOperandValEVT - Return the EVT of the Value* that this operand |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4817 | /// corresponds to. If there is no Value* for this operand, it returns |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4818 | /// MVT::Other. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 4819 | EVT getCallOperandValEVT(LLVMContext &Context, |
| 4820 | const TargetLowering &TLI, |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4821 | const TargetData *TD) const { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4822 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4823 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4824 | if (isa<BasicBlock>(CallOperandVal)) |
| 4825 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4826 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4827 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4828 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4829 | // If this is an indirect operand, the operand is a pointer to the |
| 4830 | // accessed type. |
| 4831 | if (isIndirect) |
| 4832 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4833 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4834 | // If OpTy is not a single value, it may be a struct/union that we |
| 4835 | // can tile with integers. |
| 4836 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4837 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4838 | switch (BitSize) { |
| 4839 | default: break; |
| 4840 | case 1: |
| 4841 | case 8: |
| 4842 | case 16: |
| 4843 | case 32: |
| 4844 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4845 | case 128: |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 4846 | OpTy = IntegerType::get(Context, BitSize); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4847 | break; |
| 4848 | } |
| 4849 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4850 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4851 | return TLI.getValueType(OpTy, true); |
| 4852 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4853 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4854 | private: |
| 4855 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4856 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4857 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4858 | const TargetRegisterInfo &TRI) { |
| 4859 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4860 | Regs.insert(Reg); |
| 4861 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4862 | for (; *Aliases; ++Aliases) |
| 4863 | Regs.insert(*Aliases); |
| 4864 | } |
| 4865 | }; |
| 4866 | } // end llvm namespace. |
| 4867 | |
| 4868 | |
| 4869 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4870 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4871 | /// register allocator handle the assignment process. However, if the asm uses |
| 4872 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4873 | /// allocation. This produces generally horrible, but correct, code. |
| 4874 | /// |
| 4875 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4876 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4877 | /// |
| 4878 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4879 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4880 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4881 | std::set<unsigned> &InputRegs) { |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 4882 | LLVMContext &Context = FuncInfo.Fn->getContext(); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4883 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4884 | // Compute whether this value requires an input register, an output register, |
| 4885 | // or both. |
| 4886 | bool isOutReg = false; |
| 4887 | bool isInReg = false; |
| 4888 | switch (OpInfo.Type) { |
| 4889 | case InlineAsm::isOutput: |
| 4890 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4891 | |
| 4892 | // 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] | 4893 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4894 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4895 | break; |
| 4896 | case InlineAsm::isInput: |
| 4897 | isInReg = true; |
| 4898 | isOutReg = false; |
| 4899 | break; |
| 4900 | case InlineAsm::isClobber: |
| 4901 | isOutReg = true; |
| 4902 | isInReg = true; |
| 4903 | break; |
| 4904 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4905 | |
| 4906 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4907 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4908 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4909 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4910 | // If this is a constraint for a single physreg, or a constraint for a |
| 4911 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4912 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4913 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4914 | OpInfo.ConstraintVT); |
| 4915 | |
| 4916 | unsigned NumRegs = 1; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4917 | if (OpInfo.ConstraintVT != MVT::Other) { |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4918 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4919 | // cast of the input value. More generally, handle any case where the input |
| 4920 | // value disagrees with the register class we plan to stick this in. |
| 4921 | if (OpInfo.Type == InlineAsm::isInput && |
| 4922 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4923 | // Try to convert to the first EVT that the reg class contains. If the |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4924 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4925 | // vector types). |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4926 | EVT RegVT = *PhysReg.second->vt_begin(); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4927 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4928 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4929 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4930 | OpInfo.ConstraintVT = RegVT; |
| 4931 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4932 | // If the input is a FP value and we want it in FP registers, do a |
| 4933 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4934 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4935 | // machine. |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4936 | RegVT = EVT::getIntegerVT(Context, |
| 4937 | OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4938 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4939 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4940 | OpInfo.ConstraintVT = RegVT; |
| 4941 | } |
| 4942 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4943 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4944 | NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4945 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4946 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4947 | EVT RegVT; |
| 4948 | EVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4949 | |
| 4950 | // If this is a constraint for a specific physical register, like {r17}, |
| 4951 | // assign it now. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4952 | if (unsigned AssignedReg = PhysReg.first) { |
| 4953 | const TargetRegisterClass *RC = PhysReg.second; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4954 | if (OpInfo.ConstraintVT == MVT::Other) |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4955 | ValueVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4956 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4957 | // Get the actual register value type. This is important, because the user |
| 4958 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4959 | // remember that AX is actually i16 to get the right extension. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4960 | RegVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4961 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4962 | // This is a explicit reference to a physical register. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4963 | Regs.push_back(AssignedReg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4964 | |
| 4965 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4966 | if (NumRegs != 1) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4967 | TargetRegisterClass::iterator I = RC->begin(); |
| 4968 | for (; *I != AssignedReg; ++I) |
| 4969 | assert(I != RC->end() && "Didn't find reg!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4970 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4971 | // Already added the first reg. |
| 4972 | --NumRegs; ++I; |
| 4973 | for (; NumRegs; --NumRegs, ++I) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4974 | assert(I != RC->end() && "Ran out of registers to allocate!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4975 | Regs.push_back(*I); |
| 4976 | } |
| 4977 | } |
| 4978 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4979 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4980 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4981 | return; |
| 4982 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4983 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4984 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 4985 | // for this reference. |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4986 | if (const TargetRegisterClass *RC = PhysReg.second) { |
| 4987 | RegVT = *RC->vt_begin(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4988 | if (OpInfo.ConstraintVT == MVT::Other) |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4989 | ValueVT = RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4990 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4991 | // Create the appropriate number of virtual registers. |
| 4992 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 4993 | for (; NumRegs; --NumRegs) |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4994 | Regs.push_back(RegInfo.createVirtualRegister(RC)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4995 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4996 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4997 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4998 | } |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 4999 | |
| 5000 | // This is a reference to a register class that doesn't directly correspond |
| 5001 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 5002 | // registers from the class. |
| 5003 | std::vector<unsigned> RegClassRegs |
| 5004 | = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 5005 | OpInfo.ConstraintVT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5006 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5007 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 5008 | unsigned NumAllocated = 0; |
| 5009 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 5010 | unsigned Reg = RegClassRegs[i]; |
| 5011 | // See if this register is available. |
| 5012 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 5013 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 5014 | // Make sure we find consecutive registers. |
| 5015 | NumAllocated = 0; |
| 5016 | continue; |
| 5017 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5018 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5019 | // Check to see if this register is allocatable (i.e. don't give out the |
| 5020 | // stack pointer). |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5021 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 5022 | if (!RC) { // Couldn't allocate this register. |
| 5023 | // Reset NumAllocated to make sure we return consecutive registers. |
| 5024 | NumAllocated = 0; |
| 5025 | continue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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 | // Okay, this register is good, we can use it. |
| 5029 | ++NumAllocated; |
| 5030 | |
| 5031 | // If we allocated enough consecutive registers, succeed. |
| 5032 | if (NumAllocated == NumRegs) { |
| 5033 | unsigned RegStart = (i-NumAllocated)+1; |
| 5034 | unsigned RegEnd = i+1; |
| 5035 | // Mark all of the allocated registers used. |
| 5036 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 5037 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5038 | |
| 5039 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5040 | OpInfo.ConstraintVT); |
| 5041 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 5042 | return; |
| 5043 | } |
| 5044 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5045 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5046 | // Otherwise, we couldn't allocate enough registers for this. |
| 5047 | } |
| 5048 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5049 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 5050 | /// processed uses a memory 'm' constraint. |
| 5051 | static bool |
| 5052 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 5053 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5054 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 5055 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 5056 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 5057 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 5058 | if (CType == TargetLowering::C_Memory) |
| 5059 | return true; |
| 5060 | } |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5061 | |
| 5062 | // Indirect operand accesses access memory. |
| 5063 | if (CI.isIndirect) |
| 5064 | return true; |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5065 | } |
| 5066 | |
| 5067 | return false; |
| 5068 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5069 | |
| 5070 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 5071 | /// |
| 5072 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 5073 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 5074 | |
| 5075 | /// ConstraintOperands - Information about all of the constraints. |
| 5076 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5077 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5078 | std::set<unsigned> OutputRegs, InputRegs; |
| 5079 | |
| 5080 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 5081 | // ConstraintOperands list. |
| 5082 | std::vector<InlineAsm::ConstraintInfo> |
| 5083 | ConstraintInfos = IA->ParseConstraints(); |
| 5084 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5085 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5086 | |
| 5087 | SDValue Chain, Flag; |
| 5088 | |
| 5089 | // We won't need to flush pending loads if this asm doesn't touch |
| 5090 | // memory and is nonvolatile. |
| 5091 | if (hasMemory || IA->hasSideEffects()) |
Dale Johannesen | 97d14fc | 2009-04-18 00:09:40 +0000 | [diff] [blame] | 5092 | Chain = getRoot(); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5093 | else |
| 5094 | Chain = DAG.getRoot(); |
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 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5097 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5098 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5099 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5100 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5101 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5102 | EVT OpVT = MVT::Other; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5103 | |
| 5104 | // Compute the value type for each operand. |
| 5105 | switch (OpInfo.Type) { |
| 5106 | case InlineAsm::isOutput: |
| 5107 | // Indirect outputs just consume an argument. |
| 5108 | if (OpInfo.isIndirect) { |
| 5109 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5110 | break; |
| 5111 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5112 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5113 | // The return value of the call is this value. As such, there is no |
| 5114 | // corresponding argument. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5115 | assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) && |
| 5116 | "Bad inline asm!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5117 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5118 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5119 | } else { |
| 5120 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5121 | OpVT = TLI.getValueType(CS.getType()); |
| 5122 | } |
| 5123 | ++ResNo; |
| 5124 | break; |
| 5125 | case InlineAsm::isInput: |
| 5126 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5127 | break; |
| 5128 | case InlineAsm::isClobber: |
| 5129 | // Nothing to do. |
| 5130 | break; |
| 5131 | } |
| 5132 | |
| 5133 | // If this is an input or an indirect output, process the call argument. |
| 5134 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5135 | if (OpInfo.CallOperandVal) { |
Dale Johannesen | 5339c55 | 2009-07-20 23:27:39 +0000 | [diff] [blame] | 5136 | // Strip bitcasts, if any. This mostly comes up for functions. |
Dale Johannesen | 7671124 | 2009-08-06 22:45:51 +0000 | [diff] [blame] | 5137 | OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts(); |
| 5138 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5139 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5140 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5141 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5142 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5143 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5144 | |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5145 | OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5146 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5147 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5148 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5149 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5150 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5151 | // Second pass over the constraints: compute which constraint option to use |
| 5152 | // and assign registers to constraints that want a specific physreg. |
| 5153 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5154 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5155 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5156 | // 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] | 5157 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5158 | // other is floating point, or their sizes are different, flag it as an |
| 5159 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5160 | if (OpInfo.hasMatchingInput()) { |
| 5161 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5162 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5163 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5164 | Input.ConstraintVT.isInteger()) || |
| 5165 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5166 | Input.ConstraintVT.getSizeInBits())) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5167 | llvm_report_error("Unsupported asm: input constraint" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5168 | " with a matching output constraint of incompatible" |
| 5169 | " type!"); |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5170 | } |
| 5171 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5172 | } |
| 5173 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5174 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5175 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5176 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5177 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5178 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5179 | // need to to provide an address for the memory input. |
| 5180 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5181 | !OpInfo.isIndirect) { |
| 5182 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5183 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5184 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5185 | // Memory operands really want the address of the value. If we don't have |
| 5186 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5187 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5188 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5189 | // If the operand is a float, integer, or vector constant, spill to a |
| 5190 | // constant pool entry to get its address. |
| 5191 | Value *OpVal = OpInfo.CallOperandVal; |
| 5192 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5193 | isa<ConstantVector>(OpVal)) { |
| 5194 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5195 | TLI.getPointerTy()); |
| 5196 | } else { |
| 5197 | // Otherwise, create a stack slot and emit a store to it before the |
| 5198 | // asm. |
| 5199 | const Type *Ty = OpVal->getType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5200 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5201 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5202 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5203 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5204 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5205 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5206 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5207 | OpInfo.CallOperand = StackSlot; |
| 5208 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5209 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5210 | // There is no longer a Value* corresponding to this operand. |
| 5211 | OpInfo.CallOperandVal = 0; |
| 5212 | // It is now an indirect operand. |
| 5213 | OpInfo.isIndirect = true; |
| 5214 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5215 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5216 | // If this constraint is for a specific register, allocate it before |
| 5217 | // anything else. |
| 5218 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5219 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5220 | } |
| 5221 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5222 | |
| 5223 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5224 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5225 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5226 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5227 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5228 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5229 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5230 | // to be. |
| 5231 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5232 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5233 | } |
| 5234 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5235 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5236 | std::vector<SDValue> AsmNodeOperands; |
| 5237 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5238 | AsmNodeOperands.push_back( |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5239 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5240 | |
| 5241 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5242 | // Loop over all of the inputs, copying the operand values into the |
| 5243 | // appropriate registers and processing the output regs. |
| 5244 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5245 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5246 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5247 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5248 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5249 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5250 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5251 | |
| 5252 | switch (OpInfo.Type) { |
| 5253 | case InlineAsm::isOutput: { |
| 5254 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5255 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5256 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5257 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5258 | |
| 5259 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5260 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5261 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5262 | TLI.getPointerTy())); |
| 5263 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5264 | break; |
| 5265 | } |
| 5266 | |
| 5267 | // Otherwise, this is a register or register class output. |
| 5268 | |
| 5269 | // Copy the output from the appropriate register. Find a register that |
| 5270 | // we can use. |
| 5271 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5272 | llvm_report_error("Couldn't allocate output reg for" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5273 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5274 | } |
| 5275 | |
| 5276 | // If this is an indirect operand, store through the pointer after the |
| 5277 | // asm. |
| 5278 | if (OpInfo.isIndirect) { |
| 5279 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5280 | OpInfo.CallOperandVal)); |
| 5281 | } else { |
| 5282 | // This is the result value of the call. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5283 | assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) && |
| 5284 | "Bad inline asm!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5285 | // Concatenate this output onto the outputs list. |
| 5286 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5287 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5288 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5289 | // Add information to the INLINEASM node to know that this register is |
| 5290 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5291 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5292 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5293 | 2 /* REGDEF */ , |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5294 | false, |
| 5295 | 0, |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5296 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5297 | break; |
| 5298 | } |
| 5299 | case InlineAsm::isInput: { |
| 5300 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5301 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5302 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5303 | // If this is required to match an output register we have already set, |
| 5304 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5305 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5306 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5307 | // Scan until we find the definition we already emitted of this operand. |
| 5308 | // When we find it, create a RegsForValue operand. |
| 5309 | unsigned CurOp = 2; // The first operand. |
| 5310 | for (; OperandNo; --OperandNo) { |
| 5311 | // Advance to the next operand. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5312 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5313 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5314 | assert(((OpFlag & 7) == 2 /*REGDEF*/ || |
| 5315 | (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
| 5316 | (OpFlag & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5317 | "Skipped past definitions?"); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5318 | CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5319 | } |
| 5320 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5321 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5322 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5323 | if ((OpFlag & 7) == 2 /*REGDEF*/ |
| 5324 | || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
| 5325 | // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5326 | if (OpInfo.isIndirect) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5327 | llvm_report_error("Don't know how to handle tied indirect " |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5328 | "register inputs yet!"); |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5329 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5330 | RegsForValue MatchedRegs; |
| 5331 | MatchedRegs.TLI = &TLI; |
| 5332 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5333 | EVT RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5334 | MatchedRegs.RegVTs.push_back(RegVT); |
| 5335 | MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5336 | for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5337 | i != e; ++i) |
| 5338 | MatchedRegs.Regs. |
| 5339 | push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT))); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5340 | |
| 5341 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5342 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5343 | Chain, &Flag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5344 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, |
| 5345 | true, OpInfo.getMatchedOperand(), |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5346 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5347 | break; |
| 5348 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5349 | assert(((OpFlag & 7) == 4) && "Unknown matching constraint!"); |
| 5350 | assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 && |
| 5351 | "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5352 | // Add information to the INLINEASM node to know about this input. |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5353 | // See InlineAsm.h isUseOperandTiedToDef. |
| 5354 | OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5355 | AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5356 | TLI.getPointerTy())); |
| 5357 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5358 | break; |
| 5359 | } |
| 5360 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5361 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5362 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5363 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5364 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5365 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5366 | std::vector<SDValue> Ops; |
| 5367 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5368 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5369 | if (Ops.empty()) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5370 | llvm_report_error("Invalid operand for inline asm" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5371 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5372 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5373 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5374 | // Add information to the INLINEASM node to know about this input. |
| 5375 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5376 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5377 | TLI.getPointerTy())); |
| 5378 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5379 | break; |
| 5380 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5381 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5382 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5383 | "Memory operands expect pointer values"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5384 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5385 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5386 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5387 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5388 | TLI.getPointerTy())); |
| 5389 | AsmNodeOperands.push_back(InOperandVal); |
| 5390 | break; |
| 5391 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5392 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5393 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5394 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5395 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5396 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5397 | "Don't know how to handle indirect register inputs yet!"); |
| 5398 | |
| 5399 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5400 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5401 | llvm_report_error("Couldn't allocate input reg for" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5402 | " constraint '"+ OpInfo.ConstraintCode +"'!"); |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5403 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5404 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5405 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5406 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5407 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5408 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0, |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5409 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5410 | break; |
| 5411 | } |
| 5412 | case InlineAsm::isClobber: { |
| 5413 | // Add the clobbered value to the operand list, so that the register |
| 5414 | // allocator is aware that the physreg got clobbered. |
| 5415 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5416 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5417 | false, 0, DAG,AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5418 | break; |
| 5419 | } |
| 5420 | } |
| 5421 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5422 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5423 | // Finish up input operands. |
| 5424 | AsmNodeOperands[0] = Chain; |
| 5425 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5426 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5427 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5428 | DAG.getVTList(MVT::Other, MVT::Flag), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5429 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5430 | Flag = Chain.getValue(1); |
| 5431 | |
| 5432 | // If this asm returns a register value, copy the result from that register |
| 5433 | // and set it as the value of the call. |
| 5434 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5435 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5436 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5437 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5438 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5439 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5440 | EVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5441 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5442 | // If any of the results of the inline asm is a vector, it may have the |
| 5443 | // wrong width/num elts. This can happen for register classes that can |
| 5444 | // contain multiple different value types. The preg or vreg allocated may |
| 5445 | // not have the same VT as was expected. Convert it to the right type |
| 5446 | // with bit_convert. |
| 5447 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5448 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5449 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5450 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5451 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5452 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5453 | // If a result value was tied to an input value, the computed result may |
| 5454 | // have a wider width than the expected result. Extract the relevant |
| 5455 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5456 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5457 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5458 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5459 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5460 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5461 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5462 | setValue(CS.getInstruction(), Val); |
Dale Johannesen | ec65a7d | 2009-04-14 00:56:56 +0000 | [diff] [blame] | 5463 | // Don't need to use this as a chain in this case. |
| 5464 | if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) |
| 5465 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5466 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5467 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5468 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5469 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5470 | // Process indirect outputs, first output all of the flagged copies out of |
| 5471 | // physregs. |
| 5472 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5473 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5474 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5475 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5476 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5477 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5478 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5479 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5480 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5481 | // Emit the non-flagged stores from the physregs. |
| 5482 | SmallVector<SDValue, 8> OutChains; |
| 5483 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5484 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5485 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5486 | getValue(StoresToEmit[i].second), |
| 5487 | StoresToEmit[i].second, 0)); |
| 5488 | if (!OutChains.empty()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5489 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5490 | &OutChains[0], OutChains.size()); |
| 5491 | DAG.setRoot(Chain); |
| 5492 | } |
| 5493 | |
| 5494 | |
| 5495 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5496 | SDValue Src = getValue(I.getOperand(0)); |
| 5497 | |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5498 | // Scale up by the type size in the original i32 type width. Various |
| 5499 | // mid-level optimizers may make assumptions about demanded bits etc from the |
| 5500 | // i32-ness of the optimizer: we do not want to promote to i64 and then |
| 5501 | // multiply on 64-bit targets. |
| 5502 | // FIXME: Malloc inst should go away: PR715. |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5503 | uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType()); |
Chris Lattner | 50340f6 | 2009-07-23 21:26:18 +0000 | [diff] [blame] | 5504 | if (ElementSize != 1) { |
| 5505 | // Src is always 32-bits, make sure the constant fits. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5506 | assert(Src.getValueType() == MVT::i32); |
Chris Lattner | 50340f6 | 2009-07-23 21:26:18 +0000 | [diff] [blame] | 5507 | ElementSize = (uint32_t)ElementSize; |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5508 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
| 5509 | Src, DAG.getConstant(ElementSize, Src.getValueType())); |
Chris Lattner | 50340f6 | 2009-07-23 21:26:18 +0000 | [diff] [blame] | 5510 | } |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5511 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5512 | EVT IntPtr = TLI.getPointerTy(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5513 | |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 5514 | Src = DAG.getZExtOrTrunc(Src, getCurDebugLoc(), IntPtr); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5515 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5516 | TargetLowering::ArgListTy Args; |
| 5517 | TargetLowering::ArgListEntry Entry; |
| 5518 | Entry.Node = Src; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5519 | Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5520 | Args.push_back(Entry); |
| 5521 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5522 | bool isTailCall = PerformTailCallOpt && |
| 5523 | isInTailCallPosition(&I, Attribute::None, TLI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5524 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5525 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5526 | 0, CallingConv::C, isTailCall, |
| 5527 | /*isReturnValueUsed=*/true, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5528 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5529 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5530 | if (Result.first.getNode()) |
| 5531 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5532 | if (Result.second.getNode()) |
| 5533 | DAG.setRoot(Result.second); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5534 | } |
| 5535 | |
| 5536 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5537 | TargetLowering::ArgListTy Args; |
| 5538 | TargetLowering::ArgListEntry Entry; |
| 5539 | Entry.Node = getValue(I.getOperand(0)); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5540 | Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5541 | Args.push_back(Entry); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5542 | EVT IntPtr = TLI.getPointerTy(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5543 | bool isTailCall = PerformTailCallOpt && |
| 5544 | isInTailCallPosition(&I, Attribute::None, TLI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5545 | std::pair<SDValue,SDValue> Result = |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5546 | TLI.LowerCallTo(getRoot(), Type::getVoidTy(*DAG.getContext()), |
| 5547 | false, false, false, false, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5548 | 0, CallingConv::C, isTailCall, |
| 5549 | /*isReturnValueUsed=*/true, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5550 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5551 | getCurDebugLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5552 | if (Result.second.getNode()) |
| 5553 | DAG.setRoot(Result.second); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5554 | } |
| 5555 | |
| 5556 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5557 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5558 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5559 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5560 | DAG.getSrcValue(I.getOperand(1)))); |
| 5561 | } |
| 5562 | |
| 5563 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5564 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5565 | getRoot(), getValue(I.getOperand(0)), |
| 5566 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5567 | setValue(&I, V); |
| 5568 | DAG.setRoot(V.getValue(1)); |
| 5569 | } |
| 5570 | |
| 5571 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5572 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5573 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5574 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5575 | DAG.getSrcValue(I.getOperand(1)))); |
| 5576 | } |
| 5577 | |
| 5578 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5579 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5580 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5581 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5582 | getValue(I.getOperand(2)), |
| 5583 | DAG.getSrcValue(I.getOperand(1)), |
| 5584 | DAG.getSrcValue(I.getOperand(2)))); |
| 5585 | } |
| 5586 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5587 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5588 | /// implementation, which just calls LowerCall. |
| 5589 | /// FIXME: When all targets are |
| 5590 | /// migrated to using LowerCall, this hook should be integrated into SDISel. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5591 | std::pair<SDValue, SDValue> |
| 5592 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5593 | bool RetSExt, bool RetZExt, bool isVarArg, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5594 | bool isInreg, unsigned NumFixedArgs, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 5595 | CallingConv::ID CallConv, bool isTailCall, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5596 | bool isReturnValueUsed, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5597 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5598 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5599 | |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5600 | assert((!isTailCall || PerformTailCallOpt) && |
| 5601 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5602 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5603 | // Handle all of the outgoing arguments. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5604 | SmallVector<ISD::OutputArg, 32> Outs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5605 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5606 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5607 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5608 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5609 | Value != NumValues; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5610 | EVT VT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5611 | const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext()); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5612 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5613 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5614 | ISD::ArgFlagsTy Flags; |
| 5615 | unsigned OriginalAlignment = |
| 5616 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5617 | |
| 5618 | if (Args[i].isZExt) |
| 5619 | Flags.setZExt(); |
| 5620 | if (Args[i].isSExt) |
| 5621 | Flags.setSExt(); |
| 5622 | if (Args[i].isInReg) |
| 5623 | Flags.setInReg(); |
| 5624 | if (Args[i].isSRet) |
| 5625 | Flags.setSRet(); |
| 5626 | if (Args[i].isByVal) { |
| 5627 | Flags.setByVal(); |
| 5628 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5629 | const Type *ElementTy = Ty->getElementType(); |
| 5630 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5631 | unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5632 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5633 | // info is not there but there are cases it cannot get right. |
| 5634 | if (Args[i].Alignment) |
| 5635 | FrameAlign = Args[i].Alignment; |
| 5636 | Flags.setByValAlign(FrameAlign); |
| 5637 | Flags.setByValSize(FrameSize); |
| 5638 | } |
| 5639 | if (Args[i].isNest) |
| 5640 | Flags.setNest(); |
| 5641 | Flags.setOrigAlign(OriginalAlignment); |
| 5642 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5643 | EVT PartVT = getRegisterType(RetTy->getContext(), VT); |
| 5644 | unsigned NumParts = getNumRegisters(RetTy->getContext(), VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5645 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5646 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5647 | |
| 5648 | if (Args[i].isSExt) |
| 5649 | ExtendKind = ISD::SIGN_EXTEND; |
| 5650 | else if (Args[i].isZExt) |
| 5651 | ExtendKind = ISD::ZERO_EXTEND; |
| 5652 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5653 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5654 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5655 | for (unsigned j = 0; j != NumParts; ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5656 | // if it isn't first piece, alignment must be 1 |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5657 | ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs); |
| 5658 | if (NumParts > 1 && j == 0) |
| 5659 | MyFlags.Flags.setSplit(); |
| 5660 | else if (j != 0) |
| 5661 | MyFlags.Flags.setOrigAlign(1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5662 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5663 | Outs.push_back(MyFlags); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5664 | } |
| 5665 | } |
| 5666 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5667 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5668 | // Handle the incoming return values from the call. |
| 5669 | SmallVector<ISD::InputArg, 32> Ins; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5670 | SmallVector<EVT, 4> RetTys; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5671 | ComputeValueVTs(*this, RetTy, RetTys); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5672 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5673 | EVT VT = RetTys[I]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5674 | EVT RegisterVT = getRegisterType(RetTy->getContext(), VT); |
| 5675 | unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5676 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5677 | ISD::InputArg MyFlags; |
| 5678 | MyFlags.VT = RegisterVT; |
| 5679 | MyFlags.Used = isReturnValueUsed; |
| 5680 | if (RetSExt) |
| 5681 | MyFlags.Flags.setSExt(); |
| 5682 | if (RetZExt) |
| 5683 | MyFlags.Flags.setZExt(); |
| 5684 | if (isInreg) |
| 5685 | MyFlags.Flags.setInReg(); |
| 5686 | Ins.push_back(MyFlags); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5687 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5688 | } |
| 5689 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5690 | // Check if target-dependent constraints permit a tail call here. |
| 5691 | // Target-independent constraints should be checked by the caller. |
| 5692 | if (isTailCall && |
| 5693 | !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG)) |
| 5694 | isTailCall = false; |
| 5695 | |
| 5696 | SmallVector<SDValue, 4> InVals; |
| 5697 | Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall, |
| 5698 | Outs, Ins, dl, DAG, InVals); |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5699 | |
| 5700 | // Verify that the target's LowerCall behaved as expected. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5701 | assert(Chain.getNode() && Chain.getValueType() == MVT::Other && |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5702 | "LowerCall didn't return a valid chain!"); |
| 5703 | assert((!isTailCall || InVals.empty()) && |
| 5704 | "LowerCall emitted a return value for a tail call!"); |
| 5705 | assert((isTailCall || InVals.size() == Ins.size()) && |
| 5706 | "LowerCall didn't emit the correct number of values!"); |
| 5707 | DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) { |
| 5708 | assert(InVals[i].getNode() && |
| 5709 | "LowerCall emitted a null value!"); |
| 5710 | assert(Ins[i].VT == InVals[i].getValueType() && |
| 5711 | "LowerCall emitted a value with the wrong type!"); |
| 5712 | }); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5713 | |
| 5714 | // For a tail call, the return value is merely live-out and there aren't |
| 5715 | // any nodes in the DAG representing it. Return a special value to |
| 5716 | // indicate that a tail call has been emitted and no more Instructions |
| 5717 | // should be processed in the current block. |
| 5718 | if (isTailCall) { |
| 5719 | DAG.setRoot(Chain); |
| 5720 | return std::make_pair(SDValue(), SDValue()); |
| 5721 | } |
| 5722 | |
| 5723 | // Collect the legal value parts into potentially illegal values |
| 5724 | // that correspond to the original function's return values. |
| 5725 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5726 | if (RetSExt) |
| 5727 | AssertOp = ISD::AssertSext; |
| 5728 | else if (RetZExt) |
| 5729 | AssertOp = ISD::AssertZext; |
| 5730 | SmallVector<SDValue, 4> ReturnValues; |
| 5731 | unsigned CurReg = 0; |
| 5732 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5733 | EVT VT = RetTys[I]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5734 | EVT RegisterVT = getRegisterType(RetTy->getContext(), VT); |
| 5735 | unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5736 | |
| 5737 | SDValue ReturnValue = |
| 5738 | getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT, |
| 5739 | AssertOp); |
| 5740 | ReturnValues.push_back(ReturnValue); |
| 5741 | CurReg += NumRegs; |
| 5742 | } |
| 5743 | |
| 5744 | // For a function returning void, there is no return value. We can't create |
| 5745 | // such a node, so we just return a null return value in that case. In |
| 5746 | // that case, nothing will actualy look at the value. |
| 5747 | if (ReturnValues.empty()) |
| 5748 | return std::make_pair(SDValue(), Chain); |
| 5749 | |
| 5750 | SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
| 5751 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5752 | &ReturnValues[0], ReturnValues.size()); |
| 5753 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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 | c23197a | 2009-07-14 16:55:14 +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 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5778 | RegsForValue RFV(V->getContext(), TLI, Reg, V->getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5790 | SelectionDAG &DAG = SDL->DAG; |
| 5791 | SDValue OldRoot = DAG.getRoot(); |
| 5792 | DebugLoc dl = SDL->getCurDebugLoc(); |
| 5793 | const TargetData *TD = TLI.getTargetData(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5794 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5795 | // Set up the incoming argument description vector. |
| 5796 | SmallVector<ISD::InputArg, 16> Ins; |
| 5797 | unsigned Idx = 1; |
| 5798 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5799 | I != E; ++I, ++Idx) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5800 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5801 | ComputeValueVTs(TLI, I->getType(), ValueVTs); |
| 5802 | bool isArgValueUsed = !I->use_empty(); |
| 5803 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5804 | Value != NumValues; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5805 | EVT VT = ValueVTs[Value]; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5806 | const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5807 | ISD::ArgFlagsTy Flags; |
| 5808 | unsigned OriginalAlignment = |
| 5809 | TD->getABITypeAlignment(ArgTy); |
| 5810 | |
| 5811 | if (F.paramHasAttr(Idx, Attribute::ZExt)) |
| 5812 | Flags.setZExt(); |
| 5813 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
| 5814 | Flags.setSExt(); |
| 5815 | if (F.paramHasAttr(Idx, Attribute::InReg)) |
| 5816 | Flags.setInReg(); |
| 5817 | if (F.paramHasAttr(Idx, Attribute::StructRet)) |
| 5818 | Flags.setSRet(); |
| 5819 | if (F.paramHasAttr(Idx, Attribute::ByVal)) { |
| 5820 | Flags.setByVal(); |
| 5821 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5822 | const Type *ElementTy = Ty->getElementType(); |
| 5823 | unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy); |
| 5824 | unsigned FrameSize = TD->getTypeAllocSize(ElementTy); |
| 5825 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5826 | // this info is not there but there are cases it cannot get right. |
| 5827 | if (F.getParamAlignment(Idx)) |
| 5828 | FrameAlign = F.getParamAlignment(Idx); |
| 5829 | Flags.setByValAlign(FrameAlign); |
| 5830 | Flags.setByValSize(FrameSize); |
| 5831 | } |
| 5832 | if (F.paramHasAttr(Idx, Attribute::Nest)) |
| 5833 | Flags.setNest(); |
| 5834 | Flags.setOrigAlign(OriginalAlignment); |
| 5835 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5836 | EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT); |
| 5837 | unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5838 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5839 | ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed); |
| 5840 | if (NumRegs > 1 && i == 0) |
| 5841 | MyFlags.Flags.setSplit(); |
| 5842 | // if it isn't first piece, alignment must be 1 |
| 5843 | else if (i > 0) |
| 5844 | MyFlags.Flags.setOrigAlign(1); |
| 5845 | Ins.push_back(MyFlags); |
| 5846 | } |
| 5847 | } |
| 5848 | } |
| 5849 | |
| 5850 | // Call the target to set up the argument values. |
| 5851 | SmallVector<SDValue, 8> InVals; |
| 5852 | SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(), |
| 5853 | F.isVarArg(), Ins, |
| 5854 | dl, DAG, InVals); |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5855 | |
| 5856 | // Verify that the target's LowerFormalArguments behaved as expected. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5857 | assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other && |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5858 | "LowerFormalArguments didn't return a valid chain!"); |
| 5859 | assert(InVals.size() == Ins.size() && |
| 5860 | "LowerFormalArguments didn't emit the correct number of values!"); |
| 5861 | DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) { |
| 5862 | assert(InVals[i].getNode() && |
| 5863 | "LowerFormalArguments emitted a null value!"); |
| 5864 | assert(Ins[i].VT == InVals[i].getValueType() && |
| 5865 | "LowerFormalArguments emitted a value with the wrong type!"); |
| 5866 | }); |
| 5867 | |
| 5868 | // Update the DAG with the new chain value resulting from argument lowering. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5869 | DAG.setRoot(NewRoot); |
| 5870 | |
| 5871 | // Set up the argument values. |
| 5872 | unsigned i = 0; |
| 5873 | Idx = 1; |
| 5874 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; |
| 5875 | ++I, ++Idx) { |
| 5876 | SmallVector<SDValue, 4> ArgValues; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5877 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5878 | ComputeValueVTs(TLI, I->getType(), ValueVTs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5879 | unsigned NumValues = ValueVTs.size(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5880 | for (unsigned Value = 0; Value != NumValues; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5881 | EVT VT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5882 | EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT); |
| 5883 | unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5884 | |
| 5885 | if (!I->use_empty()) { |
| 5886 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5887 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
| 5888 | AssertOp = ISD::AssertSext; |
| 5889 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
| 5890 | AssertOp = ISD::AssertZext; |
| 5891 | |
| 5892 | ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts, |
| 5893 | PartVT, VT, AssertOp)); |
| 5894 | } |
| 5895 | i += NumParts; |
| 5896 | } |
| 5897 | if (!I->use_empty()) { |
| 5898 | SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues, |
| 5899 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5900 | // If this argument is live outside of the entry block, insert a copy from |
| 5901 | // whereever we got it to the vreg that other BB's will reference it as. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5902 | SDL->CopyToExportRegsIfNeeded(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5903 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5904 | } |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5905 | assert(i == InVals.size() && "Argument register count mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5906 | |
| 5907 | // Finally, if the target has anything special to do, allow it to do so. |
| 5908 | // FIXME: this should insert code into the DAG! |
| 5909 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5910 | } |
| 5911 | |
| 5912 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5913 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5914 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5915 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5916 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5917 | /// the end. |
| 5918 | /// |
| 5919 | void |
| 5920 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5921 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5922 | |
| 5923 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5924 | |
| 5925 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5926 | // from this block. |
| 5927 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5928 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5929 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5930 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5931 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5932 | // If this terminator has multiple identical successors (common for |
| 5933 | // switches), only handle each succ once. |
| 5934 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5935 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5936 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5937 | PHINode *PN; |
| 5938 | |
| 5939 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5940 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5941 | // emitted yet. |
| 5942 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5943 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5944 | // Ignore dead phi's. |
| 5945 | if (PN->use_empty()) continue; |
| 5946 | |
| 5947 | unsigned Reg; |
| 5948 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5949 | |
| 5950 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5951 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5952 | if (RegOut == 0) { |
| 5953 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5954 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5955 | } |
| 5956 | Reg = RegOut; |
| 5957 | } else { |
| 5958 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5959 | if (Reg == 0) { |
| 5960 | assert(isa<AllocaInst>(PHIOp) && |
| 5961 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5962 | "Didn't codegen value into a register!??"); |
| 5963 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5964 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5965 | } |
| 5966 | } |
| 5967 | |
| 5968 | // Remember that this register needs to added to the machine PHI node as |
| 5969 | // the input for this MBB. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5970 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5971 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5972 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5973 | EVT VT = ValueVTs[vti]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5974 | unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5975 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5976 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5977 | Reg += NumRegisters; |
| 5978 | } |
| 5979 | } |
| 5980 | } |
| 5981 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5982 | } |
| 5983 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5984 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5985 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5986 | /// creating SelectionDAG nodes. |
| 5987 | /// |
| 5988 | bool |
| 5989 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 5990 | FastISel *F) { |
| 5991 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5992 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5993 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5994 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 5995 | |
| 5996 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5997 | // from this block. |
| 5998 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5999 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 6000 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 6001 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6002 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6003 | // If this terminator has multiple identical successors (common for |
| 6004 | // switches), only handle each succ once. |
| 6005 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6006 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6007 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 6008 | PHINode *PN; |
| 6009 | |
| 6010 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 6011 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 6012 | // emitted yet. |
| 6013 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 6014 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 6015 | // Ignore dead phi's. |
| 6016 | if (PN->use_empty()) continue; |
| 6017 | |
| 6018 | // Only handle legal types. Two interesting things to note here. First, |
| 6019 | // by bailing out early, we may leave behind some dead instructions, |
| 6020 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 6021 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 6022 | // use CreateRegForValue to create registers, so it always creates |
| 6023 | // exactly one register for each non-void instruction. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6024 | EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6025 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
| 6026 | // Promote MVT::i1. |
| 6027 | if (VT == MVT::i1) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 6028 | VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT); |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 6029 | else { |
| 6030 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6031 | return false; |
| 6032 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6033 | } |
| 6034 | |
| 6035 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 6036 | |
| 6037 | unsigned Reg = F->getRegForValue(PHIOp); |
| 6038 | if (Reg == 0) { |
| 6039 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6040 | return false; |
| 6041 | } |
| 6042 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 6043 | } |
| 6044 | } |
| 6045 | |
| 6046 | return true; |
| 6047 | } |