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(); |
| 754 | DAG.clear(); |
Bill Wendling | 8fcf170 | 2009-02-06 21:36:23 +0000 | [diff] [blame] | 755 | CurDebugLoc = DebugLoc::getUnknownLoc(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 756 | HasTailCall = false; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 760 | /// flushing any PendingLoad items. This must be done before emitting |
| 761 | /// a store or any other node that may need to be ordered after any |
| 762 | /// prior load instructions. |
| 763 | /// |
| 764 | SDValue SelectionDAGLowering::getRoot() { |
| 765 | if (PendingLoads.empty()) |
| 766 | return DAG.getRoot(); |
| 767 | |
| 768 | if (PendingLoads.size() == 1) { |
| 769 | SDValue Root = PendingLoads[0]; |
| 770 | DAG.setRoot(Root); |
| 771 | PendingLoads.clear(); |
| 772 | return Root; |
| 773 | } |
| 774 | |
| 775 | // Otherwise, we have to make a token factor node. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 776 | SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 777 | &PendingLoads[0], PendingLoads.size()); |
| 778 | PendingLoads.clear(); |
| 779 | DAG.setRoot(Root); |
| 780 | return Root; |
| 781 | } |
| 782 | |
| 783 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 784 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 785 | /// to do this before emitting a terminator instruction. |
| 786 | /// |
| 787 | SDValue SelectionDAGLowering::getControlRoot() { |
| 788 | SDValue Root = DAG.getRoot(); |
| 789 | |
| 790 | if (PendingExports.empty()) |
| 791 | return Root; |
| 792 | |
| 793 | // Turn all of the CopyToReg chains into one factored node. |
| 794 | if (Root.getOpcode() != ISD::EntryToken) { |
| 795 | unsigned i = 0, e = PendingExports.size(); |
| 796 | for (; i != e; ++i) { |
| 797 | assert(PendingExports[i].getNode()->getNumOperands() > 1); |
| 798 | if (PendingExports[i].getNode()->getOperand(0) == Root) |
| 799 | break; // Don't add the root if we already indirectly depend on it. |
| 800 | } |
| 801 | |
| 802 | if (i == e) |
| 803 | PendingExports.push_back(Root); |
| 804 | } |
| 805 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 806 | Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 807 | &PendingExports[0], |
| 808 | PendingExports.size()); |
| 809 | PendingExports.clear(); |
| 810 | DAG.setRoot(Root); |
| 811 | return Root; |
| 812 | } |
| 813 | |
| 814 | void SelectionDAGLowering::visit(Instruction &I) { |
| 815 | visit(I.getOpcode(), I); |
| 816 | } |
| 817 | |
| 818 | void SelectionDAGLowering::visit(unsigned Opcode, User &I) { |
| 819 | // Note: this doesn't use InstVisitor, because it has to work with |
| 820 | // ConstantExpr's in addition to instructions. |
| 821 | switch (Opcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 822 | default: llvm_unreachable("Unknown instruction type encountered!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 823 | // Build the switch statement using the Instruction.def file. |
| 824 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 825 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 826 | #include "llvm/Instruction.def" |
| 827 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 828 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 829 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 830 | SDValue SelectionDAGLowering::getValue(const Value *V) { |
| 831 | SDValue &N = NodeMap[V]; |
| 832 | if (N.getNode()) return N; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 833 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 834 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 835 | EVT VT = TLI.getValueType(V->getType(), true); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 836 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 837 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 838 | return N = DAG.getConstant(*CI, VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 839 | |
| 840 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 841 | return N = DAG.getGlobalAddress(GV, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 842 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 843 | if (isa<ConstantPointerNull>(C)) |
| 844 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 845 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 846 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 847 | return N = DAG.getConstantFP(*CFP, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 848 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 849 | if (isa<UndefValue>(C) && !V->getType()->isAggregateType()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 850 | return N = DAG.getUNDEF(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 851 | |
| 852 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 853 | visit(CE->getOpcode(), *CE); |
| 854 | SDValue N1 = NodeMap[V]; |
| 855 | assert(N1.getNode() && "visit didn't populate the ValueMap!"); |
| 856 | return N1; |
| 857 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 858 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 859 | if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { |
| 860 | SmallVector<SDValue, 4> Constants; |
| 861 | for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); |
| 862 | OI != OE; ++OI) { |
| 863 | SDNode *Val = getValue(*OI).getNode(); |
| 864 | for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) |
| 865 | Constants.push_back(SDValue(Val, i)); |
| 866 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 867 | return DAG.getMergeValues(&Constants[0], Constants.size(), |
| 868 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) { |
| 872 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 873 | "Unknown struct or array constant!"); |
| 874 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 875 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 876 | ComputeValueVTs(TLI, C->getType(), ValueVTs); |
| 877 | unsigned NumElts = ValueVTs.size(); |
| 878 | if (NumElts == 0) |
| 879 | return SDValue(); // empty struct |
| 880 | SmallVector<SDValue, 4> Constants(NumElts); |
| 881 | for (unsigned i = 0; i != NumElts; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 882 | EVT EltVT = ValueVTs[i]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 883 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 884 | Constants[i] = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 885 | else if (EltVT.isFloatingPoint()) |
| 886 | Constants[i] = DAG.getConstantFP(0, EltVT); |
| 887 | else |
| 888 | Constants[i] = DAG.getConstant(0, EltVT); |
| 889 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 890 | return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | const VectorType *VecTy = cast<VectorType>(V->getType()); |
| 894 | unsigned NumElements = VecTy->getNumElements(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 895 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 896 | // Now that we know the number and type of the elements, get that number of |
| 897 | // elements into the Ops array based on what kind of constant it is. |
| 898 | SmallVector<SDValue, 16> Ops; |
| 899 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { |
| 900 | for (unsigned i = 0; i != NumElements; ++i) |
| 901 | Ops.push_back(getValue(CP->getOperand(i))); |
| 902 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 903 | assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 904 | EVT EltVT = TLI.getValueType(VecTy->getElementType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 905 | |
| 906 | SDValue Op; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 907 | if (EltVT.isFloatingPoint()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 908 | Op = DAG.getConstantFP(0, EltVT); |
| 909 | else |
| 910 | Op = DAG.getConstant(0, EltVT); |
| 911 | Ops.assign(NumElements, Op); |
| 912 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 913 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 914 | // Create a BUILD_VECTOR node. |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 915 | return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 916 | VT, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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 | // If this is a static alloca, generate it as the frameindex instead of |
| 920 | // computation. |
| 921 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 922 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 923 | FuncInfo.StaticAllocaMap.find(AI); |
| 924 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 925 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 926 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 927 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 928 | unsigned InReg = FuncInfo.ValueMap[V]; |
| 929 | assert(InReg && "Value not in map!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 930 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 931 | RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 932 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 933 | return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | |
| 937 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 938 | SDValue Chain = getControlRoot(); |
| 939 | SmallVector<ISD::OutputArg, 8> Outs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 940 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 941 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 942 | ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 943 | unsigned NumValues = ValueVTs.size(); |
| 944 | if (NumValues == 0) continue; |
| 945 | |
| 946 | SDValue RetOp = getValue(I.getOperand(i)); |
| 947 | for (unsigned j = 0, f = NumValues; j != f; ++j) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 948 | EVT VT = ValueVTs[j]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 949 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 950 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 951 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 952 | const Function *F = I.getParent()->getParent(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 953 | if (F->paramHasAttr(0, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 954 | ExtendKind = ISD::SIGN_EXTEND; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 955 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 956 | ExtendKind = ISD::ZERO_EXTEND; |
| 957 | |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 958 | // FIXME: C calling convention requires the return type to be promoted to |
| 959 | // at least 32-bit. But this is not necessary for non-C calling |
| 960 | // conventions. The frontend should mark functions whose return values |
| 961 | // require promoting with signext or zeroext attributes. |
| 962 | if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 963 | EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32); |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 964 | if (VT.bitsLT(MinVT)) |
| 965 | VT = MinVT; |
| 966 | } |
| 967 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 968 | unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT); |
| 969 | EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT); |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 970 | SmallVector<SDValue, 4> Parts(NumParts); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 971 | getCopyToParts(DAG, getCurDebugLoc(), |
| 972 | SDValue(RetOp.getNode(), RetOp.getResNo() + j), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 973 | &Parts[0], NumParts, PartVT, ExtendKind); |
| 974 | |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 975 | // 'inreg' on function refers to return value |
| 976 | ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 977 | if (F->paramHasAttr(0, Attribute::InReg)) |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 978 | Flags.setInReg(); |
Anton Korobeynikov | 0692fab | 2009-07-16 13:35:48 +0000 | [diff] [blame] | 979 | |
| 980 | // Propagate extension type if any |
| 981 | if (F->paramHasAttr(0, Attribute::SExt)) |
| 982 | Flags.setSExt(); |
| 983 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
| 984 | Flags.setZExt(); |
| 985 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 986 | for (unsigned i = 0; i < NumParts; ++i) |
| 987 | Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 988 | } |
| 989 | } |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 990 | |
| 991 | bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); |
| 992 | unsigned CallConv = DAG.getMachineFunction().getFunction()->getCallingConv(); |
| 993 | Chain = TLI.LowerReturn(Chain, CallConv, isVarArg, |
| 994 | Outs, getCurDebugLoc(), DAG); |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 995 | |
| 996 | // Verify that the target's LowerReturn behaved as expected. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 997 | assert(Chain.getNode() && Chain.getValueType() == MVT::Other && |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 998 | "LowerReturn didn't return a valid chain!"); |
| 999 | |
| 1000 | // Update the DAG with the new chain value resulting from return lowering. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1001 | DAG.setRoot(Chain); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1002 | } |
| 1003 | |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1004 | /// CopyToExportRegsIfNeeded - If the given value has virtual registers |
| 1005 | /// created for it, emit nodes to copy the value into the virtual |
| 1006 | /// registers. |
| 1007 | void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) { |
| 1008 | if (!V->use_empty()) { |
| 1009 | DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); |
| 1010 | if (VMI != FuncInfo.ValueMap.end()) |
| 1011 | CopyValueToVirtualRegister(V, VMI->second); |
| 1012 | } |
| 1013 | } |
| 1014 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1015 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1016 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1017 | /// CopyTo/FromReg. |
| 1018 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1019 | // No need to export constants. |
| 1020 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1021 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1022 | // Already exported? |
| 1023 | if (FuncInfo.isExportedInst(V)) return; |
| 1024 | |
| 1025 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1026 | CopyValueToVirtualRegister(V, Reg); |
| 1027 | } |
| 1028 | |
| 1029 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1030 | const BasicBlock *FromBB) { |
| 1031 | // The operands of the setcc have to be in this block. We don't know |
| 1032 | // how to export them from some other block. |
| 1033 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1034 | // Can export from current BB. |
| 1035 | if (VI->getParent() == FromBB) |
| 1036 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1037 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1038 | // Is already exported, noop. |
| 1039 | return FuncInfo.isExportedInst(V); |
| 1040 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1041 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1042 | // If this is an argument, we can export it if the BB is the entry block or |
| 1043 | // if it is already exported. |
| 1044 | if (isa<Argument>(V)) { |
| 1045 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1046 | return true; |
| 1047 | |
| 1048 | // Otherwise, can only export this if it is already exported. |
| 1049 | return FuncInfo.isExportedInst(V); |
| 1050 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1051 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1052 | // Otherwise, constants can always be exported. |
| 1053 | return true; |
| 1054 | } |
| 1055 | |
| 1056 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1057 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1058 | return I->getParent() == BB; |
| 1059 | return true; |
| 1060 | } |
| 1061 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1062 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1063 | /// the given LLVM IR floating-point condition code. This includes |
| 1064 | /// consideration of global floating-point math flags. |
| 1065 | /// |
| 1066 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1067 | ISD::CondCode FPC, FOC; |
| 1068 | switch (Pred) { |
| 1069 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1070 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1071 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1072 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1073 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1074 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1075 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1076 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1077 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1078 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1079 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1080 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1081 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1082 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1083 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1084 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1085 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1086 | llvm_unreachable("Invalid FCmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1087 | FOC = FPC = ISD::SETFALSE; |
| 1088 | break; |
| 1089 | } |
| 1090 | if (FiniteOnlyFPMath()) |
| 1091 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1092 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1093 | return FPC; |
| 1094 | } |
| 1095 | |
| 1096 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1097 | /// the given LLVM IR integer condition code. |
| 1098 | /// |
| 1099 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1100 | switch (Pred) { |
| 1101 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1102 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1103 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1104 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1105 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1106 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1107 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1108 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1109 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1110 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1111 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1112 | llvm_unreachable("Invalid ICmp predicate opcode!"); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1113 | return ISD::SETNE; |
| 1114 | } |
| 1115 | } |
| 1116 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1117 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1118 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1119 | /// AND operator tree. |
| 1120 | /// |
| 1121 | void |
| 1122 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1123 | MachineBasicBlock *TBB, |
| 1124 | MachineBasicBlock *FBB, |
| 1125 | MachineBasicBlock *CurBB) { |
| 1126 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1127 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1128 | // If the leaf of the tree is a comparison, merge the condition into |
| 1129 | // the caseblock. |
| 1130 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1131 | // The operands of the cmp have to be in this block. We don't know |
| 1132 | // how to export them from some other block. If this is the first block |
| 1133 | // of the sequence, no exporting is needed. |
| 1134 | if (CurBB == CurMBB || |
| 1135 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1136 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1137 | ISD::CondCode Condition; |
| 1138 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1139 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1140 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1141 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1142 | } else { |
| 1143 | Condition = ISD::SETEQ; // silence warning. |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1144 | llvm_unreachable("Unknown compare instruction"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1145 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1146 | |
| 1147 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1148 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1149 | SwitchCases.push_back(CB); |
| 1150 | return; |
| 1151 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | // Create a CaseBlock record representing this branch. |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1155 | CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()), |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1156 | NULL, TBB, FBB, CurBB); |
| 1157 | SwitchCases.push_back(CB); |
| 1158 | } |
| 1159 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1160 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1161 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1162 | MachineBasicBlock *TBB, |
| 1163 | MachineBasicBlock *FBB, |
| 1164 | MachineBasicBlock *CurBB, |
| 1165 | unsigned Opc) { |
| 1166 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1167 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1168 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1169 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1170 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1171 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1172 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1173 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1174 | return; |
| 1175 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1176 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1177 | // Create TmpBB after CurBB. |
| 1178 | MachineFunction::iterator BBI = CurBB; |
| 1179 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1180 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1181 | CurBB->getParent()->insert(++BBI, TmpBB); |
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 | if (Opc == Instruction::Or) { |
| 1184 | // Codegen X | Y as: |
| 1185 | // jmp_if_X TBB |
| 1186 | // jmp TmpBB |
| 1187 | // TmpBB: |
| 1188 | // jmp_if_Y TBB |
| 1189 | // jmp FBB |
| 1190 | // |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1191 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1192 | // Emit the LHS condition. |
| 1193 | FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1194 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1195 | // Emit the RHS condition into TmpBB. |
| 1196 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1197 | } else { |
| 1198 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1199 | // Codegen X & Y as: |
| 1200 | // jmp_if_X TmpBB |
| 1201 | // jmp FBB |
| 1202 | // TmpBB: |
| 1203 | // jmp_if_Y TBB |
| 1204 | // jmp FBB |
| 1205 | // |
| 1206 | // This requires creation of TmpBB after CurBB. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1207 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1208 | // Emit the LHS condition. |
| 1209 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1210 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1211 | // Emit the RHS condition into TmpBB. |
| 1212 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1213 | } |
| 1214 | } |
| 1215 | |
| 1216 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1217 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1218 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1219 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1220 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1221 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1222 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1223 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1224 | // will get folded into a single comparison, so don't emit two blocks. |
| 1225 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1226 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1227 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1228 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1229 | return false; |
| 1230 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1231 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1232 | return true; |
| 1233 | } |
| 1234 | |
| 1235 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1236 | // Update machine-CFG edges. |
| 1237 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1238 | |
| 1239 | // Figure out which block is immediately after the current one. |
| 1240 | MachineBasicBlock *NextBlock = 0; |
| 1241 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1242 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1243 | NextBlock = BBI; |
| 1244 | |
| 1245 | if (I.isUnconditional()) { |
| 1246 | // Update machine-CFG edges. |
| 1247 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1248 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1249 | // If this is not a fall-through branch, emit the branch. |
| 1250 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1251 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1252 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1253 | DAG.getBasicBlock(Succ0MBB))); |
| 1254 | return; |
| 1255 | } |
| 1256 | |
| 1257 | // If this condition is one of the special cases we handle, do special stuff |
| 1258 | // now. |
| 1259 | Value *CondVal = I.getCondition(); |
| 1260 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1261 | |
| 1262 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1263 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1264 | // For example, instead of something like: |
| 1265 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1266 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1267 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1268 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1269 | // or C, F |
| 1270 | // jnz foo |
| 1271 | // Emit: |
| 1272 | // cmp A, B |
| 1273 | // je foo |
| 1274 | // cmp D, E |
| 1275 | // jle foo |
| 1276 | // |
| 1277 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1278 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1279 | (BOp->getOpcode() == Instruction::And || |
| 1280 | BOp->getOpcode() == Instruction::Or)) { |
| 1281 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1282 | // If the compares in later blocks need to use values not currently |
| 1283 | // exported from this block, export them now. This block should always |
| 1284 | // be the first entry. |
| 1285 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1286 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1287 | // Allow some cases to be rejected. |
| 1288 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1289 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1290 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1291 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1292 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1293 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1294 | // Emit the branch for this block. |
| 1295 | visitSwitchCase(SwitchCases[0]); |
| 1296 | SwitchCases.erase(SwitchCases.begin()); |
| 1297 | return; |
| 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 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1301 | // SwitchCases. |
| 1302 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1303 | FuncInfo.MF->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1304 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1305 | SwitchCases.clear(); |
| 1306 | } |
| 1307 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1308 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1309 | // Create a CaseBlock record representing this branch. |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1310 | CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1311 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1312 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1313 | // cond branch. |
| 1314 | visitSwitchCase(CB); |
| 1315 | } |
| 1316 | |
| 1317 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1318 | /// the binary search tree resulting from lowering a switch instruction. |
| 1319 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1320 | SDValue Cond; |
| 1321 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1322 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1323 | |
| 1324 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1325 | if (CB.CmpMHS == NULL) { |
| 1326 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1327 | // handle common cases produced by branch lowering. |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1328 | if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) && |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame] | 1329 | CB.CC == ISD::SETEQ) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1330 | Cond = CondLHS; |
Owen Anderson | 5defacc | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 1331 | else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) && |
Owen Anderson | f53c371 | 2009-07-21 02:47:59 +0000 | [diff] [blame] | 1332 | CB.CC == ISD::SETEQ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1333 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1334 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1335 | } else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1336 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1337 | } else { |
| 1338 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1339 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1340 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1341 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1342 | |
| 1343 | SDValue CmpOp = getValue(CB.CmpMHS); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1344 | EVT VT = CmpOp.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1345 | |
| 1346 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1347 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1348 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1349 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1350 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1351 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1352 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1353 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1354 | } |
| 1355 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1356 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1357 | // Update successor info |
| 1358 | CurMBB->addSuccessor(CB.TrueBB); |
| 1359 | CurMBB->addSuccessor(CB.FalseBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1360 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1361 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1362 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1363 | MachineBasicBlock *NextBlock = 0; |
| 1364 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1365 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1366 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1367 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1368 | // If the lhs block is the next block, invert the condition so that we can |
| 1369 | // fall through to the lhs instead of the rhs block. |
| 1370 | if (CB.TrueBB == NextBlock) { |
| 1371 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1372 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1373 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1374 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1375 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1376 | MVT::Other, getControlRoot(), Cond, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1377 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1378 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1379 | // If the branch was constant folded, fix up the CFG. |
| 1380 | if (BrCond.getOpcode() == ISD::BR) { |
| 1381 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1382 | DAG.setRoot(BrCond); |
| 1383 | } else { |
| 1384 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1385 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1386 | CurMBB->removeSuccessor(CB.TrueBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1387 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1388 | if (CB.FalseBB == NextBlock) |
| 1389 | DAG.setRoot(BrCond); |
| 1390 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1391 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1392 | DAG.getBasicBlock(CB.FalseBB))); |
| 1393 | } |
| 1394 | } |
| 1395 | |
| 1396 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1397 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1398 | // Emit the code for the jump table |
| 1399 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1400 | EVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1401 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1402 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1403 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1404 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1405 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1406 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1410 | /// in the JumpTable from switch case. |
| 1411 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1412 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1413 | // Subtract the lowest switch case value from the value being switched on and |
| 1414 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1415 | // difference between smallest and largest cases. |
| 1416 | SDValue SwitchOp = getValue(JTH.SValue); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1417 | EVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1418 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1419 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1420 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1421 | // The SDNode we just created, which holds the value being switched on minus |
| 1422 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1423 | // can be used as an index into the jump table in a subsequent basic block. |
| 1424 | // This value may be smaller or larger than the target's pointer type, and |
| 1425 | // therefore require extension or truncating. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1426 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1427 | SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1428 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1429 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1430 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1431 | TLI.getPointerTy(), SUB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1432 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1433 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1434 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1435 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1436 | JT.Reg = JumpTableReg; |
| 1437 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1438 | // Emit the range check for the jump table, and branch to the default block |
| 1439 | // for the switch statement if the value being switched on exceeds the largest |
| 1440 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1441 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1442 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1443 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1444 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1445 | |
| 1446 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1447 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1448 | MachineBasicBlock *NextBlock = 0; |
| 1449 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1450 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1451 | NextBlock = BBI; |
| 1452 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1453 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1454 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1455 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1456 | |
| 1457 | if (JT.MBB == NextBlock) |
| 1458 | DAG.setRoot(BrCond); |
| 1459 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1460 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1461 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1465 | /// suitable for "bit tests" |
| 1466 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1467 | // Subtract the minimum value |
| 1468 | SDValue SwitchOp = getValue(B.SValue); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1469 | EVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1470 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1471 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1472 | |
| 1473 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1474 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1475 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1476 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1477 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1478 | |
| 1479 | SDValue ShiftOp; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1480 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1481 | ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1482 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1483 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1484 | ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1485 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1486 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1487 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1488 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1489 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1490 | |
| 1491 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1492 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1493 | MachineBasicBlock *NextBlock = 0; |
| 1494 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1495 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1496 | NextBlock = BBI; |
| 1497 | |
| 1498 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1499 | |
| 1500 | CurMBB->addSuccessor(B.Default); |
| 1501 | CurMBB->addSuccessor(MBB); |
| 1502 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1503 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1504 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1505 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1506 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1507 | if (MBB == NextBlock) |
| 1508 | DAG.setRoot(BrRange); |
| 1509 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1510 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1511 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1512 | } |
| 1513 | |
| 1514 | /// visitBitTestCase - this function produces one "bit test" |
| 1515 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1516 | unsigned Reg, |
| 1517 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1518 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1519 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1520 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1521 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1522 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1523 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1524 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1525 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1526 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1527 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1528 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1529 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1530 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1531 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1532 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1533 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1534 | |
| 1535 | CurMBB->addSuccessor(B.TargetBB); |
| 1536 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1537 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1538 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1539 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1540 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1541 | |
| 1542 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1543 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1544 | MachineBasicBlock *NextBlock = 0; |
| 1545 | MachineFunction::iterator BBI = CurMBB; |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1546 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1547 | NextBlock = BBI; |
| 1548 | |
| 1549 | if (NextMBB == NextBlock) |
| 1550 | DAG.setRoot(BrAnd); |
| 1551 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1552 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1553 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1554 | } |
| 1555 | |
| 1556 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1557 | // Retrieve successors. |
| 1558 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1559 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1560 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1561 | const Value *Callee(I.getCalledValue()); |
| 1562 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1563 | visitInlineAsm(&I); |
| 1564 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1565 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1566 | |
| 1567 | // If the value of the invoke is used outside of its defining block, make it |
| 1568 | // available as a virtual register. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1569 | CopyToExportRegsIfNeeded(&I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1570 | |
| 1571 | // Update successor info |
| 1572 | CurMBB->addSuccessor(Return); |
| 1573 | CurMBB->addSuccessor(LandingPad); |
| 1574 | |
| 1575 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1576 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1577 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1578 | DAG.getBasicBlock(Return))); |
| 1579 | } |
| 1580 | |
| 1581 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1582 | } |
| 1583 | |
| 1584 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1585 | /// small case ranges). |
| 1586 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1587 | CaseRecVector& WorkList, |
| 1588 | Value* SV, |
| 1589 | MachineBasicBlock* Default) { |
| 1590 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1591 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1592 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1593 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1594 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1595 | return false; |
| 1596 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1597 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1598 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1599 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1600 | |
| 1601 | // Figure out which block is immediately after the current one. |
| 1602 | MachineBasicBlock *NextBlock = 0; |
| 1603 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1604 | |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1605 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1606 | NextBlock = BBI; |
| 1607 | |
| 1608 | // TODO: If any two of the cases has the same destination, and if one value |
| 1609 | // is the same as the other, but has one bit unset that the other has set, |
| 1610 | // use bit manipulation to do two compares at once. For example: |
| 1611 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1612 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1613 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1614 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1615 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1616 | // branches in this order. See if rearranging a case value would help. |
| 1617 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1618 | if (I->BB == NextBlock) { |
| 1619 | std::swap(*I, BackCase); |
| 1620 | break; |
| 1621 | } |
| 1622 | } |
| 1623 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1624 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1625 | // Create a CaseBlock record representing a conditional branch to |
| 1626 | // the Case's target mbb if the value being switched on SV is equal |
| 1627 | // to C. |
| 1628 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1629 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1630 | MachineBasicBlock *FallThrough; |
| 1631 | if (I != E-1) { |
| 1632 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1633 | CurMF->insert(BBI, FallThrough); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1634 | |
| 1635 | // Put SV in a virtual register to make it available from the new blocks. |
| 1636 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1637 | } else { |
| 1638 | // If the last case doesn't match, go to the default block. |
| 1639 | FallThrough = Default; |
| 1640 | } |
| 1641 | |
| 1642 | Value *RHS, *LHS, *MHS; |
| 1643 | ISD::CondCode CC; |
| 1644 | if (I->High == I->Low) { |
| 1645 | // This is just small small case range :) containing exactly 1 case |
| 1646 | CC = ISD::SETEQ; |
| 1647 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1648 | } else { |
| 1649 | CC = ISD::SETLE; |
| 1650 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1651 | } |
| 1652 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1653 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1654 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1655 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1656 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1657 | // before the next MBB. |
| 1658 | if (CurBlock == CurMBB) |
| 1659 | visitSwitchCase(CB); |
| 1660 | else |
| 1661 | SwitchCases.push_back(CB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1662 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1663 | CurBlock = FallThrough; |
| 1664 | } |
| 1665 | |
| 1666 | return true; |
| 1667 | } |
| 1668 | |
| 1669 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1670 | return !DisableJumpTables && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1671 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1672 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1673 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1674 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1675 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1676 | APInt LastExt(Last), FirstExt(First); |
| 1677 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1678 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1679 | return (LastExt - FirstExt + 1ULL); |
| 1680 | } |
| 1681 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1682 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1683 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1684 | CaseRecVector& WorkList, |
| 1685 | Value* SV, |
| 1686 | MachineBasicBlock* Default) { |
| 1687 | Case& FrontCase = *CR.Range.first; |
| 1688 | Case& BackCase = *(CR.Range.second-1); |
| 1689 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1690 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1691 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1692 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1693 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1694 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1695 | I!=E; ++I) |
| 1696 | TSize += I->size(); |
| 1697 | |
| 1698 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1699 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1700 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1701 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1702 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1703 | if (Density < 0.4) |
| 1704 | return false; |
| 1705 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1706 | DEBUG(errs() << "Lowering jump table\n" |
| 1707 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1708 | << "Range: " << Range |
| 1709 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1710 | |
| 1711 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1712 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1713 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1714 | |
| 1715 | // Figure out which block is immediately after the current one. |
| 1716 | MachineBasicBlock *NextBlock = 0; |
| 1717 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1718 | |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1719 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1720 | NextBlock = BBI; |
| 1721 | |
| 1722 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1723 | |
| 1724 | // Create a new basic block to hold the code for loading the address |
| 1725 | // of the jump table, and jumping to it. Update successor information; |
| 1726 | // we will either branch to the default case for the switch, or the jump |
| 1727 | // table. |
| 1728 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1729 | CurMF->insert(BBI, JumpTableBB); |
| 1730 | CR.CaseBB->addSuccessor(Default); |
| 1731 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1732 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1733 | // Build a vector of destination BBs, corresponding to each target |
| 1734 | // of the jump table. If the value of the jump table slot corresponds to |
| 1735 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1736 | // the default BB. |
| 1737 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1738 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1739 | 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] | 1740 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1741 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1742 | |
| 1743 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1744 | DestBBs.push_back(I->BB); |
| 1745 | if (TEI==High) |
| 1746 | ++I; |
| 1747 | } else { |
| 1748 | DestBBs.push_back(Default); |
| 1749 | } |
| 1750 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1751 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1752 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1753 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1754 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1755 | E = DestBBs.end(); I != E; ++I) { |
| 1756 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1757 | SuccsHandled[(*I)->getNumber()] = true; |
| 1758 | JumpTableBB->addSuccessor(*I); |
| 1759 | } |
| 1760 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1761 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1762 | // Create a jump table index for this jump table, or return an existing |
| 1763 | // one. |
| 1764 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1765 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1766 | // Set the jump table information so that we can codegen it as a second |
| 1767 | // MachineBasicBlock |
| 1768 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1769 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1770 | if (CR.CaseBB == CurMBB) |
| 1771 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1772 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1773 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1774 | |
| 1775 | return true; |
| 1776 | } |
| 1777 | |
| 1778 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1779 | /// 2 subtrees. |
| 1780 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1781 | CaseRecVector& WorkList, |
| 1782 | Value* SV, |
| 1783 | MachineBasicBlock* Default) { |
| 1784 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1785 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1786 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1787 | |
| 1788 | // Figure out which block is immediately after the current one. |
| 1789 | MachineBasicBlock *NextBlock = 0; |
| 1790 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1791 | |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1792 | if (++BBI != FuncInfo.MF->end()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1793 | NextBlock = BBI; |
| 1794 | |
| 1795 | Case& FrontCase = *CR.Range.first; |
| 1796 | Case& BackCase = *(CR.Range.second-1); |
| 1797 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1798 | |
| 1799 | // Size is the number of Cases represented by this range. |
| 1800 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1801 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1802 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1803 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1804 | double FMetric = 0; |
| 1805 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1806 | |
| 1807 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1808 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1809 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1810 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1811 | I!=E; ++I) |
| 1812 | TSize += I->size(); |
| 1813 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1814 | size_t LSize = FrontCase.size(); |
| 1815 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1816 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1817 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1818 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1819 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1820 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1821 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1822 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1823 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1824 | assert((Range - 2ULL).isNonNegative() && |
| 1825 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1826 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1827 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1828 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1829 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1830 | DEBUG(errs() <<"=>Step\n" |
| 1831 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1832 | << "LDensity: " << LDensity |
| 1833 | << ", RDensity: " << RDensity << '\n' |
| 1834 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1835 | if (FMetric < Metric) { |
| 1836 | Pivot = J; |
| 1837 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1838 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | LSize += J->size(); |
| 1842 | RSize -= J->size(); |
| 1843 | } |
| 1844 | if (areJTsAllowed(TLI)) { |
| 1845 | // If our case is dense we *really* should handle it earlier! |
| 1846 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1847 | } else { |
| 1848 | Pivot = CR.Range.first + Size/2; |
| 1849 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1850 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1851 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1852 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1853 | Constant *C = Pivot->Low; |
| 1854 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1855 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1856 | // 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] | 1857 | // 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] | 1858 | // 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] | 1859 | // 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] | 1860 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1861 | // rather than creating a leaf node for it. |
| 1862 | if ((LHSR.second - LHSR.first) == 1 && |
| 1863 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1864 | cast<ConstantInt>(C)->getValue() == |
| 1865 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1866 | TrueBB = LHSR.first->BB; |
| 1867 | } else { |
| 1868 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1869 | CurMF->insert(BBI, TrueBB); |
| 1870 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1871 | |
| 1872 | // Put SV in a virtual register to make it available from the new blocks. |
| 1873 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1874 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1875 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1876 | // Similar to the optimization above, if the Value being switched on is |
| 1877 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1878 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1879 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1880 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1881 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1882 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1883 | FalseBB = RHSR.first->BB; |
| 1884 | } else { |
| 1885 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1886 | CurMF->insert(BBI, FalseBB); |
| 1887 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1888 | |
| 1889 | // Put SV in a virtual register to make it available from the new blocks. |
| 1890 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1891 | } |
| 1892 | |
| 1893 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1894 | // 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] | 1895 | // Otherwise, branch to LHS. |
| 1896 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1897 | |
| 1898 | if (CR.CaseBB == CurMBB) |
| 1899 | visitSwitchCase(CB); |
| 1900 | else |
| 1901 | SwitchCases.push_back(CB); |
| 1902 | |
| 1903 | return true; |
| 1904 | } |
| 1905 | |
| 1906 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1907 | /// range span less, than machine word bitwidth, encode case range into series |
| 1908 | /// of masks and emit bit tests with these masks. |
| 1909 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1910 | CaseRecVector& WorkList, |
| 1911 | Value* SV, |
| 1912 | MachineBasicBlock* Default){ |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1913 | EVT PTy = TLI.getPointerTy(); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 1914 | unsigned IntPtrBits = PTy.getSizeInBits(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1915 | |
| 1916 | Case& FrontCase = *CR.Range.first; |
| 1917 | Case& BackCase = *(CR.Range.second-1); |
| 1918 | |
| 1919 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1920 | // inserting any additional MBBs necessary to represent the switch. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 1921 | MachineFunction *CurMF = FuncInfo.MF; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1922 | |
Anton Korobeynikov | d34167a | 2009-05-08 18:51:34 +0000 | [diff] [blame] | 1923 | // If target does not have legal shift left, do not emit bit tests at all. |
| 1924 | if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy())) |
| 1925 | return false; |
| 1926 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1927 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1928 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1929 | I!=E; ++I) { |
| 1930 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1931 | numCmps += (I->Low == I->High ? 1 : 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1932 | } |
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 | // Count unique destinations |
| 1935 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1936 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1937 | Dests.insert(I->BB); |
| 1938 | if (Dests.size() > 3) |
| 1939 | // Don't bother the code below, if there are too much unique destinations |
| 1940 | return false; |
| 1941 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1942 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1943 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1944 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1945 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1946 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1947 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1948 | APInt cmpRange = maxValue - minValue; |
| 1949 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1950 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1951 | << "Low bound: " << minValue << '\n' |
| 1952 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1953 | |
| 1954 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1955 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1956 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1957 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1958 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1959 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1960 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1961 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1962 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1963 | // Optimize the case where all the case values fit in a |
| 1964 | // word without having to subtract minValue. In this case, |
| 1965 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1966 | if (minValue.isNonNegative() && |
| 1967 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1968 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1969 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1970 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1971 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1972 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1973 | CaseBitsVector CasesBits; |
| 1974 | unsigned i, count = 0; |
| 1975 | |
| 1976 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1977 | MachineBasicBlock* Dest = I->BB; |
| 1978 | for (i = 0; i < count; ++i) |
| 1979 | if (Dest == CasesBits[i].BB) |
| 1980 | break; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1981 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1982 | if (i == count) { |
| 1983 | assert((count < 3) && "Too much destinations to test!"); |
| 1984 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1985 | count++; |
| 1986 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1987 | |
| 1988 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1989 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1990 | |
| 1991 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 1992 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 1993 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1994 | for (uint64_t j = lo; j <= hi; j++) { |
| 1995 | CasesBits[i].Mask |= 1ULL << j; |
| 1996 | CasesBits[i].Bits++; |
| 1997 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1998 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1999 | } |
| 2000 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2001 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2002 | BitTestInfo BTC; |
| 2003 | |
| 2004 | // Figure out which block is immediately after the current one. |
| 2005 | MachineFunction::iterator BBI = CR.CaseBB; |
| 2006 | ++BBI; |
| 2007 | |
| 2008 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 2009 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2010 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2011 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2012 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2013 | << ", Bits: " << CasesBits[i].Bits |
| 2014 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2015 | |
| 2016 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2017 | CurMF->insert(BBI, CaseBB); |
| 2018 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2019 | CaseBB, |
| 2020 | CasesBits[i].BB)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 2021 | |
| 2022 | // Put SV in a virtual register to make it available from the new blocks. |
| 2023 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2024 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2025 | |
| 2026 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2027 | -1U, (CR.CaseBB == CurMBB), |
| 2028 | CR.CaseBB, Default, BTC); |
| 2029 | |
| 2030 | if (CR.CaseBB == CurMBB) |
| 2031 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2032 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2033 | BitTestCases.push_back(BTB); |
| 2034 | |
| 2035 | return true; |
| 2036 | } |
| 2037 | |
| 2038 | |
| 2039 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2040 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2041 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2042 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2043 | |
| 2044 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2045 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2046 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2047 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2048 | SI.getSuccessorValue(i), |
| 2049 | SMBB)); |
| 2050 | } |
| 2051 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2052 | |
| 2053 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2054 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2055 | // Must recompute end() each iteration because it may be |
| 2056 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2057 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2058 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2059 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2060 | MachineBasicBlock* nextBB = J->BB; |
| 2061 | MachineBasicBlock* currentBB = I->BB; |
| 2062 | |
| 2063 | // If the two neighboring cases go to the same destination, merge them |
| 2064 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2065 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2066 | I->High = J->High; |
| 2067 | J = Cases.erase(J); |
| 2068 | } else { |
| 2069 | I = J++; |
| 2070 | } |
| 2071 | } |
| 2072 | |
| 2073 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2074 | if (I->Low != I->High) |
| 2075 | // A range counts double, since it requires two compares. |
| 2076 | ++numCmps; |
| 2077 | } |
| 2078 | |
| 2079 | return numCmps; |
| 2080 | } |
| 2081 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2082 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2083 | // Figure out which block is immediately after the current one. |
| 2084 | MachineBasicBlock *NextBlock = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2085 | |
| 2086 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2087 | |
| 2088 | // If there is only the default destination, branch to it if it is not the |
| 2089 | // next basic block. Otherwise, just fall through. |
| 2090 | if (SI.getNumOperands() == 2) { |
| 2091 | // Update machine-CFG edges. |
| 2092 | |
| 2093 | // If this is not a fall-through branch, emit the branch. |
| 2094 | CurMBB->addSuccessor(Default); |
| 2095 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2096 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2097 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2098 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2099 | return; |
| 2100 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2101 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2102 | // If there are any non-default case statements, create a vector of Cases |
| 2103 | // representing each one, and sort the vector so that we can efficiently |
| 2104 | // create a binary search tree from them. |
| 2105 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2106 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2107 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2108 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2109 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2110 | |
| 2111 | // Get the Value to be switched on and default basic blocks, which will be |
| 2112 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2113 | // search tree. |
| 2114 | Value *SV = SI.getOperand(0); |
| 2115 | |
| 2116 | // Push the initial CaseRec onto the worklist |
| 2117 | CaseRecVector WorkList; |
| 2118 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2119 | |
| 2120 | while (!WorkList.empty()) { |
| 2121 | // Grab a record representing a case range to process off the worklist |
| 2122 | CaseRec CR = WorkList.back(); |
| 2123 | WorkList.pop_back(); |
| 2124 | |
| 2125 | if (handleBitTestsSwitchCase(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 | // If the range has few cases (two or less) emit a series of specific |
| 2129 | // tests. |
| 2130 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2131 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2132 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2133 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2134 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2135 | // lowering the switch to a binary tree of conditional branches. |
| 2136 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2137 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2138 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2139 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2140 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2141 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2142 | } |
| 2143 | } |
| 2144 | |
| 2145 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2146 | void SelectionDAGLowering::visitFSub(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2147 | // -0.0 - X --> fneg |
| 2148 | const Type *Ty = I.getType(); |
| 2149 | if (isa<VectorType>(Ty)) { |
| 2150 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2151 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2152 | const Type *ElTy = DestTy->getElementType(); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2153 | unsigned VL = DestTy->getNumElements(); |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 2154 | std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy)); |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 2155 | Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size()); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2156 | if (CV == CNZ) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2157 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2158 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2159 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2160 | return; |
| 2161 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2162 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2163 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2164 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 2165 | if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) { |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2166 | SDValue Op2 = getValue(I.getOperand(1)); |
| 2167 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
| 2168 | Op2.getValueType(), Op2)); |
| 2169 | return; |
| 2170 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2171 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2172 | visitBinary(I, ISD::FSUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2173 | } |
| 2174 | |
| 2175 | void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) { |
| 2176 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2177 | SDValue Op2 = getValue(I.getOperand(1)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2178 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2179 | setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2180 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2181 | } |
| 2182 | |
| 2183 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 2184 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2185 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2186 | if (!isa<VectorType>(I.getType()) && |
| 2187 | Op2.getValueType() != TLI.getShiftAmountTy()) { |
| 2188 | // If the operand is smaller than the shift count type, promote it. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2189 | EVT PTy = TLI.getPointerTy(); |
| 2190 | EVT STy = TLI.getShiftAmountTy(); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2191 | if (STy.bitsGT(Op2.getValueType())) |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2192 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
| 2193 | TLI.getShiftAmountTy(), Op2); |
| 2194 | // If the operand is larger than the shift count type but the shift |
| 2195 | // count type has enough bits to represent any shift value, truncate |
| 2196 | // it now. This is a common case and it exposes the truncate to |
| 2197 | // optimization early. |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2198 | else if (STy.getSizeInBits() >= |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2199 | Log2_32_Ceil(Op2.getValueType().getSizeInBits())) |
| 2200 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2201 | TLI.getShiftAmountTy(), Op2); |
| 2202 | // Otherwise we'll need to temporarily settle for some other |
| 2203 | // convenient type; type legalization will make adjustments as |
| 2204 | // needed. |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2205 | else if (PTy.bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2206 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2207 | TLI.getPointerTy(), Op2); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2208 | else if (PTy.bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2209 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2210 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2211 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2212 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2213 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2214 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2215 | } |
| 2216 | |
| 2217 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2218 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2219 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2220 | predicate = IC->getPredicate(); |
| 2221 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2222 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2223 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2224 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2225 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2226 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2227 | EVT DestVT = TLI.getValueType(I.getType()); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2228 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2229 | } |
| 2230 | |
| 2231 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2232 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2233 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2234 | predicate = FC->getPredicate(); |
| 2235 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2236 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2237 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2238 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2239 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2240 | EVT DestVT = TLI.getValueType(I.getType()); |
Chris Lattner | 9800e84 | 2009-07-07 22:41:32 +0000 | [diff] [blame] | 2241 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2242 | } |
| 2243 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2244 | void SelectionDAGLowering::visitSelect(User &I) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2245 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2246 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2247 | unsigned NumValues = ValueVTs.size(); |
| 2248 | if (NumValues != 0) { |
| 2249 | SmallVector<SDValue, 4> Values(NumValues); |
| 2250 | SDValue Cond = getValue(I.getOperand(0)); |
| 2251 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2252 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2253 | |
| 2254 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2255 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2256 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2257 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2258 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2259 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2260 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2261 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2262 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2263 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2264 | } |
| 2265 | |
| 2266 | |
| 2267 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2268 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2269 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2270 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2271 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2272 | } |
| 2273 | |
| 2274 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2275 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2276 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2277 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2278 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2279 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2280 | } |
| 2281 | |
| 2282 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2283 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2284 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2285 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2286 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2287 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2288 | } |
| 2289 | |
| 2290 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2291 | // FPTrunc is never a no-op cast, no need to check |
| 2292 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2293 | EVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2294 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2295 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2296 | } |
| 2297 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2298 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2299 | // FPTrunc is never a no-op cast, no need to check |
| 2300 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2301 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2302 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2303 | } |
| 2304 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2305 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2306 | // FPToUI is never a no-op cast, no need to check |
| 2307 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2308 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2309 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2310 | } |
| 2311 | |
| 2312 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2313 | // FPToSI is never a no-op cast, no need to check |
| 2314 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2315 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2316 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2317 | } |
| 2318 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2319 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2320 | // UIToFP is never a no-op cast, no need to check |
| 2321 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2322 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2323 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2324 | } |
| 2325 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2326 | void SelectionDAGLowering::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2327 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2328 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2329 | EVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2330 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2331 | } |
| 2332 | |
| 2333 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2334 | // What to do depends on the size of the integer and the size of the pointer. |
| 2335 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2336 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2337 | EVT SrcVT = N.getValueType(); |
| 2338 | EVT DestVT = TLI.getValueType(I.getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2339 | SDValue Result; |
| 2340 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2341 | Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2342 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2343 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2344 | Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2345 | setValue(&I, Result); |
| 2346 | } |
| 2347 | |
| 2348 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2349 | // What to do depends on the size of the integer and the size of the pointer. |
| 2350 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2351 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2352 | EVT SrcVT = N.getValueType(); |
| 2353 | EVT DestVT = TLI.getValueType(I.getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2354 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2355 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2356 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2357 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2358 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2359 | DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2360 | } |
| 2361 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2362 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2363 | SDValue N = getValue(I.getOperand(0)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2364 | EVT DestVT = TLI.getValueType(I.getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2365 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2366 | // 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] | 2367 | // is either a BIT_CONVERT or a no-op. |
| 2368 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2369 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2370 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2371 | else |
| 2372 | setValue(&I, N); // noop cast. |
| 2373 | } |
| 2374 | |
| 2375 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2376 | SDValue InVec = getValue(I.getOperand(0)); |
| 2377 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2378 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2379 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2380 | getValue(I.getOperand(2))); |
| 2381 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2382 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2383 | TLI.getValueType(I.getType()), |
| 2384 | InVec, InVal, InIdx)); |
| 2385 | } |
| 2386 | |
| 2387 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2388 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2389 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2390 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2391 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2392 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2393 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2394 | } |
| 2395 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2396 | |
| 2397 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2398 | // from SIndx and increasing to the element length (undefs are allowed). |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2399 | static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) { |
| 2400 | unsigned MaskNumElts = Mask.size(); |
| 2401 | for (unsigned i = 0; i != MaskNumElts; ++i) |
| 2402 | if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx))) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2403 | return false; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2404 | return true; |
| 2405 | } |
| 2406 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2407 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2408 | SmallVector<int, 8> Mask; |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2409 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2410 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2411 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2412 | // Convert the ConstantVector mask operand into an array of ints, with -1 |
| 2413 | // representing undef values. |
| 2414 | SmallVector<Constant*, 8> MaskElts; |
Owen Anderson | 001dbfe | 2009-07-16 18:04:31 +0000 | [diff] [blame] | 2415 | cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(), |
| 2416 | MaskElts); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2417 | unsigned MaskNumElts = MaskElts.size(); |
| 2418 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2419 | if (isa<UndefValue>(MaskElts[i])) |
| 2420 | Mask.push_back(-1); |
| 2421 | else |
| 2422 | Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue()); |
| 2423 | } |
| 2424 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2425 | EVT VT = TLI.getValueType(I.getType()); |
| 2426 | EVT SrcVT = Src1.getValueType(); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2427 | unsigned SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2428 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2429 | if (SrcNumElts == MaskNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2430 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2431 | &Mask[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2432 | return; |
| 2433 | } |
| 2434 | |
| 2435 | // 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] | 2436 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2437 | // Mask is longer than the source vectors and is a multiple of the source |
| 2438 | // 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] | 2439 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2440 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2441 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2442 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2443 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2444 | return; |
| 2445 | } |
| 2446 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2447 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2448 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2449 | bool Src1U = Src1.getOpcode() == ISD::UNDEF; |
| 2450 | bool Src2U = Src2.getOpcode() == ISD::UNDEF; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2451 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
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 | SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); |
| 2454 | SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2455 | MOps1[0] = Src1; |
| 2456 | MOps2[0] = Src2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2457 | |
| 2458 | Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2459 | getCurDebugLoc(), VT, |
| 2460 | &MOps1[0], NumConcat); |
| 2461 | Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2462 | getCurDebugLoc(), VT, |
| 2463 | &MOps2[0], NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2464 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2465 | // Readjust mask for new input vector length. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2466 | SmallVector<int, 8> MappedOps; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2467 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2468 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2469 | if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2470 | MappedOps.push_back(Idx); |
| 2471 | else |
| 2472 | MappedOps.push_back(Idx + MaskNumElts - SrcNumElts); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2473 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2474 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2475 | &MappedOps[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2476 | return; |
| 2477 | } |
| 2478 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2479 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2480 | // Analyze the access pattern of the vector to see if we can extract |
| 2481 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2482 | // the range of elements the mask access on both vectors. |
| 2483 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2484 | int MaxRange[2] = {-1, -1}; |
| 2485 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2486 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2487 | int Idx = Mask[i]; |
| 2488 | int Input = 0; |
| 2489 | if (Idx < 0) |
| 2490 | continue; |
| 2491 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2492 | if (Idx >= (int)SrcNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2493 | Input = 1; |
| 2494 | Idx -= SrcNumElts; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2495 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2496 | if (Idx > MaxRange[Input]) |
| 2497 | MaxRange[Input] = Idx; |
| 2498 | if (Idx < MinRange[Input]) |
| 2499 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2500 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2501 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2502 | // Check if the access is smaller than the vector size and can we find |
| 2503 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2504 | 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] | 2505 | int StartIdx[2]; // StartIdx to extract from |
| 2506 | for (int Input=0; Input < 2; ++Input) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2507 | if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2508 | RangeUse[Input] = 0; // Unused |
| 2509 | StartIdx[Input] = 0; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2510 | } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2511 | // 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] | 2512 | // start index that is a multiple of the mask length. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2513 | if (MaxRange[Input] < (int)MaskNumElts) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2514 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2515 | StartIdx[Input] = 0; |
| 2516 | } else { |
| 2517 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2518 | if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2519 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2520 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2521 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2522 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2523 | } |
| 2524 | |
Bill Wendling | 636e258 | 2009-08-21 18:16:06 +0000 | [diff] [blame] | 2525 | if (RangeUse[0] == 0 && RangeUse[1] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2526 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2527 | return; |
| 2528 | } |
| 2529 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2530 | // Extract appropriate subvector and generate a vector shuffle |
| 2531 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2532 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2533 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2534 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2535 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2536 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2537 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2538 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2539 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2540 | // Calculate new mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2541 | SmallVector<int, 8> MappedOps; |
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 | int Idx = Mask[i]; |
| 2544 | if (Idx < 0) |
| 2545 | MappedOps.push_back(Idx); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2546 | else if (Idx < (int)SrcNumElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2547 | MappedOps.push_back(Idx - StartIdx[0]); |
| 2548 | else |
| 2549 | MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2550 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2551 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2552 | &MappedOps[0])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2553 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2554 | } |
| 2555 | } |
| 2556 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2557 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2558 | // replacing the shuffle with extract and build vector. |
| 2559 | // to insert and build vector. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2560 | EVT EltVT = VT.getVectorElementType(); |
| 2561 | EVT PtrVT = TLI.getPointerTy(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2562 | SmallVector<SDValue,8> Ops; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2563 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2564 | if (Mask[i] < 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2565 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2566 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2567 | int Idx = Mask[i]; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 2568 | if (Idx < (int)SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2569 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2570 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2571 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2572 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2573 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2574 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2575 | } |
| 2576 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2577 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2578 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2579 | } |
| 2580 | |
| 2581 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2582 | const Value *Op0 = I.getOperand(0); |
| 2583 | const Value *Op1 = I.getOperand(1); |
| 2584 | const Type *AggTy = I.getType(); |
| 2585 | const Type *ValTy = Op1->getType(); |
| 2586 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2587 | bool FromUndef = isa<UndefValue>(Op1); |
| 2588 | |
| 2589 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2590 | I.idx_begin(), I.idx_end()); |
| 2591 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2592 | SmallVector<EVT, 4> AggValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2593 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2594 | SmallVector<EVT, 4> ValValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2595 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2596 | |
| 2597 | unsigned NumAggValues = AggValueVTs.size(); |
| 2598 | unsigned NumValValues = ValValueVTs.size(); |
| 2599 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2600 | |
| 2601 | SDValue Agg = getValue(Op0); |
| 2602 | SDValue Val = getValue(Op1); |
| 2603 | unsigned i = 0; |
| 2604 | // Copy the beginning value(s) from the original aggregate. |
| 2605 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2606 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2607 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2608 | // Copy values from the inserted value(s). |
| 2609 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2610 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2611 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2612 | // Copy remaining value(s) from the original aggregate. |
| 2613 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2614 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2615 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2616 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2617 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2618 | DAG.getVTList(&AggValueVTs[0], NumAggValues), |
| 2619 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2620 | } |
| 2621 | |
| 2622 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2623 | const Value *Op0 = I.getOperand(0); |
| 2624 | const Type *AggTy = Op0->getType(); |
| 2625 | const Type *ValTy = I.getType(); |
| 2626 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2627 | |
| 2628 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2629 | I.idx_begin(), I.idx_end()); |
| 2630 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2631 | SmallVector<EVT, 4> ValValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2632 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2633 | |
| 2634 | unsigned NumValValues = ValValueVTs.size(); |
| 2635 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2636 | |
| 2637 | SDValue Agg = getValue(Op0); |
| 2638 | // Copy out the selected value(s). |
| 2639 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2640 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2641 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2642 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2643 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2644 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2645 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2646 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2647 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2648 | } |
| 2649 | |
| 2650 | |
| 2651 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2652 | SDValue N = getValue(I.getOperand(0)); |
| 2653 | const Type *Ty = I.getOperand(0)->getType(); |
| 2654 | |
| 2655 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2656 | OI != E; ++OI) { |
| 2657 | Value *Idx = *OI; |
| 2658 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2659 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2660 | if (Field) { |
| 2661 | // N = N + Offset |
| 2662 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2663 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2664 | DAG.getIntPtrConstant(Offset)); |
| 2665 | } |
| 2666 | Ty = StTy->getElementType(Field); |
| 2667 | } else { |
| 2668 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2669 | |
| 2670 | // If this is a constant subscript, handle it quickly. |
| 2671 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2672 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2673 | uint64_t Offs = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2674 | TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2675 | SDValue OffsVal; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2676 | EVT PTy = TLI.getPointerTy(); |
Owen Anderson | 77547be | 2009-08-10 18:56:59 +0000 | [diff] [blame] | 2677 | unsigned PtrBits = PTy.getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2678 | if (PtrBits < 64) { |
| 2679 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2680 | TLI.getPointerTy(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2681 | DAG.getConstant(Offs, MVT::i64)); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2682 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2683 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2684 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2685 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2686 | continue; |
| 2687 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2688 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2689 | // N = N + Idx * ElementSize; |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2690 | uint64_t ElementSize = TD->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2691 | SDValue IdxN = getValue(Idx); |
| 2692 | |
| 2693 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2694 | // it. |
| 2695 | if (IdxN.getValueType().bitsLT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2696 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2697 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2698 | else if (IdxN.getValueType().bitsGT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2699 | IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2700 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2701 | |
| 2702 | // If this is a multiply by a power of two, turn it into a shl |
| 2703 | // immediately. This is a very common case. |
| 2704 | if (ElementSize != 1) { |
| 2705 | if (isPowerOf2_64(ElementSize)) { |
| 2706 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2707 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2708 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2709 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2710 | } else { |
| 2711 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2712 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2713 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2714 | } |
| 2715 | } |
| 2716 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2717 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2718 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2719 | } |
| 2720 | } |
| 2721 | setValue(&I, N); |
| 2722 | } |
| 2723 | |
| 2724 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2725 | // If this is a fixed sized alloca in the entry block of the function, |
| 2726 | // allocate it statically on the stack. |
| 2727 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2728 | return; // getValue will auto-populate this. |
| 2729 | |
| 2730 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 2731 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2732 | unsigned Align = |
| 2733 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2734 | I.getAlignment()); |
| 2735 | |
| 2736 | SDValue AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 2737 | |
| 2738 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(), |
| 2739 | AllocSize, |
| 2740 | DAG.getConstant(TySize, AllocSize.getValueType())); |
| 2741 | |
| 2742 | |
| 2743 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2744 | EVT IntPtr = TLI.getPointerTy(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2745 | if (IntPtr.bitsLT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2746 | AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2747 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2748 | else if (IntPtr.bitsGT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2749 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2750 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2751 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2752 | // Handle alignment. If the requested alignment is less than or equal to |
| 2753 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2754 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2755 | unsigned StackAlign = |
| 2756 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2757 | if (Align <= StackAlign) |
| 2758 | Align = 0; |
| 2759 | |
| 2760 | // Round the size of the allocation up to the stack alignment size |
| 2761 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2762 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2763 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2764 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2765 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2766 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2767 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2768 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2769 | |
| 2770 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2771 | SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2772 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2773 | VTs, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2774 | setValue(&I, DSA); |
| 2775 | DAG.setRoot(DSA.getValue(1)); |
| 2776 | |
| 2777 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2778 | // object. |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 2779 | FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2780 | } |
| 2781 | |
| 2782 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2783 | const Value *SV = I.getOperand(0); |
| 2784 | SDValue Ptr = getValue(SV); |
| 2785 | |
| 2786 | const Type *Ty = I.getType(); |
| 2787 | bool isVolatile = I.isVolatile(); |
| 2788 | unsigned Alignment = I.getAlignment(); |
| 2789 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2790 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2791 | SmallVector<uint64_t, 4> Offsets; |
| 2792 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2793 | unsigned NumValues = ValueVTs.size(); |
| 2794 | if (NumValues == 0) |
| 2795 | return; |
| 2796 | |
| 2797 | SDValue Root; |
| 2798 | bool ConstantMemory = false; |
| 2799 | if (I.isVolatile()) |
| 2800 | // Serialize volatile loads with other side effects. |
| 2801 | Root = getRoot(); |
| 2802 | else if (AA->pointsToConstantMemory(SV)) { |
| 2803 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2804 | Root = DAG.getEntryNode(); |
| 2805 | ConstantMemory = true; |
| 2806 | } else { |
| 2807 | // Do not serialize non-volatile loads against each other. |
| 2808 | Root = DAG.getRoot(); |
| 2809 | } |
| 2810 | |
| 2811 | SmallVector<SDValue, 4> Values(NumValues); |
| 2812 | SmallVector<SDValue, 4> Chains(NumValues); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2813 | EVT PtrVT = Ptr.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2814 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2815 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2816 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2817 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2818 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2819 | SV, Offsets[i], |
| 2820 | isVolatile, Alignment); |
| 2821 | Values[i] = L; |
| 2822 | Chains[i] = L.getValue(1); |
| 2823 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2824 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2825 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2826 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2827 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2828 | &Chains[0], NumValues); |
| 2829 | if (isVolatile) |
| 2830 | DAG.setRoot(Chain); |
| 2831 | else |
| 2832 | PendingLoads.push_back(Chain); |
| 2833 | } |
| 2834 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2835 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2836 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2837 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2838 | } |
| 2839 | |
| 2840 | |
| 2841 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2842 | Value *SrcV = I.getOperand(0); |
| 2843 | Value *PtrV = I.getOperand(1); |
| 2844 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2845 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2846 | SmallVector<uint64_t, 4> Offsets; |
| 2847 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2848 | unsigned NumValues = ValueVTs.size(); |
| 2849 | if (NumValues == 0) |
| 2850 | return; |
| 2851 | |
| 2852 | // Get the lowered operands. Note that we do this after |
| 2853 | // checking if NumResults is zero, because with zero results |
| 2854 | // the operands won't have values in the map. |
| 2855 | SDValue Src = getValue(SrcV); |
| 2856 | SDValue Ptr = getValue(PtrV); |
| 2857 | |
| 2858 | SDValue Root = getRoot(); |
| 2859 | SmallVector<SDValue, 4> Chains(NumValues); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2860 | EVT PtrVT = Ptr.getValueType(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2861 | bool isVolatile = I.isVolatile(); |
| 2862 | unsigned Alignment = I.getAlignment(); |
| 2863 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2864 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2865 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2866 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2867 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2868 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2869 | PtrV, Offsets[i], |
| 2870 | isVolatile, Alignment); |
| 2871 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2872 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2873 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2874 | } |
| 2875 | |
| 2876 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2877 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2878 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2879 | unsigned Intrinsic) { |
| 2880 | bool HasChain = !I.doesNotAccessMemory(); |
| 2881 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2882 | |
| 2883 | // Build the operand list. |
| 2884 | SmallVector<SDValue, 8> Ops; |
| 2885 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2886 | if (OnlyLoad) { |
| 2887 | // We don't need to serialize loads against other loads. |
| 2888 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2889 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2890 | Ops.push_back(getRoot()); |
| 2891 | } |
| 2892 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2893 | |
| 2894 | // Info is set by getTgtMemInstrinsic |
| 2895 | TargetLowering::IntrinsicInfo Info; |
| 2896 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2897 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2898 | // 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] | 2899 | if (!IsTgtIntrinsic) |
| 2900 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2901 | |
| 2902 | // Add all operands of the call to the operand list. |
| 2903 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2904 | SDValue Op = getValue(I.getOperand(i)); |
| 2905 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2906 | "Intrinsic uses a non-legal type?"); |
| 2907 | Ops.push_back(Op); |
| 2908 | } |
| 2909 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2910 | SmallVector<EVT, 4> ValueVTs; |
Bob Wilson | 8d91955 | 2009-07-31 22:41:21 +0000 | [diff] [blame] | 2911 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2912 | #ifndef NDEBUG |
| 2913 | for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) { |
| 2914 | assert(TLI.isTypeLegal(ValueVTs[Val]) && |
| 2915 | "Intrinsic uses a non-legal type?"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2916 | } |
Bob Wilson | 8d91955 | 2009-07-31 22:41:21 +0000 | [diff] [blame] | 2917 | #endif // NDEBUG |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2918 | if (HasChain) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2919 | ValueVTs.push_back(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2920 | |
Bob Wilson | 8d91955 | 2009-07-31 22:41:21 +0000 | [diff] [blame] | 2921 | SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2922 | |
| 2923 | // Create the node. |
| 2924 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2925 | if (IsTgtIntrinsic) { |
| 2926 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2927 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2928 | VTs, &Ops[0], Ops.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2929 | Info.memVT, Info.ptrVal, Info.offset, |
| 2930 | Info.align, Info.vol, |
| 2931 | Info.readMem, Info.writeMem); |
| 2932 | } |
| 2933 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2934 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2935 | VTs, &Ops[0], Ops.size()); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2936 | else if (I.getType() != Type::getVoidTy(*DAG.getContext())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2937 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2938 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2939 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2940 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2941 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2942 | |
| 2943 | if (HasChain) { |
| 2944 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 2945 | if (OnlyLoad) |
| 2946 | PendingLoads.push_back(Chain); |
| 2947 | else |
| 2948 | DAG.setRoot(Chain); |
| 2949 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2950 | if (I.getType() != Type::getVoidTy(*DAG.getContext())) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2951 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2952 | EVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2953 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2954 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2955 | setValue(&I, Result); |
| 2956 | } |
| 2957 | } |
| 2958 | |
| 2959 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 2960 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 2961 | V = V->stripPointerCasts(); |
| 2962 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 2963 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 2964 | "TypeInfo must be a global variable or NULL"); |
| 2965 | return GV; |
| 2966 | } |
| 2967 | |
| 2968 | namespace llvm { |
| 2969 | |
| 2970 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 2971 | /// call, and add them to the specified machine basic block. |
| 2972 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 2973 | MachineBasicBlock *MBB) { |
| 2974 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 2975 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 2976 | assert(CE->getOpcode() == Instruction::BitCast && |
| 2977 | isa<Function>(CE->getOperand(0)) && |
| 2978 | "Personality should be a function"); |
| 2979 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 2980 | |
| 2981 | // Gather all the type infos for this landing pad and pass them along to |
| 2982 | // MachineModuleInfo. |
| 2983 | std::vector<GlobalVariable *> TyInfo; |
| 2984 | unsigned N = I.getNumOperands(); |
| 2985 | |
| 2986 | for (unsigned i = N - 1; i > 2; --i) { |
| 2987 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 2988 | unsigned FilterLength = CI->getZExtValue(); |
| 2989 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 2990 | assert (FirstCatch <= N && "Invalid filter length"); |
| 2991 | |
| 2992 | if (FirstCatch < N) { |
| 2993 | TyInfo.reserve(N - FirstCatch); |
| 2994 | for (unsigned j = FirstCatch; j < N; ++j) |
| 2995 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 2996 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 2997 | TyInfo.clear(); |
| 2998 | } |
| 2999 | |
| 3000 | if (!FilterLength) { |
| 3001 | // Cleanup. |
| 3002 | MMI->addCleanup(MBB); |
| 3003 | } else { |
| 3004 | // Filter. |
| 3005 | TyInfo.reserve(FilterLength - 1); |
| 3006 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 3007 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3008 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 3009 | TyInfo.clear(); |
| 3010 | } |
| 3011 | |
| 3012 | N = i; |
| 3013 | } |
| 3014 | } |
| 3015 | |
| 3016 | if (N > 3) { |
| 3017 | TyInfo.reserve(N - 3); |
| 3018 | for (unsigned j = 3; j < N; ++j) |
| 3019 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3020 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3021 | } |
| 3022 | } |
| 3023 | |
| 3024 | } |
| 3025 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3026 | /// GetSignificand - Get the significand and build it into a floating-point |
| 3027 | /// number with exponent of 1: |
| 3028 | /// |
| 3029 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 3030 | /// |
| 3031 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3032 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3033 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3034 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
| 3035 | DAG.getConstant(0x007fffff, MVT::i32)); |
| 3036 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
| 3037 | DAG.getConstant(0x3f800000, MVT::i32)); |
| 3038 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3039 | } |
| 3040 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3041 | /// GetExponent - Get the exponent: |
| 3042 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3043 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3044 | /// |
| 3045 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3046 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3047 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3048 | DebugLoc dl) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3049 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
| 3050 | DAG.getConstant(0x7f800000, MVT::i32)); |
| 3051 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3052 | DAG.getConstant(23, TLI.getPointerTy())); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3053 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
| 3054 | DAG.getConstant(127, MVT::i32)); |
| 3055 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3056 | } |
| 3057 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3058 | /// getF32Constant - Get 32-bit floating point constant. |
| 3059 | static SDValue |
| 3060 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3061 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3062 | } |
| 3063 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3064 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3065 | /// visitIntrinsicCall: I is a call instruction |
| 3066 | /// Op is the associated NodeType for I |
| 3067 | const char * |
| 3068 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3069 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3070 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3071 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3072 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3073 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3074 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3075 | getValue(I.getOperand(2)), |
| 3076 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3077 | setValue(&I, L); |
| 3078 | DAG.setRoot(L.getValue(1)); |
| 3079 | return 0; |
| 3080 | } |
| 3081 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3082 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3083 | const char * |
| 3084 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3085 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3086 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3087 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3088 | SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3089 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3090 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3091 | setValue(&I, Result); |
| 3092 | return 0; |
| 3093 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3094 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3095 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3096 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3097 | void |
| 3098 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3099 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3100 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3101 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3102 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3103 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3104 | SDValue Op = getValue(I.getOperand(1)); |
| 3105 | |
| 3106 | // Put the exponent in the right bit position for later addition to the |
| 3107 | // final result: |
| 3108 | // |
| 3109 | // #define LOG2OFe 1.4426950f |
| 3110 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3111 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3112 | getF32Constant(DAG, 0x3fb8aa3b)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3113 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3114 | |
| 3115 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3116 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3117 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3118 | |
| 3119 | // IntegerPartOfX <<= 23; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3120 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3121 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3122 | |
| 3123 | if (LimitFloatPrecision <= 6) { |
| 3124 | // For floating-point precision of 6: |
| 3125 | // |
| 3126 | // TwoToFractionalPartOfX = |
| 3127 | // 0.997535578f + |
| 3128 | // (0.735607626f + 0.252464424f * x) * x; |
| 3129 | // |
| 3130 | // error 0.0144103317, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3131 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3132 | getF32Constant(DAG, 0x3e814304)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3133 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3134 | getF32Constant(DAG, 0x3f3c50c8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3135 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3136 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3137 | getF32Constant(DAG, 0x3f7f5e7e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3138 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3139 | |
| 3140 | // Add the exponent into the result in integer domain. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3141 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3142 | TwoToFracPartOfX, IntegerPartOfX); |
| 3143 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3144 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3145 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3146 | // For floating-point precision of 12: |
| 3147 | // |
| 3148 | // TwoToFractionalPartOfX = |
| 3149 | // 0.999892986f + |
| 3150 | // (0.696457318f + |
| 3151 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3152 | // |
| 3153 | // 0.000107046256 error, which is 13 to 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3154 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3155 | getF32Constant(DAG, 0x3da235e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3156 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3157 | getF32Constant(DAG, 0x3e65b8f3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3158 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3159 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3160 | getF32Constant(DAG, 0x3f324b07)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3161 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3162 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3163 | getF32Constant(DAG, 0x3f7ff8fd)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3164 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3165 | |
| 3166 | // Add the exponent into the result in integer domain. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3167 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3168 | TwoToFracPartOfX, IntegerPartOfX); |
| 3169 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3170 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3171 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3172 | // For floating-point precision of 18: |
| 3173 | // |
| 3174 | // TwoToFractionalPartOfX = |
| 3175 | // 0.999999982f + |
| 3176 | // (0.693148872f + |
| 3177 | // (0.240227044f + |
| 3178 | // (0.554906021e-1f + |
| 3179 | // (0.961591928e-2f + |
| 3180 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3181 | // |
| 3182 | // error 2.47208000*10^(-7), which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3183 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3184 | getF32Constant(DAG, 0x3924b03e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3185 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3186 | getF32Constant(DAG, 0x3ab24b87)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3187 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3188 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3189 | getF32Constant(DAG, 0x3c1d8c17)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3190 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3191 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3192 | getF32Constant(DAG, 0x3d634a1d)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3193 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3194 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3195 | getF32Constant(DAG, 0x3e75fe14)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3196 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3197 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3198 | getF32Constant(DAG, 0x3f317234)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3199 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3200 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3201 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3202 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3203 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3204 | |
| 3205 | // Add the exponent into the result in integer domain. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3206 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3207 | TwoToFracPartOfX, IntegerPartOfX); |
| 3208 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3209 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3210 | } |
| 3211 | } else { |
| 3212 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3213 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3214 | getValue(I.getOperand(1)).getValueType(), |
| 3215 | getValue(I.getOperand(1))); |
| 3216 | } |
| 3217 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3218 | setValue(&I, result); |
| 3219 | } |
| 3220 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3221 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3222 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3223 | void |
| 3224 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3225 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3226 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3227 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3228 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3229 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3230 | SDValue Op = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3231 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3232 | |
| 3233 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3234 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3235 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3236 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3237 | |
| 3238 | // Get the significand and build it into a floating-point number with |
| 3239 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3240 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3241 | |
| 3242 | if (LimitFloatPrecision <= 6) { |
| 3243 | // For floating-point precision of 6: |
| 3244 | // |
| 3245 | // LogofMantissa = |
| 3246 | // -1.1609546f + |
| 3247 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3248 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3249 | // error 0.0034276066, which is better than 8 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3250 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3251 | getF32Constant(DAG, 0xbe74c456)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3252 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3253 | getF32Constant(DAG, 0x3fb3a2b1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3254 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3255 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3256 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3257 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3258 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3259 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3260 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3261 | // For floating-point precision of 12: |
| 3262 | // |
| 3263 | // LogOfMantissa = |
| 3264 | // -1.7417939f + |
| 3265 | // (2.8212026f + |
| 3266 | // (-1.4699568f + |
| 3267 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3268 | // |
| 3269 | // error 0.000061011436, which is 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3270 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3271 | getF32Constant(DAG, 0xbd67b6d6)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3272 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3273 | getF32Constant(DAG, 0x3ee4f4b8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3274 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3275 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3276 | getF32Constant(DAG, 0x3fbc278b)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3277 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3278 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3279 | getF32Constant(DAG, 0x40348e95)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3280 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3281 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3282 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3283 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3284 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3285 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3286 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3287 | // For floating-point precision of 18: |
| 3288 | // |
| 3289 | // LogOfMantissa = |
| 3290 | // -2.1072184f + |
| 3291 | // (4.2372794f + |
| 3292 | // (-3.7029485f + |
| 3293 | // (2.2781945f + |
| 3294 | // (-0.87823314f + |
| 3295 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3296 | // |
| 3297 | // error 0.0000023660568, which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3298 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3299 | getF32Constant(DAG, 0xbc91e5ac)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3300 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3301 | getF32Constant(DAG, 0x3e4350aa)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3302 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3303 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3304 | getF32Constant(DAG, 0x3f60d3e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3305 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3306 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3307 | getF32Constant(DAG, 0x4011cdf0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3308 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3309 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3310 | getF32Constant(DAG, 0x406cfd1c)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3311 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3312 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3313 | getF32Constant(DAG, 0x408797cb)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3314 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3315 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3316 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3317 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3318 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3319 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3320 | } |
| 3321 | } else { |
| 3322 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3323 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3324 | getValue(I.getOperand(1)).getValueType(), |
| 3325 | getValue(I.getOperand(1))); |
| 3326 | } |
| 3327 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3328 | setValue(&I, result); |
| 3329 | } |
| 3330 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3331 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3332 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3333 | void |
| 3334 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3335 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3336 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3337 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3338 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3339 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3340 | SDValue Op = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3341 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3342 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3343 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3344 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3345 | |
| 3346 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3347 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3348 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3349 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3350 | // Different possible minimax approximations of significand in |
| 3351 | // floating-point for various degrees of accuracy over [1,2]. |
| 3352 | if (LimitFloatPrecision <= 6) { |
| 3353 | // For floating-point precision of 6: |
| 3354 | // |
| 3355 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3356 | // |
| 3357 | // error 0.0049451742, which is more than 7 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3358 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3359 | getF32Constant(DAG, 0xbeb08fe0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3360 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3361 | getF32Constant(DAG, 0x40019463)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3362 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3363 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3364 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3365 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3366 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3367 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3368 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3369 | // For floating-point precision of 12: |
| 3370 | // |
| 3371 | // Log2ofMantissa = |
| 3372 | // -2.51285454f + |
| 3373 | // (4.07009056f + |
| 3374 | // (-2.12067489f + |
| 3375 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3376 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3377 | // error 0.0000876136000, which is better than 13 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3378 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3379 | getF32Constant(DAG, 0xbda7262e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3380 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3381 | getF32Constant(DAG, 0x3f25280b)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3382 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3383 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3384 | getF32Constant(DAG, 0x4007b923)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3385 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3386 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3387 | getF32Constant(DAG, 0x40823e2f)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3388 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3389 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3390 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3391 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3392 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3393 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3394 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3395 | // For floating-point precision of 18: |
| 3396 | // |
| 3397 | // Log2ofMantissa = |
| 3398 | // -3.0400495f + |
| 3399 | // (6.1129976f + |
| 3400 | // (-5.3420409f + |
| 3401 | // (3.2865683f + |
| 3402 | // (-1.2669343f + |
| 3403 | // (0.27515199f - |
| 3404 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3405 | // |
| 3406 | // error 0.0000018516, which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3407 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3408 | getF32Constant(DAG, 0xbcd2769e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3409 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3410 | getF32Constant(DAG, 0x3e8ce0b9)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3411 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3412 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3413 | getF32Constant(DAG, 0x3fa22ae7)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3414 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3415 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3416 | getF32Constant(DAG, 0x40525723)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3417 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3418 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3419 | getF32Constant(DAG, 0x40aaf200)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3420 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3421 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3422 | getF32Constant(DAG, 0x40c39dad)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3423 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3424 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3425 | getF32Constant(DAG, 0x4042902c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3426 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3427 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3428 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3429 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3430 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3431 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3432 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3433 | getValue(I.getOperand(1)).getValueType(), |
| 3434 | getValue(I.getOperand(1))); |
| 3435 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3436 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3437 | setValue(&I, result); |
| 3438 | } |
| 3439 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3440 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3441 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3442 | void |
| 3443 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3444 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3445 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3446 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3447 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3448 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3449 | SDValue Op = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3450 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3451 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3452 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3453 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3454 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3455 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3456 | |
| 3457 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3458 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3459 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3460 | |
| 3461 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3462 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3463 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3464 | // Log10ofMantissa = |
| 3465 | // -0.50419619f + |
| 3466 | // (0.60948995f - 0.10380950f * x) * x; |
| 3467 | // |
| 3468 | // error 0.0014886165, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3469 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3470 | getF32Constant(DAG, 0xbdd49a13)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3471 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3472 | getF32Constant(DAG, 0x3f1c0789)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3473 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3474 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3475 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3476 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3477 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3478 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3479 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3480 | // For floating-point precision of 12: |
| 3481 | // |
| 3482 | // Log10ofMantissa = |
| 3483 | // -0.64831180f + |
| 3484 | // (0.91751397f + |
| 3485 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3486 | // |
| 3487 | // error 0.00019228036, which is better than 12 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3488 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3489 | getF32Constant(DAG, 0x3d431f31)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3490 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3491 | getF32Constant(DAG, 0x3ea21fb2)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3492 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3493 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3494 | getF32Constant(DAG, 0x3f6ae232)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3495 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3496 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3497 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3498 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3499 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3500 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3501 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3502 | // For floating-point precision of 18: |
| 3503 | // |
| 3504 | // Log10ofMantissa = |
| 3505 | // -0.84299375f + |
| 3506 | // (1.5327582f + |
| 3507 | // (-1.0688956f + |
| 3508 | // (0.49102474f + |
| 3509 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3510 | // |
| 3511 | // error 0.0000037995730, which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3512 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3513 | getF32Constant(DAG, 0x3c5d51ce)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3514 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3515 | getF32Constant(DAG, 0x3e00685a)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3516 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3517 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3518 | getF32Constant(DAG, 0x3efb6798)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3519 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3520 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3521 | getF32Constant(DAG, 0x3f88d192)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3522 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3523 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3524 | getF32Constant(DAG, 0x3fc4316c)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3525 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3526 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3527 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3528 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3529 | result = DAG.getNode(ISD::FADD, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3530 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3531 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3532 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3533 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3534 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3535 | getValue(I.getOperand(1)).getValueType(), |
| 3536 | getValue(I.getOperand(1))); |
| 3537 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3538 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3539 | setValue(&I, result); |
| 3540 | } |
| 3541 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3542 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3543 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3544 | void |
| 3545 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3546 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3547 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3548 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3549 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3550 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3551 | SDValue Op = getValue(I.getOperand(1)); |
| 3552 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3553 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3554 | |
| 3555 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3556 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3557 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3558 | |
| 3559 | // IntegerPartOfX <<= 23; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3560 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3561 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3562 | |
| 3563 | if (LimitFloatPrecision <= 6) { |
| 3564 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3565 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3566 | // TwoToFractionalPartOfX = |
| 3567 | // 0.997535578f + |
| 3568 | // (0.735607626f + 0.252464424f * x) * x; |
| 3569 | // |
| 3570 | // error 0.0144103317, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3571 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3572 | getF32Constant(DAG, 0x3e814304)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3573 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3574 | getF32Constant(DAG, 0x3f3c50c8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3575 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3576 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3577 | getF32Constant(DAG, 0x3f7f5e7e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3578 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3579 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3580 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3581 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3582 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3583 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3584 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3585 | // For floating-point precision of 12: |
| 3586 | // |
| 3587 | // TwoToFractionalPartOfX = |
| 3588 | // 0.999892986f + |
| 3589 | // (0.696457318f + |
| 3590 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3591 | // |
| 3592 | // error 0.000107046256, which is 13 to 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3593 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3594 | getF32Constant(DAG, 0x3da235e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3595 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3596 | getF32Constant(DAG, 0x3e65b8f3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3597 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3598 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3599 | getF32Constant(DAG, 0x3f324b07)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3600 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3601 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3602 | getF32Constant(DAG, 0x3f7ff8fd)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3603 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3604 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3605 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3606 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3607 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3608 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3609 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3610 | // For floating-point precision of 18: |
| 3611 | // |
| 3612 | // TwoToFractionalPartOfX = |
| 3613 | // 0.999999982f + |
| 3614 | // (0.693148872f + |
| 3615 | // (0.240227044f + |
| 3616 | // (0.554906021e-1f + |
| 3617 | // (0.961591928e-2f + |
| 3618 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3619 | // error 2.47208000*10^(-7), which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3620 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3621 | getF32Constant(DAG, 0x3924b03e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3622 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3623 | getF32Constant(DAG, 0x3ab24b87)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3624 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3625 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3626 | getF32Constant(DAG, 0x3c1d8c17)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3627 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3628 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3629 | getF32Constant(DAG, 0x3d634a1d)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3630 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3631 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3632 | getF32Constant(DAG, 0x3e75fe14)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3633 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3634 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3635 | getF32Constant(DAG, 0x3f317234)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3636 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3637 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3638 | getF32Constant(DAG, 0x3f800000)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3639 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3640 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3641 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3642 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3643 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3644 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3645 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3646 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3647 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3648 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3649 | getValue(I.getOperand(1)).getValueType(), |
| 3650 | getValue(I.getOperand(1))); |
| 3651 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3652 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3653 | setValue(&I, result); |
| 3654 | } |
| 3655 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3656 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3657 | /// limited-precision mode with x == 10.0f. |
| 3658 | void |
| 3659 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3660 | SDValue result; |
| 3661 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3662 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3663 | bool IsExp10 = false; |
| 3664 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3665 | if (getValue(Val).getValueType() == MVT::f32 && |
| 3666 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3667 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3668 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3669 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3670 | APFloat Ten(10.0f); |
| 3671 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3672 | } |
| 3673 | } |
| 3674 | } |
| 3675 | |
| 3676 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3677 | SDValue Op = getValue(I.getOperand(2)); |
| 3678 | |
| 3679 | // Put the exponent in the right bit position for later addition to the |
| 3680 | // final result: |
| 3681 | // |
| 3682 | // #define LOG2OF10 3.3219281f |
| 3683 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3684 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3685 | getF32Constant(DAG, 0x40549a78)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3686 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3687 | |
| 3688 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3689 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3690 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3691 | |
| 3692 | // IntegerPartOfX <<= 23; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3693 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3694 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3695 | |
| 3696 | if (LimitFloatPrecision <= 6) { |
| 3697 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3698 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3699 | // twoToFractionalPartOfX = |
| 3700 | // 0.997535578f + |
| 3701 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3702 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3703 | // error 0.0144103317, which is 6 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3704 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3705 | getF32Constant(DAG, 0x3e814304)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3706 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3707 | getF32Constant(DAG, 0x3f3c50c8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3708 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3709 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3710 | getF32Constant(DAG, 0x3f7f5e7e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3711 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3712 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3713 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3714 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3715 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3716 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3717 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3718 | // For floating-point precision of 12: |
| 3719 | // |
| 3720 | // TwoToFractionalPartOfX = |
| 3721 | // 0.999892986f + |
| 3722 | // (0.696457318f + |
| 3723 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3724 | // |
| 3725 | // error 0.000107046256, which is 13 to 14 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3726 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3727 | getF32Constant(DAG, 0x3da235e3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3728 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3729 | getF32Constant(DAG, 0x3e65b8f3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3730 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3731 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3732 | getF32Constant(DAG, 0x3f324b07)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3733 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3734 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3735 | getF32Constant(DAG, 0x3f7ff8fd)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3736 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3737 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3738 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3739 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3740 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3741 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3742 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3743 | // For floating-point precision of 18: |
| 3744 | // |
| 3745 | // TwoToFractionalPartOfX = |
| 3746 | // 0.999999982f + |
| 3747 | // (0.693148872f + |
| 3748 | // (0.240227044f + |
| 3749 | // (0.554906021e-1f + |
| 3750 | // (0.961591928e-2f + |
| 3751 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3752 | // error 2.47208000*10^(-7), which is better than 18 bits |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3753 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3754 | getF32Constant(DAG, 0x3924b03e)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3755 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3756 | getF32Constant(DAG, 0x3ab24b87)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3757 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3758 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3759 | getF32Constant(DAG, 0x3c1d8c17)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3760 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3761 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3762 | getF32Constant(DAG, 0x3d634a1d)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3763 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3764 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3765 | getF32Constant(DAG, 0x3e75fe14)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3766 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3767 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3768 | getF32Constant(DAG, 0x3f317234)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3769 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3770 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3771 | getF32Constant(DAG, 0x3f800000)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3772 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3773 | SDValue TwoToFractionalPartOfX = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3774 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3775 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3776 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3777 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3778 | } |
| 3779 | } else { |
| 3780 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3781 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3782 | getValue(I.getOperand(1)).getValueType(), |
| 3783 | getValue(I.getOperand(1)), |
| 3784 | getValue(I.getOperand(2))); |
| 3785 | } |
| 3786 | |
| 3787 | setValue(&I, result); |
| 3788 | } |
| 3789 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3790 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3791 | /// we want to emit this as a call to a named external function, return the name |
| 3792 | /// otherwise lower it and return null. |
| 3793 | const char * |
| 3794 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3795 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3796 | switch (Intrinsic) { |
| 3797 | default: |
| 3798 | // By default, turn this into a target intrinsic node. |
| 3799 | visitTargetIntrinsic(I, Intrinsic); |
| 3800 | return 0; |
| 3801 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3802 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3803 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3804 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3805 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3806 | getValue(I.getOperand(1)))); |
| 3807 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3808 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3809 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3810 | getValue(I.getOperand(1)))); |
| 3811 | return 0; |
| 3812 | case Intrinsic::setjmp: |
| 3813 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3814 | break; |
| 3815 | case Intrinsic::longjmp: |
| 3816 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3817 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3818 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3819 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3820 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3821 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3822 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3823 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3824 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3825 | return 0; |
| 3826 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3827 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3828 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3829 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3830 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3831 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3832 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3833 | I.getOperand(1), 0)); |
| 3834 | return 0; |
| 3835 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3836 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3837 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3838 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3839 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3840 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3841 | |
| 3842 | // If the source and destination are known to not be aliases, we can |
| 3843 | // lower memmove as memcpy. |
| 3844 | uint64_t Size = -1ULL; |
| 3845 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3846 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3847 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3848 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3849 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3850 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3851 | return 0; |
| 3852 | } |
| 3853 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3854 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3855 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3856 | return 0; |
| 3857 | } |
| 3858 | case Intrinsic::dbg_stoppoint: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3859 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3860 | if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3861 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3862 | DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo()); |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3863 | setCurDebugLoc(Loc); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3864 | |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 3865 | if (OptLevel == CodeGenOpt::None) |
Chris Lattner | af29a52 | 2009-05-04 22:10:05 +0000 | [diff] [blame] | 3866 | DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(), |
Dale Johannesen | beaec4c | 2009-03-25 17:36:08 +0000 | [diff] [blame] | 3867 | SPI.getLine(), |
| 3868 | SPI.getColumn(), |
| 3869 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3870 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3871 | return 0; |
| 3872 | } |
| 3873 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3874 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3875 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3876 | if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW |
| 3877 | && DW->ShouldEmitDwarfDebug()) { |
Bill Wendling | df7d5d3 | 2009-05-21 00:04:55 +0000 | [diff] [blame] | 3878 | unsigned LabelID = |
| 3879 | DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3880 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3881 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3882 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3883 | return 0; |
| 3884 | } |
| 3885 | case Intrinsic::dbg_region_end: { |
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 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3888 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3889 | if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW |
| 3890 | || !DW->ShouldEmitDwarfDebug()) |
| 3891 | return 0; |
Bill Wendling | 6c4311d | 2009-05-08 21:14:49 +0000 | [diff] [blame] | 3892 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3893 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3894 | DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext())); |
| 3895 | |
| 3896 | if (isInlinedFnEnd(REI, MF.getFunction())) { |
| 3897 | // This is end of inlined function. Debugging information for inlined |
| 3898 | // function is not handled yet (only supported by FastISel). |
| 3899 | if (OptLevel == CodeGenOpt::None) { |
| 3900 | unsigned ID = DW->RecordInlinedFnEnd(Subprogram); |
| 3901 | if (ID != 0) |
| 3902 | // Returned ID is 0 if this is unbalanced "end of inlined |
| 3903 | // scope". This could happen if optimizer eats dbg intrinsics or |
| 3904 | // "beginning of inlined scope" is not recoginized due to missing |
| 3905 | // location info. In such cases, do ignore this region.end. |
| 3906 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3907 | getRoot(), ID)); |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3908 | } |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3909 | return 0; |
| 3910 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3911 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3912 | unsigned LabelID = |
| 3913 | DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext())); |
| 3914 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3915 | getRoot(), LabelID)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3916 | return 0; |
| 3917 | } |
| 3918 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3919 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3920 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3921 | if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None)) |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3922 | return 0; |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3923 | |
Argyrios Kyrtzidis | 77eaa68 | 2009-05-03 08:50:41 +0000 | [diff] [blame] | 3924 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3925 | // This is a beginning of an inlined function. |
| 3926 | if (isInlinedFnStart(FSI, MF.getFunction())) { |
| 3927 | if (OptLevel != CodeGenOpt::None) |
| 3928 | // FIXME: Debugging informaation for inlined function is only |
| 3929 | // supported at CodeGenOpt::Node. |
| 3930 | return 0; |
| 3931 | |
Bill Wendling | c677fe5 | 2009-05-10 00:10:50 +0000 | [diff] [blame] | 3932 | DebugLoc PrevLoc = CurDebugLoc; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3933 | // If llvm.dbg.func.start is seen in a new block before any |
| 3934 | // llvm.dbg.stoppoint intrinsic then the location info is unknown. |
| 3935 | // FIXME : Why DebugLoc is reset at the beginning of each block ? |
| 3936 | if (PrevLoc.isUnknown()) |
| 3937 | return 0; |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3938 | |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3939 | // Record the source line. |
| 3940 | setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
| 3941 | |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3942 | if (!DW || !DW->ShouldEmitDwarfDebug()) |
| 3943 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3944 | DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc); |
| 3945 | DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram())); |
| 3946 | DICompileUnit CU(PrevLocTpl.CompileUnit); |
| 3947 | unsigned LabelID = DW->RecordInlinedFnStart(SP, CU, |
| 3948 | PrevLocTpl.Line, |
| 3949 | PrevLocTpl.Col); |
| 3950 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3951 | getRoot(), LabelID)); |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3952 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3953 | } |
| 3954 | |
Devang Patel | 07b0ec0 | 2009-07-02 00:08:09 +0000 | [diff] [blame] | 3955 | // This is a beginning of a new function. |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3956 | MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo())); |
Jeffrey Yasskin | 32360a7 | 2009-07-16 21:07:26 +0000 | [diff] [blame] | 3957 | |
| 3958 | if (!DW || !DW->ShouldEmitDwarfDebug()) |
| 3959 | return 0; |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3960 | // llvm.dbg.func_start also defines beginning of function scope. |
| 3961 | DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3962 | return 0; |
| 3963 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3964 | case Intrinsic::dbg_declare: { |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3965 | if (OptLevel != CodeGenOpt::None) |
| 3966 | // FIXME: Variable debug info is not supported here. |
| 3967 | return 0; |
| 3968 | |
| 3969 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 3970 | if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None)) |
| 3971 | return 0; |
| 3972 | |
| 3973 | Value *Variable = DI.getVariable(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3974 | DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(), |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 3975 | getValue(DI.getAddress()), getValue(Variable))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3976 | return 0; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3977 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3978 | case Intrinsic::eh_exception: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3979 | // Insert the EXCEPTIONADDR instruction. |
Duncan Sands | b0f1e17 | 2009-05-22 20:36:31 +0000 | [diff] [blame] | 3980 | assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3981 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3982 | SDValue Ops[1]; |
| 3983 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3984 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3985 | setValue(&I, Op); |
| 3986 | DAG.setRoot(Op.getValue(1)); |
| 3987 | return 0; |
| 3988 | } |
| 3989 | |
| 3990 | case Intrinsic::eh_selector_i32: |
| 3991 | case Intrinsic::eh_selector_i64: { |
| 3992 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
Evan Cheng | 7cefd80 | 2009-08-14 01:56:37 +0000 | [diff] [blame] | 3993 | EVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? MVT::i32 : MVT::i64); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3994 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3995 | if (MMI) { |
| 3996 | if (CurMBB->isLandingPad()) |
| 3997 | AddCatchInfo(I, MMI, CurMBB); |
| 3998 | else { |
| 3999 | #ifndef NDEBUG |
| 4000 | FuncInfo.CatchInfoLost.insert(&I); |
| 4001 | #endif |
| 4002 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 4003 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 4004 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4005 | } |
| 4006 | |
| 4007 | // Insert the EHSELECTION instruction. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4008 | SDVTList VTs = DAG.getVTList(VT, MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4009 | SDValue Ops[2]; |
| 4010 | Ops[0] = getValue(I.getOperand(1)); |
| 4011 | Ops[1] = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4012 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4013 | setValue(&I, Op); |
| 4014 | DAG.setRoot(Op.getValue(1)); |
| 4015 | } else { |
| 4016 | setValue(&I, DAG.getConstant(0, VT)); |
| 4017 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4018 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4019 | return 0; |
| 4020 | } |
| 4021 | |
| 4022 | case Intrinsic::eh_typeid_for_i32: |
| 4023 | case Intrinsic::eh_typeid_for_i64: { |
| 4024 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4025 | EVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4026 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4027 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4028 | if (MMI) { |
| 4029 | // Find the type id for the given typeinfo. |
| 4030 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4031 | |
| 4032 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4033 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4034 | } else { |
| 4035 | // Return something different to eh_selector. |
| 4036 | setValue(&I, DAG.getConstant(1, VT)); |
| 4037 | } |
| 4038 | |
| 4039 | return 0; |
| 4040 | } |
| 4041 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4042 | case Intrinsic::eh_return_i32: |
| 4043 | case Intrinsic::eh_return_i64: |
| 4044 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4045 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4046 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4047 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4048 | getControlRoot(), |
| 4049 | getValue(I.getOperand(1)), |
| 4050 | getValue(I.getOperand(2)))); |
| 4051 | } else { |
| 4052 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4053 | } |
| 4054 | |
| 4055 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4056 | case Intrinsic::eh_unwind_init: |
| 4057 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4058 | MMI->setCallsUnwindInit(true); |
| 4059 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4060 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4061 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4062 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4063 | case Intrinsic::eh_dwarf_cfa: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4064 | EVT VT = getValue(I.getOperand(1)).getValueType(); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4065 | SDValue CfaArg; |
| 4066 | if (VT.bitsGT(TLI.getPointerTy())) |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4067 | CfaArg = DAG.getNode(ISD::TRUNCATE, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4068 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
| 4069 | else |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4070 | CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4071 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4072 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4073 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4074 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4075 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4076 | TLI.getPointerTy()), |
| 4077 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4078 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4079 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4080 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4081 | TLI.getPointerTy(), |
| 4082 | DAG.getConstant(0, |
| 4083 | TLI.getPointerTy())), |
| 4084 | Offset)); |
| 4085 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4086 | } |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4087 | case Intrinsic::convertff: |
| 4088 | case Intrinsic::convertfsi: |
| 4089 | case Intrinsic::convertfui: |
| 4090 | case Intrinsic::convertsif: |
| 4091 | case Intrinsic::convertuif: |
| 4092 | case Intrinsic::convertss: |
| 4093 | case Intrinsic::convertsu: |
| 4094 | case Intrinsic::convertus: |
| 4095 | case Intrinsic::convertuu: { |
| 4096 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4097 | switch (Intrinsic) { |
| 4098 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4099 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4100 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4101 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4102 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4103 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4104 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4105 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4106 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4107 | } |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4108 | EVT DestVT = TLI.getValueType(I.getType()); |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4109 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4110 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4111 | DAG.getValueType(DestVT), |
| 4112 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4113 | getValue(I.getOperand(2)), |
| 4114 | getValue(I.getOperand(3)), |
| 4115 | Code)); |
| 4116 | return 0; |
| 4117 | } |
| 4118 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4119 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4120 | setValue(&I, DAG.getNode(ISD::FSQRT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4121 | getValue(I.getOperand(1)).getValueType(), |
| 4122 | getValue(I.getOperand(1)))); |
| 4123 | return 0; |
| 4124 | case Intrinsic::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4125 | setValue(&I, DAG.getNode(ISD::FPOWI, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4126 | getValue(I.getOperand(1)).getValueType(), |
| 4127 | getValue(I.getOperand(1)), |
| 4128 | getValue(I.getOperand(2)))); |
| 4129 | return 0; |
| 4130 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4131 | setValue(&I, DAG.getNode(ISD::FSIN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4132 | getValue(I.getOperand(1)).getValueType(), |
| 4133 | getValue(I.getOperand(1)))); |
| 4134 | return 0; |
| 4135 | case Intrinsic::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4136 | setValue(&I, DAG.getNode(ISD::FCOS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4137 | getValue(I.getOperand(1)).getValueType(), |
| 4138 | getValue(I.getOperand(1)))); |
| 4139 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4140 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4141 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4142 | return 0; |
| 4143 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4144 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4145 | return 0; |
| 4146 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4147 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4148 | return 0; |
| 4149 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4150 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4151 | return 0; |
| 4152 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4153 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4154 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4155 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4156 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4157 | return 0; |
| 4158 | case Intrinsic::pcmarker: { |
| 4159 | SDValue Tmp = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4160 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4161 | return 0; |
| 4162 | } |
| 4163 | case Intrinsic::readcyclecounter: { |
| 4164 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4165 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4166 | DAG.getVTList(MVT::i64, MVT::Other), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4167 | &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4168 | setValue(&I, Tmp); |
| 4169 | DAG.setRoot(Tmp.getValue(1)); |
| 4170 | return 0; |
| 4171 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4172 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4173 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4174 | getValue(I.getOperand(1)).getValueType(), |
| 4175 | getValue(I.getOperand(1)))); |
| 4176 | return 0; |
| 4177 | case Intrinsic::cttz: { |
| 4178 | SDValue Arg = getValue(I.getOperand(1)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4179 | EVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4180 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4181 | setValue(&I, result); |
| 4182 | return 0; |
| 4183 | } |
| 4184 | case Intrinsic::ctlz: { |
| 4185 | SDValue Arg = getValue(I.getOperand(1)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4186 | EVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4187 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4188 | setValue(&I, result); |
| 4189 | return 0; |
| 4190 | } |
| 4191 | case Intrinsic::ctpop: { |
| 4192 | SDValue Arg = getValue(I.getOperand(1)); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4193 | EVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4194 | SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4195 | setValue(&I, result); |
| 4196 | return 0; |
| 4197 | } |
| 4198 | case Intrinsic::stacksave: { |
| 4199 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4200 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4201 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4202 | setValue(&I, Tmp); |
| 4203 | DAG.setRoot(Tmp.getValue(1)); |
| 4204 | return 0; |
| 4205 | } |
| 4206 | case Intrinsic::stackrestore: { |
| 4207 | SDValue Tmp = getValue(I.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4208 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4209 | return 0; |
| 4210 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4211 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4212 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4213 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4214 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4215 | EVT PtrTy = TLI.getPointerTy(); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4216 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4217 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4218 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4219 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4220 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4221 | MFI->setStackProtectorIndex(FI); |
| 4222 | |
| 4223 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4224 | |
| 4225 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4226 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4227 | PseudoSourceValue::getFixedStack(FI), |
| 4228 | 0, true); |
| 4229 | setValue(&I, Result); |
| 4230 | DAG.setRoot(Result); |
| 4231 | return 0; |
| 4232 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4233 | case Intrinsic::var_annotation: |
| 4234 | // Discard annotate attributes |
| 4235 | return 0; |
| 4236 | |
| 4237 | case Intrinsic::init_trampoline: { |
| 4238 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4239 | |
| 4240 | SDValue Ops[6]; |
| 4241 | Ops[0] = getRoot(); |
| 4242 | Ops[1] = getValue(I.getOperand(1)); |
| 4243 | Ops[2] = getValue(I.getOperand(2)); |
| 4244 | Ops[3] = getValue(I.getOperand(3)); |
| 4245 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4246 | Ops[5] = DAG.getSrcValue(F); |
| 4247 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4248 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4249 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4250 | Ops, 6); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4251 | |
| 4252 | setValue(&I, Tmp); |
| 4253 | DAG.setRoot(Tmp.getValue(1)); |
| 4254 | return 0; |
| 4255 | } |
| 4256 | |
| 4257 | case Intrinsic::gcroot: |
| 4258 | if (GFI) { |
| 4259 | Value *Alloca = I.getOperand(1); |
| 4260 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4261 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4262 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4263 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4264 | } |
| 4265 | return 0; |
| 4266 | |
| 4267 | case Intrinsic::gcread: |
| 4268 | case Intrinsic::gcwrite: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 4269 | llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4270 | return 0; |
| 4271 | |
| 4272 | case Intrinsic::flt_rounds: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4273 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4274 | return 0; |
| 4275 | } |
| 4276 | |
| 4277 | case Intrinsic::trap: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4278 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4279 | return 0; |
| 4280 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4281 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4282 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4283 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4284 | case Intrinsic::sadd_with_overflow: |
| 4285 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4286 | case Intrinsic::usub_with_overflow: |
| 4287 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4288 | case Intrinsic::ssub_with_overflow: |
| 4289 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4290 | case Intrinsic::umul_with_overflow: |
| 4291 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4292 | case Intrinsic::smul_with_overflow: |
| 4293 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4294 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4295 | case Intrinsic::prefetch: { |
| 4296 | SDValue Ops[4]; |
| 4297 | Ops[0] = getRoot(); |
| 4298 | Ops[1] = getValue(I.getOperand(1)); |
| 4299 | Ops[2] = getValue(I.getOperand(2)); |
| 4300 | Ops[3] = getValue(I.getOperand(3)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4301 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4302 | return 0; |
| 4303 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4304 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4305 | case Intrinsic::memory_barrier: { |
| 4306 | SDValue Ops[6]; |
| 4307 | Ops[0] = getRoot(); |
| 4308 | for (int x = 1; x < 6; ++x) |
| 4309 | Ops[x] = getValue(I.getOperand(x)); |
| 4310 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4311 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4312 | return 0; |
| 4313 | } |
| 4314 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4315 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4316 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4317 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4318 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4319 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4320 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4321 | getValue(I.getOperand(2)), |
| 4322 | getValue(I.getOperand(3)), |
| 4323 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4324 | setValue(&I, L); |
| 4325 | DAG.setRoot(L.getValue(1)); |
| 4326 | return 0; |
| 4327 | } |
| 4328 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4329 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4330 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4331 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4332 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4333 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4334 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4335 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4336 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4337 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4338 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4339 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4340 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4341 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4342 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4343 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4344 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4345 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4346 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4347 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4348 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4349 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4350 | } |
| 4351 | } |
| 4352 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4353 | /// Test if the given instruction is in a position to be optimized |
| 4354 | /// with a tail-call. This roughly means that it's in a block with |
| 4355 | /// a return and there's nothing that needs to be scheduled |
| 4356 | /// between it and the return. |
| 4357 | /// |
| 4358 | /// This function only tests target-independent requirements. |
| 4359 | /// For target-dependent requirements, a target should override |
| 4360 | /// TargetLowering::IsEligibleForTailCallOptimization. |
| 4361 | /// |
| 4362 | static bool |
| 4363 | isInTailCallPosition(const Instruction *I, Attributes RetAttr, |
| 4364 | const TargetLowering &TLI) { |
| 4365 | const BasicBlock *ExitBB = I->getParent(); |
| 4366 | const TerminatorInst *Term = ExitBB->getTerminator(); |
| 4367 | const ReturnInst *Ret = dyn_cast<ReturnInst>(Term); |
| 4368 | const Function *F = ExitBB->getParent(); |
| 4369 | |
| 4370 | // The block must end in a return statement or an unreachable. |
| 4371 | if (!Ret && !isa<UnreachableInst>(Term)) return false; |
| 4372 | |
| 4373 | // If I will have a chain, make sure no other instruction that will have a |
| 4374 | // chain interposes between I and the return. |
| 4375 | if (I->mayHaveSideEffects() || I->mayReadFromMemory() || |
| 4376 | !I->isSafeToSpeculativelyExecute()) |
| 4377 | for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ; |
| 4378 | --BBI) { |
| 4379 | if (&*BBI == I) |
| 4380 | break; |
| 4381 | if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || |
| 4382 | !BBI->isSafeToSpeculativelyExecute()) |
| 4383 | return false; |
| 4384 | } |
| 4385 | |
| 4386 | // If the block ends with a void return or unreachable, it doesn't matter |
| 4387 | // what the call's return type is. |
| 4388 | if (!Ret || Ret->getNumOperands() == 0) return true; |
| 4389 | |
| 4390 | // Conservatively require the attributes of the call to match those of |
| 4391 | // the return. |
| 4392 | if (F->getAttributes().getRetAttributes() != RetAttr) |
| 4393 | return false; |
| 4394 | |
| 4395 | // Otherwise, make sure the unmodified return value of I is the return value. |
| 4396 | for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ; |
| 4397 | U = dyn_cast<Instruction>(U->getOperand(0))) { |
| 4398 | if (!U) |
| 4399 | return false; |
| 4400 | if (!U->hasOneUse()) |
| 4401 | return false; |
| 4402 | if (U == I) |
| 4403 | break; |
| 4404 | // Check for a truly no-op truncate. |
| 4405 | if (isa<TruncInst>(U) && |
| 4406 | TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType())) |
| 4407 | continue; |
| 4408 | // Check for a truly no-op bitcast. |
| 4409 | if (isa<BitCastInst>(U) && |
| 4410 | (U->getOperand(0)->getType() == U->getType() || |
| 4411 | (isa<PointerType>(U->getOperand(0)->getType()) && |
| 4412 | isa<PointerType>(U->getType())))) |
| 4413 | continue; |
| 4414 | // Otherwise it's not a true no-op. |
| 4415 | return false; |
| 4416 | } |
| 4417 | |
| 4418 | return true; |
| 4419 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4420 | |
| 4421 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4422 | bool isTailCall, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4423 | MachineBasicBlock *LandingPad) { |
| 4424 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4425 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4426 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4427 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4428 | |
| 4429 | TargetLowering::ArgListTy Args; |
| 4430 | TargetLowering::ArgListEntry Entry; |
| 4431 | Args.reserve(CS.arg_size()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4432 | unsigned j = 1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4433 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4434 | i != e; ++i, ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4435 | SDValue ArgNode = getValue(*i); |
| 4436 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4437 | |
| 4438 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4439 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4440 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4441 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4442 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4443 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4444 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4445 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4446 | Args.push_back(Entry); |
| 4447 | } |
| 4448 | |
| 4449 | if (LandingPad && MMI) { |
| 4450 | // Insert a label before the invoke call to mark the try range. This can be |
| 4451 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4452 | BeginLabel = MMI->NextLabelID(); |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 4453 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4454 | // Both PendingLoads and PendingExports must be flushed here; |
| 4455 | // this call might not return. |
| 4456 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4457 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4458 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4459 | } |
| 4460 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4461 | // Check if target-independent constraints permit a tail call here. |
| 4462 | // Target-dependent constraints are checked within TLI.LowerCallTo. |
| 4463 | if (isTailCall && |
| 4464 | !isInTailCallPosition(CS.getInstruction(), |
| 4465 | CS.getAttributes().getRetAttributes(), |
| 4466 | TLI)) |
| 4467 | isTailCall = false; |
| 4468 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4469 | std::pair<SDValue,SDValue> Result = |
| 4470 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4471 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4472 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 4473 | CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4474 | CS.getCallingConv(), |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4475 | isTailCall, |
| 4476 | !CS.getInstruction()->use_empty(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4477 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4478 | assert((isTailCall || Result.second.getNode()) && |
| 4479 | "Non-null chain expected with non-tail call!"); |
| 4480 | assert((Result.second.getNode() || !Result.first.getNode()) && |
| 4481 | "Null value expected with tail call!"); |
| 4482 | if (Result.first.getNode()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4483 | setValue(CS.getInstruction(), Result.first); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4484 | // As a special case, a null chain means that a tail call has |
| 4485 | // been emitted and the DAG root is already updated. |
| 4486 | if (Result.second.getNode()) |
| 4487 | DAG.setRoot(Result.second); |
| 4488 | else |
| 4489 | HasTailCall = true; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4490 | |
| 4491 | if (LandingPad && MMI) { |
| 4492 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4493 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4494 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4495 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4496 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4497 | |
| 4498 | // Inform MachineModuleInfo of range. |
| 4499 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4500 | } |
| 4501 | } |
| 4502 | |
| 4503 | |
| 4504 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4505 | const char *RenameFn = 0; |
| 4506 | if (Function *F = I.getCalledFunction()) { |
| 4507 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4508 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4509 | if (II) { |
| 4510 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4511 | RenameFn = visitIntrinsicCall(I, IID); |
| 4512 | if (!RenameFn) |
| 4513 | return; |
| 4514 | } |
| 4515 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4516 | if (unsigned IID = F->getIntrinsicID()) { |
| 4517 | RenameFn = visitIntrinsicCall(I, IID); |
| 4518 | if (!RenameFn) |
| 4519 | return; |
| 4520 | } |
| 4521 | } |
| 4522 | |
| 4523 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4524 | // can't be a library call. |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4525 | if (!F->hasLocalLinkage() && F->hasName()) { |
| 4526 | StringRef Name = F->getName(); |
| 4527 | if (Name == "copysign" || Name == "copysignf") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4528 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4529 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4530 | I.getType() == I.getOperand(1)->getType() && |
| 4531 | I.getType() == I.getOperand(2)->getType()) { |
| 4532 | SDValue LHS = getValue(I.getOperand(1)); |
| 4533 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4534 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4535 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4536 | return; |
| 4537 | } |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4538 | } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4539 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4540 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4541 | I.getType() == I.getOperand(1)->getType()) { |
| 4542 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4543 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4544 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4545 | return; |
| 4546 | } |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4547 | } else if (Name == "sin" || Name == "sinf" || Name == "sinl") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4548 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4549 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4550 | I.getType() == I.getOperand(1)->getType()) { |
| 4551 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4552 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4553 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4554 | return; |
| 4555 | } |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 4556 | } else if (Name == "cos" || Name == "cosf" || Name == "cosl") { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4557 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4558 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4559 | I.getType() == I.getOperand(1)->getType()) { |
| 4560 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4561 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4562 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4563 | return; |
| 4564 | } |
| 4565 | } |
| 4566 | } |
| 4567 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4568 | visitInlineAsm(&I); |
| 4569 | return; |
| 4570 | } |
| 4571 | |
| 4572 | SDValue Callee; |
| 4573 | if (!RenameFn) |
| 4574 | Callee = getValue(I.getOperand(0)); |
| 4575 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4576 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4577 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 4578 | // Check if we can potentially perform a tail call. More detailed |
| 4579 | // checking is be done within LowerCallTo, after more information |
| 4580 | // about the call is known. |
| 4581 | bool isTailCall = PerformTailCallOpt && I.isTailCall(); |
| 4582 | |
| 4583 | LowerCallTo(&I, Callee, isTailCall); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4584 | } |
| 4585 | |
| 4586 | |
| 4587 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4588 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4589 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4590 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4591 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4592 | SDValue &Chain, |
| 4593 | SDValue *Flag) const { |
| 4594 | // Assemble the legal parts into the final values. |
| 4595 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4596 | SmallVector<SDValue, 8> Parts; |
| 4597 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4598 | // Copy the legal parts from the registers. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4599 | EVT ValueVT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4600 | unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4601 | EVT RegisterVT = RegVTs[Value]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4602 | |
| 4603 | Parts.resize(NumRegs); |
| 4604 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4605 | SDValue P; |
| 4606 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4607 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4608 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4609 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4610 | *Flag = P.getValue(2); |
| 4611 | } |
| 4612 | Chain = P.getValue(1); |
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 | // If the source register was virtual and if we know something about it, |
| 4615 | // add an assert node. |
| 4616 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4617 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4618 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4619 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4620 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4621 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4622 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4623 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4624 | unsigned NumSignBits = LOI.NumSignBits; |
| 4625 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4626 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4627 | // FIXME: We capture more information than the dag can represent. For |
| 4628 | // now, just use the tightest assertzext/assertsext possible. |
| 4629 | bool isSExt = true; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4630 | EVT FromVT(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4631 | if (NumSignBits == RegSize) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4632 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4633 | else if (NumZeroBits >= RegSize-1) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4634 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4635 | else if (NumSignBits > RegSize-8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4636 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4637 | else if (NumZeroBits >= RegSize-8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4638 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4639 | else if (NumSignBits > RegSize-16) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4640 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4641 | else if (NumZeroBits >= RegSize-16) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4642 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4643 | else if (NumSignBits > RegSize-32) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4644 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4645 | else if (NumZeroBits >= RegSize-32) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4646 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4647 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4648 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4649 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4650 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4651 | |
| 4652 | } |
| 4653 | } |
| 4654 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4655 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4656 | Parts[i] = P; |
| 4657 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4658 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4659 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4660 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4661 | Part += NumRegs; |
| 4662 | Parts.clear(); |
| 4663 | } |
| 4664 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4665 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4666 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4667 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4668 | } |
| 4669 | |
| 4670 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4671 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4672 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4673 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4674 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4675 | SDValue &Chain, SDValue *Flag) const { |
| 4676 | // Get the list of the values's legal parts. |
| 4677 | unsigned NumRegs = Regs.size(); |
| 4678 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4679 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4680 | EVT ValueVT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4681 | unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4682 | EVT RegisterVT = RegVTs[Value]; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4683 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4684 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4685 | &Parts[Part], NumParts, RegisterVT); |
| 4686 | Part += NumParts; |
| 4687 | } |
| 4688 | |
| 4689 | // Copy the parts into the registers. |
| 4690 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4691 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4692 | SDValue Part; |
| 4693 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4694 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4695 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4696 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4697 | *Flag = Part.getValue(1); |
| 4698 | } |
| 4699 | Chains[i] = Part.getValue(0); |
| 4700 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4701 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4702 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4703 | // 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] | 4704 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4705 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4706 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4707 | // user as well as a successor (the TF operands are flagged to the user). |
| 4708 | // c1, f1 = CopyToReg |
| 4709 | // c2, f2 = CopyToReg |
| 4710 | // c3 = TokenFactor c1, c2 |
| 4711 | // ... |
| 4712 | // = op c3, ..., f2 |
| 4713 | Chain = Chains[NumRegs-1]; |
| 4714 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4715 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4716 | } |
| 4717 | |
| 4718 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4719 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4720 | /// values added into it. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4721 | void RegsForValue::AddInlineAsmOperands(unsigned Code, |
| 4722 | bool HasMatching,unsigned MatchingIdx, |
| 4723 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4724 | std::vector<SDValue> &Ops) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4725 | EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4726 | assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!"); |
| 4727 | unsigned Flag = Code | (Regs.size() << 3); |
| 4728 | if (HasMatching) |
| 4729 | Flag |= 0x80000000 | (MatchingIdx << 16); |
| 4730 | Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4731 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4732 | unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4733 | EVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4734 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4735 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4736 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4737 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4738 | } |
| 4739 | } |
| 4740 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4741 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4742 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4743 | /// register class for the register. Otherwise, return null. |
| 4744 | static const TargetRegisterClass * |
| 4745 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4746 | const TargetLowering &TLI, |
| 4747 | const TargetRegisterInfo *TRI) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4748 | EVT FoundVT = MVT::Other; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4749 | const TargetRegisterClass *FoundRC = 0; |
| 4750 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4751 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4752 | EVT ThisVT = MVT::Other; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4753 | |
| 4754 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4755 | // 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] | 4756 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4757 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4758 | I != E; ++I) { |
| 4759 | if (TLI.isTypeLegal(*I)) { |
| 4760 | // If we have already found this register in a different register class, |
| 4761 | // choose the one with the largest VT specified. For example, on |
| 4762 | // PowerPC, we favor f64 register classes over f32. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4763 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4764 | ThisVT = *I; |
| 4765 | break; |
| 4766 | } |
| 4767 | } |
| 4768 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4769 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4770 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4771 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4772 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4773 | // frame pointer in functions that need it (due to them not being taken |
| 4774 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4775 | // yet). This is a slight code pessimization, but should still work. |
| 4776 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4777 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4778 | if (*I == Reg) { |
| 4779 | // We found a matching register class. Keep looking at others in case |
| 4780 | // we find one with larger registers that this physreg is also in. |
| 4781 | FoundRC = RC; |
| 4782 | FoundVT = ThisVT; |
| 4783 | break; |
| 4784 | } |
| 4785 | } |
| 4786 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4787 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4788 | |
| 4789 | |
| 4790 | namespace llvm { |
| 4791 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4792 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4793 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4794 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4795 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4796 | /// CallOperand - If this is the result output operand or a clobber |
| 4797 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4798 | /// This gets modified as the asm is processed. |
| 4799 | SDValue CallOperand; |
| 4800 | |
| 4801 | /// AssignedRegs - If this is a register or register class operand, this |
| 4802 | /// contains the set of register corresponding to the operand. |
| 4803 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4804 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4805 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4806 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4807 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4808 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4809 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4810 | /// busy in OutputRegs/InputRegs. |
| 4811 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4812 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4813 | std::set<unsigned> &InputRegs, |
| 4814 | const TargetRegisterInfo &TRI) const { |
| 4815 | if (isOutReg) { |
| 4816 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4817 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4818 | } |
| 4819 | if (isInReg) { |
| 4820 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4821 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4822 | } |
| 4823 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4824 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4825 | /// getCallOperandValEVT - Return the EVT of the Value* that this operand |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4826 | /// corresponds to. If there is no Value* for this operand, it returns |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4827 | /// MVT::Other. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 4828 | EVT getCallOperandValEVT(LLVMContext &Context, |
| 4829 | const TargetLowering &TLI, |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4830 | const TargetData *TD) const { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4831 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4832 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4833 | if (isa<BasicBlock>(CallOperandVal)) |
| 4834 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4835 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4836 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4837 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4838 | // If this is an indirect operand, the operand is a pointer to the |
| 4839 | // accessed type. |
| 4840 | if (isIndirect) |
| 4841 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4842 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4843 | // If OpTy is not a single value, it may be a struct/union that we |
| 4844 | // can tile with integers. |
| 4845 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4846 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4847 | switch (BitSize) { |
| 4848 | default: break; |
| 4849 | case 1: |
| 4850 | case 8: |
| 4851 | case 16: |
| 4852 | case 32: |
| 4853 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4854 | case 128: |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 4855 | OpTy = IntegerType::get(Context, BitSize); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4856 | break; |
| 4857 | } |
| 4858 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4859 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4860 | return TLI.getValueType(OpTy, true); |
| 4861 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4862 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4863 | private: |
| 4864 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4865 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4866 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4867 | const TargetRegisterInfo &TRI) { |
| 4868 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4869 | Regs.insert(Reg); |
| 4870 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4871 | for (; *Aliases; ++Aliases) |
| 4872 | Regs.insert(*Aliases); |
| 4873 | } |
| 4874 | }; |
| 4875 | } // end llvm namespace. |
| 4876 | |
| 4877 | |
| 4878 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4879 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4880 | /// register allocator handle the assignment process. However, if the asm uses |
| 4881 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4882 | /// allocation. This produces generally horrible, but correct, code. |
| 4883 | /// |
| 4884 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4885 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4886 | /// |
| 4887 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4888 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4889 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4890 | std::set<unsigned> &InputRegs) { |
Dan Gohman | 0d24bfb | 2009-08-15 02:06:22 +0000 | [diff] [blame] | 4891 | LLVMContext &Context = FuncInfo.Fn->getContext(); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4892 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4893 | // Compute whether this value requires an input register, an output register, |
| 4894 | // or both. |
| 4895 | bool isOutReg = false; |
| 4896 | bool isInReg = false; |
| 4897 | switch (OpInfo.Type) { |
| 4898 | case InlineAsm::isOutput: |
| 4899 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4900 | |
| 4901 | // 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] | 4902 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4903 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4904 | break; |
| 4905 | case InlineAsm::isInput: |
| 4906 | isInReg = true; |
| 4907 | isOutReg = false; |
| 4908 | break; |
| 4909 | case InlineAsm::isClobber: |
| 4910 | isOutReg = true; |
| 4911 | isInReg = true; |
| 4912 | break; |
| 4913 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4914 | |
| 4915 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4916 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4917 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4918 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4919 | // If this is a constraint for a single physreg, or a constraint for a |
| 4920 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4921 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4922 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4923 | OpInfo.ConstraintVT); |
| 4924 | |
| 4925 | unsigned NumRegs = 1; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4926 | if (OpInfo.ConstraintVT != MVT::Other) { |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4927 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4928 | // cast of the input value. More generally, handle any case where the input |
| 4929 | // value disagrees with the register class we plan to stick this in. |
| 4930 | if (OpInfo.Type == InlineAsm::isInput && |
| 4931 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4932 | // 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] | 4933 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4934 | // vector types). |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4935 | EVT RegVT = *PhysReg.second->vt_begin(); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4936 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4937 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4938 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4939 | OpInfo.ConstraintVT = RegVT; |
| 4940 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4941 | // If the input is a FP value and we want it in FP registers, do a |
| 4942 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4943 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4944 | // machine. |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4945 | RegVT = EVT::getIntegerVT(Context, |
| 4946 | OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4947 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4948 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4949 | OpInfo.ConstraintVT = RegVT; |
| 4950 | } |
| 4951 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4952 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 4953 | NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4954 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4955 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4956 | EVT RegVT; |
| 4957 | EVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4958 | |
| 4959 | // If this is a constraint for a specific physical register, like {r17}, |
| 4960 | // assign it now. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4961 | if (unsigned AssignedReg = PhysReg.first) { |
| 4962 | const TargetRegisterClass *RC = PhysReg.second; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4963 | if (OpInfo.ConstraintVT == MVT::Other) |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4964 | ValueVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4965 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4966 | // Get the actual register value type. This is important, because the user |
| 4967 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4968 | // remember that AX is actually i16 to get the right extension. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4969 | RegVT = *RC->vt_begin(); |
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 | // This is a explicit reference to a physical register. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4972 | Regs.push_back(AssignedReg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4973 | |
| 4974 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4975 | if (NumRegs != 1) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4976 | TargetRegisterClass::iterator I = RC->begin(); |
| 4977 | for (; *I != AssignedReg; ++I) |
| 4978 | assert(I != RC->end() && "Didn't find reg!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4979 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4980 | // Already added the first reg. |
| 4981 | --NumRegs; ++I; |
| 4982 | for (; NumRegs; --NumRegs, ++I) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4983 | assert(I != RC->end() && "Ran out of registers to allocate!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4984 | Regs.push_back(*I); |
| 4985 | } |
| 4986 | } |
| 4987 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4988 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4989 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4990 | return; |
| 4991 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4992 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4993 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 4994 | // for this reference. |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 4995 | if (const TargetRegisterClass *RC = PhysReg.second) { |
| 4996 | RegVT = *RC->vt_begin(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4997 | if (OpInfo.ConstraintVT == MVT::Other) |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 4998 | ValueVT = RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4999 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5000 | // Create the appropriate number of virtual registers. |
| 5001 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 5002 | for (; NumRegs; --NumRegs) |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 5003 | Regs.push_back(RegInfo.createVirtualRegister(RC)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5004 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5005 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 5006 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5007 | } |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5008 | |
| 5009 | // This is a reference to a register class that doesn't directly correspond |
| 5010 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 5011 | // registers from the class. |
| 5012 | std::vector<unsigned> RegClassRegs |
| 5013 | = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 5014 | OpInfo.ConstraintVT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5015 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5016 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 5017 | unsigned NumAllocated = 0; |
| 5018 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 5019 | unsigned Reg = RegClassRegs[i]; |
| 5020 | // See if this register is available. |
| 5021 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 5022 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 5023 | // Make sure we find consecutive registers. |
| 5024 | NumAllocated = 0; |
| 5025 | continue; |
| 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 | // Check to see if this register is allocatable (i.e. don't give out the |
| 5029 | // stack pointer). |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5030 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 5031 | if (!RC) { // Couldn't allocate this register. |
| 5032 | // Reset NumAllocated to make sure we return consecutive registers. |
| 5033 | NumAllocated = 0; |
| 5034 | continue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5035 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5036 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5037 | // Okay, this register is good, we can use it. |
| 5038 | ++NumAllocated; |
| 5039 | |
| 5040 | // If we allocated enough consecutive registers, succeed. |
| 5041 | if (NumAllocated == NumRegs) { |
| 5042 | unsigned RegStart = (i-NumAllocated)+1; |
| 5043 | unsigned RegEnd = i+1; |
| 5044 | // Mark all of the allocated registers used. |
| 5045 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 5046 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5047 | |
| 5048 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5049 | OpInfo.ConstraintVT); |
| 5050 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 5051 | return; |
| 5052 | } |
| 5053 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5054 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5055 | // Otherwise, we couldn't allocate enough registers for this. |
| 5056 | } |
| 5057 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5058 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 5059 | /// processed uses a memory 'm' constraint. |
| 5060 | static bool |
| 5061 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 5062 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5063 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 5064 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 5065 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 5066 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 5067 | if (CType == TargetLowering::C_Memory) |
| 5068 | return true; |
| 5069 | } |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5070 | |
| 5071 | // Indirect operand accesses access memory. |
| 5072 | if (CI.isIndirect) |
| 5073 | return true; |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5074 | } |
| 5075 | |
| 5076 | return false; |
| 5077 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5078 | |
| 5079 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 5080 | /// |
| 5081 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 5082 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 5083 | |
| 5084 | /// ConstraintOperands - Information about all of the constraints. |
| 5085 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5086 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5087 | std::set<unsigned> OutputRegs, InputRegs; |
| 5088 | |
| 5089 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 5090 | // ConstraintOperands list. |
| 5091 | std::vector<InlineAsm::ConstraintInfo> |
| 5092 | ConstraintInfos = IA->ParseConstraints(); |
| 5093 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5094 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5095 | |
| 5096 | SDValue Chain, Flag; |
| 5097 | |
| 5098 | // We won't need to flush pending loads if this asm doesn't touch |
| 5099 | // memory and is nonvolatile. |
| 5100 | if (hasMemory || IA->hasSideEffects()) |
Dale Johannesen | 97d14fc | 2009-04-18 00:09:40 +0000 | [diff] [blame] | 5101 | Chain = getRoot(); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5102 | else |
| 5103 | Chain = DAG.getRoot(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5104 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5105 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5106 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5107 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5108 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5109 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5110 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5111 | EVT OpVT = MVT::Other; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5112 | |
| 5113 | // Compute the value type for each operand. |
| 5114 | switch (OpInfo.Type) { |
| 5115 | case InlineAsm::isOutput: |
| 5116 | // Indirect outputs just consume an argument. |
| 5117 | if (OpInfo.isIndirect) { |
| 5118 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5119 | break; |
| 5120 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5121 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5122 | // The return value of the call is this value. As such, there is no |
| 5123 | // corresponding argument. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5124 | assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) && |
| 5125 | "Bad inline asm!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5126 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5127 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5128 | } else { |
| 5129 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5130 | OpVT = TLI.getValueType(CS.getType()); |
| 5131 | } |
| 5132 | ++ResNo; |
| 5133 | break; |
| 5134 | case InlineAsm::isInput: |
| 5135 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5136 | break; |
| 5137 | case InlineAsm::isClobber: |
| 5138 | // Nothing to do. |
| 5139 | break; |
| 5140 | } |
| 5141 | |
| 5142 | // If this is an input or an indirect output, process the call argument. |
| 5143 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5144 | if (OpInfo.CallOperandVal) { |
Dale Johannesen | 5339c55 | 2009-07-20 23:27:39 +0000 | [diff] [blame] | 5145 | // Strip bitcasts, if any. This mostly comes up for functions. |
Dale Johannesen | 7671124 | 2009-08-06 22:45:51 +0000 | [diff] [blame] | 5146 | OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts(); |
| 5147 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5148 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5149 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5150 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5151 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5152 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5153 | |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5154 | OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5155 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5156 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5157 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5158 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5159 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5160 | // Second pass over the constraints: compute which constraint option to use |
| 5161 | // and assign registers to constraints that want a specific physreg. |
| 5162 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5163 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5164 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5165 | // 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] | 5166 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5167 | // other is floating point, or their sizes are different, flag it as an |
| 5168 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5169 | if (OpInfo.hasMatchingInput()) { |
| 5170 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5171 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5172 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5173 | Input.ConstraintVT.isInteger()) || |
| 5174 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5175 | Input.ConstraintVT.getSizeInBits())) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5176 | llvm_report_error("Unsupported asm: input constraint" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5177 | " with a matching output constraint of incompatible" |
| 5178 | " type!"); |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5179 | } |
| 5180 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5181 | } |
| 5182 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5183 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5184 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5185 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5186 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5187 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5188 | // need to to provide an address for the memory input. |
| 5189 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5190 | !OpInfo.isIndirect) { |
| 5191 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5192 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5193 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5194 | // Memory operands really want the address of the value. If we don't have |
| 5195 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5196 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5197 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5198 | // If the operand is a float, integer, or vector constant, spill to a |
| 5199 | // constant pool entry to get its address. |
| 5200 | Value *OpVal = OpInfo.CallOperandVal; |
| 5201 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5202 | isa<ConstantVector>(OpVal)) { |
| 5203 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5204 | TLI.getPointerTy()); |
| 5205 | } else { |
| 5206 | // Otherwise, create a stack slot and emit a store to it before the |
| 5207 | // asm. |
| 5208 | const Type *Ty = OpVal->getType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5209 | uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5210 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5211 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5212 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5213 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5214 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5215 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5216 | OpInfo.CallOperand = StackSlot; |
| 5217 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5218 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5219 | // There is no longer a Value* corresponding to this operand. |
| 5220 | OpInfo.CallOperandVal = 0; |
| 5221 | // It is now an indirect operand. |
| 5222 | OpInfo.isIndirect = true; |
| 5223 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5224 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5225 | // If this constraint is for a specific register, allocate it before |
| 5226 | // anything else. |
| 5227 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5228 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5229 | } |
| 5230 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5231 | |
| 5232 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5233 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5234 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5235 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5236 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5237 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5238 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5239 | // to be. |
| 5240 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5241 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5242 | } |
| 5243 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5244 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5245 | std::vector<SDValue> AsmNodeOperands; |
| 5246 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5247 | AsmNodeOperands.push_back( |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5248 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5249 | |
| 5250 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5251 | // Loop over all of the inputs, copying the operand values into the |
| 5252 | // appropriate registers and processing the output regs. |
| 5253 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5254 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5255 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5256 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5257 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5258 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5259 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5260 | |
| 5261 | switch (OpInfo.Type) { |
| 5262 | case InlineAsm::isOutput: { |
| 5263 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5264 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5265 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5266 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5267 | |
| 5268 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5269 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5270 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5271 | TLI.getPointerTy())); |
| 5272 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5273 | break; |
| 5274 | } |
| 5275 | |
| 5276 | // Otherwise, this is a register or register class output. |
| 5277 | |
| 5278 | // Copy the output from the appropriate register. Find a register that |
| 5279 | // we can use. |
| 5280 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5281 | llvm_report_error("Couldn't allocate output reg for" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5282 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5283 | } |
| 5284 | |
| 5285 | // If this is an indirect operand, store through the pointer after the |
| 5286 | // asm. |
| 5287 | if (OpInfo.isIndirect) { |
| 5288 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5289 | OpInfo.CallOperandVal)); |
| 5290 | } else { |
| 5291 | // This is the result value of the call. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5292 | assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) && |
| 5293 | "Bad inline asm!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5294 | // Concatenate this output onto the outputs list. |
| 5295 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5296 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5297 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5298 | // Add information to the INLINEASM node to know that this register is |
| 5299 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5300 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5301 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5302 | 2 /* REGDEF */ , |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5303 | false, |
| 5304 | 0, |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5305 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5306 | break; |
| 5307 | } |
| 5308 | case InlineAsm::isInput: { |
| 5309 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5310 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5311 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5312 | // If this is required to match an output register we have already set, |
| 5313 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5314 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5315 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5316 | // Scan until we find the definition we already emitted of this operand. |
| 5317 | // When we find it, create a RegsForValue operand. |
| 5318 | unsigned CurOp = 2; // The first operand. |
| 5319 | for (; OperandNo; --OperandNo) { |
| 5320 | // Advance to the next operand. |
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 | assert(((OpFlag & 7) == 2 /*REGDEF*/ || |
| 5324 | (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
| 5325 | (OpFlag & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5326 | "Skipped past definitions?"); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5327 | CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5328 | } |
| 5329 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5330 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5331 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5332 | if ((OpFlag & 7) == 2 /*REGDEF*/ |
| 5333 | || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
| 5334 | // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5335 | if (OpInfo.isIndirect) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5336 | llvm_report_error("Don't know how to handle tied indirect " |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5337 | "register inputs yet!"); |
Dan Gohman | 15480bd | 2009-06-15 22:32:41 +0000 | [diff] [blame] | 5338 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5339 | RegsForValue MatchedRegs; |
| 5340 | MatchedRegs.TLI = &TLI; |
| 5341 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5342 | EVT RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5343 | MatchedRegs.RegVTs.push_back(RegVT); |
| 5344 | MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5345 | for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5346 | i != e; ++i) |
| 5347 | MatchedRegs.Regs. |
| 5348 | push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT))); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5349 | |
| 5350 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5351 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5352 | Chain, &Flag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5353 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, |
| 5354 | true, OpInfo.getMatchedOperand(), |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5355 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5356 | break; |
| 5357 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5358 | assert(((OpFlag & 7) == 4) && "Unknown matching constraint!"); |
| 5359 | assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 && |
| 5360 | "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5361 | // Add information to the INLINEASM node to know about this input. |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5362 | // See InlineAsm.h isUseOperandTiedToDef. |
| 5363 | OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5364 | AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5365 | TLI.getPointerTy())); |
| 5366 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5367 | break; |
| 5368 | } |
| 5369 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5370 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5371 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5372 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5373 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5374 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5375 | std::vector<SDValue> Ops; |
| 5376 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5377 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5378 | if (Ops.empty()) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5379 | llvm_report_error("Invalid operand for inline asm" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5380 | " constraint '" + OpInfo.ConstraintCode + "'!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5381 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5382 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5383 | // Add information to the INLINEASM node to know about this input. |
| 5384 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5385 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5386 | TLI.getPointerTy())); |
| 5387 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5388 | break; |
| 5389 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5390 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5391 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5392 | "Memory operands expect pointer values"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5393 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5394 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5395 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5396 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5397 | TLI.getPointerTy())); |
| 5398 | AsmNodeOperands.push_back(InOperandVal); |
| 5399 | break; |
| 5400 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5401 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5402 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5403 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5404 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5405 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5406 | "Don't know how to handle indirect register inputs yet!"); |
| 5407 | |
| 5408 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5409 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Benjamin Kramer | d5fe92e | 2009-08-03 13:33:33 +0000 | [diff] [blame] | 5410 | llvm_report_error("Couldn't allocate input reg for" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 5411 | " constraint '"+ OpInfo.ConstraintCode +"'!"); |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5412 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5413 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5414 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5415 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5416 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5417 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0, |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5418 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5419 | break; |
| 5420 | } |
| 5421 | case InlineAsm::isClobber: { |
| 5422 | // Add the clobbered value to the operand list, so that the register |
| 5423 | // allocator is aware that the physreg got clobbered. |
| 5424 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5425 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5426 | false, 0, DAG,AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5427 | break; |
| 5428 | } |
| 5429 | } |
| 5430 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5431 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5432 | // Finish up input operands. |
| 5433 | AsmNodeOperands[0] = Chain; |
| 5434 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5435 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5436 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5437 | DAG.getVTList(MVT::Other, MVT::Flag), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5438 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5439 | Flag = Chain.getValue(1); |
| 5440 | |
| 5441 | // If this asm returns a register value, copy the result from that register |
| 5442 | // and set it as the value of the call. |
| 5443 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5444 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5445 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5446 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5447 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5448 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5449 | EVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5450 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5451 | // If any of the results of the inline asm is a vector, it may have the |
| 5452 | // wrong width/num elts. This can happen for register classes that can |
| 5453 | // contain multiple different value types. The preg or vreg allocated may |
| 5454 | // not have the same VT as was expected. Convert it to the right type |
| 5455 | // with bit_convert. |
| 5456 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5457 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5458 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5459 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5460 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5461 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5462 | // If a result value was tied to an input value, the computed result may |
| 5463 | // have a wider width than the expected result. Extract the relevant |
| 5464 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5465 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5466 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5467 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5468 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5469 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5470 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5471 | setValue(CS.getInstruction(), Val); |
Dale Johannesen | ec65a7d | 2009-04-14 00:56:56 +0000 | [diff] [blame] | 5472 | // Don't need to use this as a chain in this case. |
| 5473 | if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) |
| 5474 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5475 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5476 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5477 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5478 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5479 | // Process indirect outputs, first output all of the flagged copies out of |
| 5480 | // physregs. |
| 5481 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5482 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5483 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5484 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5485 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5486 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
Chris Lattner | 6c14729 | 2009-04-30 00:48:50 +0000 | [diff] [blame] | 5487 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5488 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5489 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5490 | // Emit the non-flagged stores from the physregs. |
| 5491 | SmallVector<SDValue, 8> OutChains; |
| 5492 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5493 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5494 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5495 | getValue(StoresToEmit[i].second), |
| 5496 | StoresToEmit[i].second, 0)); |
| 5497 | if (!OutChains.empty()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5498 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5499 | &OutChains[0], OutChains.size()); |
| 5500 | DAG.setRoot(Chain); |
| 5501 | } |
| 5502 | |
| 5503 | |
| 5504 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5505 | SDValue Src = getValue(I.getOperand(0)); |
| 5506 | |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5507 | // Scale up by the type size in the original i32 type width. Various |
| 5508 | // mid-level optimizers may make assumptions about demanded bits etc from the |
| 5509 | // i32-ness of the optimizer: we do not want to promote to i64 and then |
| 5510 | // multiply on 64-bit targets. |
| 5511 | // FIXME: Malloc inst should go away: PR715. |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5512 | uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType()); |
Chris Lattner | 50340f6 | 2009-07-23 21:26:18 +0000 | [diff] [blame] | 5513 | if (ElementSize != 1) { |
| 5514 | // Src is always 32-bits, make sure the constant fits. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5515 | assert(Src.getValueType() == MVT::i32); |
Chris Lattner | 50340f6 | 2009-07-23 21:26:18 +0000 | [diff] [blame] | 5516 | ElementSize = (uint32_t)ElementSize; |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5517 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
| 5518 | Src, DAG.getConstant(ElementSize, Src.getValueType())); |
Chris Lattner | 50340f6 | 2009-07-23 21:26:18 +0000 | [diff] [blame] | 5519 | } |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5520 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5521 | EVT IntPtr = TLI.getPointerTy(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5522 | |
| 5523 | if (IntPtr.bitsLT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5524 | Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5525 | else if (IntPtr.bitsGT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5526 | Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5527 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5528 | TargetLowering::ArgListTy Args; |
| 5529 | TargetLowering::ArgListEntry Entry; |
| 5530 | Entry.Node = Src; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5531 | Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5532 | Args.push_back(Entry); |
| 5533 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5534 | bool isTailCall = PerformTailCallOpt && |
| 5535 | isInTailCallPosition(&I, Attribute::None, TLI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5536 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5537 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5538 | 0, CallingConv::C, isTailCall, |
| 5539 | /*isReturnValueUsed=*/true, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5540 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5541 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5542 | if (Result.first.getNode()) |
| 5543 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5544 | if (Result.second.getNode()) |
| 5545 | DAG.setRoot(Result.second); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5546 | } |
| 5547 | |
| 5548 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5549 | TargetLowering::ArgListTy Args; |
| 5550 | TargetLowering::ArgListEntry Entry; |
| 5551 | Entry.Node = getValue(I.getOperand(0)); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5552 | Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5553 | Args.push_back(Entry); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5554 | EVT IntPtr = TLI.getPointerTy(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5555 | bool isTailCall = PerformTailCallOpt && |
| 5556 | isInTailCallPosition(&I, Attribute::None, TLI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5557 | std::pair<SDValue,SDValue> Result = |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5558 | TLI.LowerCallTo(getRoot(), Type::getVoidTy(*DAG.getContext()), |
| 5559 | false, false, false, false, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5560 | 0, CallingConv::C, isTailCall, |
| 5561 | /*isReturnValueUsed=*/true, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5562 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5563 | getCurDebugLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5564 | if (Result.second.getNode()) |
| 5565 | DAG.setRoot(Result.second); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5566 | } |
| 5567 | |
| 5568 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5569 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5570 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5571 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5572 | DAG.getSrcValue(I.getOperand(1)))); |
| 5573 | } |
| 5574 | |
| 5575 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5576 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5577 | getRoot(), getValue(I.getOperand(0)), |
| 5578 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5579 | setValue(&I, V); |
| 5580 | DAG.setRoot(V.getValue(1)); |
| 5581 | } |
| 5582 | |
| 5583 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5584 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5585 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5586 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5587 | DAG.getSrcValue(I.getOperand(1)))); |
| 5588 | } |
| 5589 | |
| 5590 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5591 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5592 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5593 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5594 | getValue(I.getOperand(2)), |
| 5595 | DAG.getSrcValue(I.getOperand(1)), |
| 5596 | DAG.getSrcValue(I.getOperand(2)))); |
| 5597 | } |
| 5598 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5599 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5600 | /// implementation, which just calls LowerCall. |
| 5601 | /// FIXME: When all targets are |
| 5602 | /// migrated to using LowerCall, this hook should be integrated into SDISel. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5603 | std::pair<SDValue, SDValue> |
| 5604 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5605 | bool RetSExt, bool RetZExt, bool isVarArg, |
Tilmann Scheller | 6b61cd1 | 2009-07-03 06:44:53 +0000 | [diff] [blame] | 5606 | bool isInreg, unsigned NumFixedArgs, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5607 | unsigned CallConv, bool isTailCall, |
| 5608 | bool isReturnValueUsed, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5609 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5610 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5611 | |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5612 | assert((!isTailCall || PerformTailCallOpt) && |
| 5613 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5614 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5615 | // Handle all of the outgoing arguments. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5616 | SmallVector<ISD::OutputArg, 32> Outs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5617 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5618 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5619 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5620 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5621 | Value != NumValues; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5622 | EVT VT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5623 | const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext()); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5624 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5625 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5626 | ISD::ArgFlagsTy Flags; |
| 5627 | unsigned OriginalAlignment = |
| 5628 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5629 | |
| 5630 | if (Args[i].isZExt) |
| 5631 | Flags.setZExt(); |
| 5632 | if (Args[i].isSExt) |
| 5633 | Flags.setSExt(); |
| 5634 | if (Args[i].isInReg) |
| 5635 | Flags.setInReg(); |
| 5636 | if (Args[i].isSRet) |
| 5637 | Flags.setSRet(); |
| 5638 | if (Args[i].isByVal) { |
| 5639 | Flags.setByVal(); |
| 5640 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5641 | const Type *ElementTy = Ty->getElementType(); |
| 5642 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 5643 | unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5644 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5645 | // info is not there but there are cases it cannot get right. |
| 5646 | if (Args[i].Alignment) |
| 5647 | FrameAlign = Args[i].Alignment; |
| 5648 | Flags.setByValAlign(FrameAlign); |
| 5649 | Flags.setByValSize(FrameSize); |
| 5650 | } |
| 5651 | if (Args[i].isNest) |
| 5652 | Flags.setNest(); |
| 5653 | Flags.setOrigAlign(OriginalAlignment); |
| 5654 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5655 | EVT PartVT = getRegisterType(RetTy->getContext(), VT); |
| 5656 | unsigned NumParts = getNumRegisters(RetTy->getContext(), VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5657 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5658 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5659 | |
| 5660 | if (Args[i].isSExt) |
| 5661 | ExtendKind = ISD::SIGN_EXTEND; |
| 5662 | else if (Args[i].isZExt) |
| 5663 | ExtendKind = ISD::ZERO_EXTEND; |
| 5664 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5665 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5666 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5667 | for (unsigned j = 0; j != NumParts; ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5668 | // if it isn't first piece, alignment must be 1 |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5669 | ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs); |
| 5670 | if (NumParts > 1 && j == 0) |
| 5671 | MyFlags.Flags.setSplit(); |
| 5672 | else if (j != 0) |
| 5673 | MyFlags.Flags.setOrigAlign(1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5674 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5675 | Outs.push_back(MyFlags); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5676 | } |
| 5677 | } |
| 5678 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5679 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5680 | // Handle the incoming return values from the call. |
| 5681 | SmallVector<ISD::InputArg, 32> Ins; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5682 | SmallVector<EVT, 4> RetTys; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5683 | ComputeValueVTs(*this, RetTy, RetTys); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5684 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5685 | EVT VT = RetTys[I]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5686 | EVT RegisterVT = getRegisterType(RetTy->getContext(), VT); |
| 5687 | unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5688 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5689 | ISD::InputArg MyFlags; |
| 5690 | MyFlags.VT = RegisterVT; |
| 5691 | MyFlags.Used = isReturnValueUsed; |
| 5692 | if (RetSExt) |
| 5693 | MyFlags.Flags.setSExt(); |
| 5694 | if (RetZExt) |
| 5695 | MyFlags.Flags.setZExt(); |
| 5696 | if (isInreg) |
| 5697 | MyFlags.Flags.setInReg(); |
| 5698 | Ins.push_back(MyFlags); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5699 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5700 | } |
| 5701 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5702 | // Check if target-dependent constraints permit a tail call here. |
| 5703 | // Target-independent constraints should be checked by the caller. |
| 5704 | if (isTailCall && |
| 5705 | !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG)) |
| 5706 | isTailCall = false; |
| 5707 | |
| 5708 | SmallVector<SDValue, 4> InVals; |
| 5709 | Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall, |
| 5710 | Outs, Ins, dl, DAG, InVals); |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5711 | |
| 5712 | // Verify that the target's LowerCall behaved as expected. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5713 | assert(Chain.getNode() && Chain.getValueType() == MVT::Other && |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5714 | "LowerCall didn't return a valid chain!"); |
| 5715 | assert((!isTailCall || InVals.empty()) && |
| 5716 | "LowerCall emitted a return value for a tail call!"); |
| 5717 | assert((isTailCall || InVals.size() == Ins.size()) && |
| 5718 | "LowerCall didn't emit the correct number of values!"); |
| 5719 | DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) { |
| 5720 | assert(InVals[i].getNode() && |
| 5721 | "LowerCall emitted a null value!"); |
| 5722 | assert(Ins[i].VT == InVals[i].getValueType() && |
| 5723 | "LowerCall emitted a value with the wrong type!"); |
| 5724 | }); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5725 | |
| 5726 | // For a tail call, the return value is merely live-out and there aren't |
| 5727 | // any nodes in the DAG representing it. Return a special value to |
| 5728 | // indicate that a tail call has been emitted and no more Instructions |
| 5729 | // should be processed in the current block. |
| 5730 | if (isTailCall) { |
| 5731 | DAG.setRoot(Chain); |
| 5732 | return std::make_pair(SDValue(), SDValue()); |
| 5733 | } |
| 5734 | |
| 5735 | // Collect the legal value parts into potentially illegal values |
| 5736 | // that correspond to the original function's return values. |
| 5737 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5738 | if (RetSExt) |
| 5739 | AssertOp = ISD::AssertSext; |
| 5740 | else if (RetZExt) |
| 5741 | AssertOp = ISD::AssertZext; |
| 5742 | SmallVector<SDValue, 4> ReturnValues; |
| 5743 | unsigned CurReg = 0; |
| 5744 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5745 | EVT VT = RetTys[I]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5746 | EVT RegisterVT = getRegisterType(RetTy->getContext(), VT); |
| 5747 | unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5748 | |
| 5749 | SDValue ReturnValue = |
| 5750 | getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT, |
| 5751 | AssertOp); |
| 5752 | ReturnValues.push_back(ReturnValue); |
| 5753 | CurReg += NumRegs; |
| 5754 | } |
| 5755 | |
| 5756 | // For a function returning void, there is no return value. We can't create |
| 5757 | // such a node, so we just return a null return value in that case. In |
| 5758 | // that case, nothing will actualy look at the value. |
| 5759 | if (ReturnValues.empty()) |
| 5760 | return std::make_pair(SDValue(), Chain); |
| 5761 | |
| 5762 | SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
| 5763 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5764 | &ReturnValues[0], ReturnValues.size()); |
| 5765 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5766 | return std::make_pair(Res, Chain); |
| 5767 | } |
| 5768 | |
Duncan Sands | 9fbc7e2 | 2009-01-21 09:00:29 +0000 | [diff] [blame] | 5769 | void TargetLowering::LowerOperationWrapper(SDNode *N, |
| 5770 | SmallVectorImpl<SDValue> &Results, |
| 5771 | SelectionDAG &DAG) { |
| 5772 | SDValue Res = LowerOperation(SDValue(N, 0), DAG); |
Sanjiv Gupta | bb326bb | 2009-01-21 04:48:39 +0000 | [diff] [blame] | 5773 | if (Res.getNode()) |
| 5774 | Results.push_back(Res); |
| 5775 | } |
| 5776 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5777 | SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 5778 | llvm_unreachable("LowerOperation not implemented for this target!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5779 | return SDValue(); |
| 5780 | } |
| 5781 | |
| 5782 | |
| 5783 | void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) { |
| 5784 | SDValue Op = getValue(V); |
| 5785 | assert((Op.getOpcode() != ISD::CopyFromReg || |
| 5786 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
| 5787 | "Copy from a reg to the same reg!"); |
| 5788 | assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); |
| 5789 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5790 | RegsForValue RFV(V->getContext(), TLI, Reg, V->getType()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5791 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5792 | RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5793 | PendingExports.push_back(Chain); |
| 5794 | } |
| 5795 | |
| 5796 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 5797 | |
| 5798 | void SelectionDAGISel:: |
| 5799 | LowerArguments(BasicBlock *LLVMBB) { |
| 5800 | // If this is the entry block, emit arguments. |
| 5801 | Function &F = *LLVMBB->getParent(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5802 | SelectionDAG &DAG = SDL->DAG; |
| 5803 | SDValue OldRoot = DAG.getRoot(); |
| 5804 | DebugLoc dl = SDL->getCurDebugLoc(); |
| 5805 | const TargetData *TD = TLI.getTargetData(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5806 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5807 | // Set up the incoming argument description vector. |
| 5808 | SmallVector<ISD::InputArg, 16> Ins; |
| 5809 | unsigned Idx = 1; |
| 5810 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5811 | I != E; ++I, ++Idx) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5812 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5813 | ComputeValueVTs(TLI, I->getType(), ValueVTs); |
| 5814 | bool isArgValueUsed = !I->use_empty(); |
| 5815 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5816 | Value != NumValues; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5817 | EVT VT = ValueVTs[Value]; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 5818 | const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5819 | ISD::ArgFlagsTy Flags; |
| 5820 | unsigned OriginalAlignment = |
| 5821 | TD->getABITypeAlignment(ArgTy); |
| 5822 | |
| 5823 | if (F.paramHasAttr(Idx, Attribute::ZExt)) |
| 5824 | Flags.setZExt(); |
| 5825 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
| 5826 | Flags.setSExt(); |
| 5827 | if (F.paramHasAttr(Idx, Attribute::InReg)) |
| 5828 | Flags.setInReg(); |
| 5829 | if (F.paramHasAttr(Idx, Attribute::StructRet)) |
| 5830 | Flags.setSRet(); |
| 5831 | if (F.paramHasAttr(Idx, Attribute::ByVal)) { |
| 5832 | Flags.setByVal(); |
| 5833 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5834 | const Type *ElementTy = Ty->getElementType(); |
| 5835 | unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy); |
| 5836 | unsigned FrameSize = TD->getTypeAllocSize(ElementTy); |
| 5837 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5838 | // this info is not there but there are cases it cannot get right. |
| 5839 | if (F.getParamAlignment(Idx)) |
| 5840 | FrameAlign = F.getParamAlignment(Idx); |
| 5841 | Flags.setByValAlign(FrameAlign); |
| 5842 | Flags.setByValSize(FrameSize); |
| 5843 | } |
| 5844 | if (F.paramHasAttr(Idx, Attribute::Nest)) |
| 5845 | Flags.setNest(); |
| 5846 | Flags.setOrigAlign(OriginalAlignment); |
| 5847 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5848 | EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT); |
| 5849 | unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5850 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5851 | ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed); |
| 5852 | if (NumRegs > 1 && i == 0) |
| 5853 | MyFlags.Flags.setSplit(); |
| 5854 | // if it isn't first piece, alignment must be 1 |
| 5855 | else if (i > 0) |
| 5856 | MyFlags.Flags.setOrigAlign(1); |
| 5857 | Ins.push_back(MyFlags); |
| 5858 | } |
| 5859 | } |
| 5860 | } |
| 5861 | |
| 5862 | // Call the target to set up the argument values. |
| 5863 | SmallVector<SDValue, 8> InVals; |
| 5864 | SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(), |
| 5865 | F.isVarArg(), Ins, |
| 5866 | dl, DAG, InVals); |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5867 | |
| 5868 | // Verify that the target's LowerFormalArguments behaved as expected. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5869 | assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other && |
Dan Gohman | 5e86606 | 2009-08-06 15:37:27 +0000 | [diff] [blame] | 5870 | "LowerFormalArguments didn't return a valid chain!"); |
| 5871 | assert(InVals.size() == Ins.size() && |
| 5872 | "LowerFormalArguments didn't emit the correct number of values!"); |
| 5873 | DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) { |
| 5874 | assert(InVals[i].getNode() && |
| 5875 | "LowerFormalArguments emitted a null value!"); |
| 5876 | assert(Ins[i].VT == InVals[i].getValueType() && |
| 5877 | "LowerFormalArguments emitted a value with the wrong type!"); |
| 5878 | }); |
| 5879 | |
| 5880 | // Update the DAG with the new chain value resulting from argument lowering. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5881 | DAG.setRoot(NewRoot); |
| 5882 | |
| 5883 | // Set up the argument values. |
| 5884 | unsigned i = 0; |
| 5885 | Idx = 1; |
| 5886 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; |
| 5887 | ++I, ++Idx) { |
| 5888 | SmallVector<SDValue, 4> ArgValues; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5889 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5890 | ComputeValueVTs(TLI, I->getType(), ValueVTs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5891 | unsigned NumValues = ValueVTs.size(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5892 | for (unsigned Value = 0; Value != NumValues; ++Value) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5893 | EVT VT = ValueVTs[Value]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5894 | EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT); |
| 5895 | unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5896 | |
| 5897 | if (!I->use_empty()) { |
| 5898 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5899 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
| 5900 | AssertOp = ISD::AssertSext; |
| 5901 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
| 5902 | AssertOp = ISD::AssertZext; |
| 5903 | |
| 5904 | ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts, |
| 5905 | PartVT, VT, AssertOp)); |
| 5906 | } |
| 5907 | i += NumParts; |
| 5908 | } |
| 5909 | if (!I->use_empty()) { |
| 5910 | SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues, |
| 5911 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5912 | // If this argument is live outside of the entry block, insert a copy from |
| 5913 | // 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] | 5914 | SDL->CopyToExportRegsIfNeeded(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5915 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5916 | } |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 5917 | assert(i == InVals.size() && "Argument register count mismatch!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5918 | |
| 5919 | // Finally, if the target has anything special to do, allow it to do so. |
| 5920 | // FIXME: this should insert code into the DAG! |
| 5921 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5922 | } |
| 5923 | |
| 5924 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5925 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5926 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5927 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5928 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5929 | /// the end. |
| 5930 | /// |
| 5931 | void |
| 5932 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5933 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5934 | |
| 5935 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5936 | |
| 5937 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5938 | // from this block. |
| 5939 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5940 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5941 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5942 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5943 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5944 | // If this terminator has multiple identical successors (common for |
| 5945 | // switches), only handle each succ once. |
| 5946 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5947 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5948 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5949 | PHINode *PN; |
| 5950 | |
| 5951 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5952 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5953 | // emitted yet. |
| 5954 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5955 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5956 | // Ignore dead phi's. |
| 5957 | if (PN->use_empty()) continue; |
| 5958 | |
| 5959 | unsigned Reg; |
| 5960 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5961 | |
| 5962 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5963 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5964 | if (RegOut == 0) { |
| 5965 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5966 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5967 | } |
| 5968 | Reg = RegOut; |
| 5969 | } else { |
| 5970 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5971 | if (Reg == 0) { |
| 5972 | assert(isa<AllocaInst>(PHIOp) && |
| 5973 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5974 | "Didn't codegen value into a register!??"); |
| 5975 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5976 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5977 | } |
| 5978 | } |
| 5979 | |
| 5980 | // Remember that this register needs to added to the machine PHI node as |
| 5981 | // the input for this MBB. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5982 | SmallVector<EVT, 4> ValueVTs; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5983 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5984 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5985 | EVT VT = ValueVTs[vti]; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5986 | unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5987 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5988 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5989 | Reg += NumRegisters; |
| 5990 | } |
| 5991 | } |
| 5992 | } |
| 5993 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5994 | } |
| 5995 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5996 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5997 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5998 | /// creating SelectionDAG nodes. |
| 5999 | /// |
| 6000 | bool |
| 6001 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 6002 | FastISel *F) { |
| 6003 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 6004 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6005 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 6006 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 6007 | |
| 6008 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 6009 | // from this block. |
| 6010 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 6011 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 6012 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 6013 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6014 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6015 | // If this terminator has multiple identical successors (common for |
| 6016 | // switches), only handle each succ once. |
| 6017 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6018 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6019 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 6020 | PHINode *PN; |
| 6021 | |
| 6022 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 6023 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 6024 | // emitted yet. |
| 6025 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 6026 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 6027 | // Ignore dead phi's. |
| 6028 | if (PN->use_empty()) continue; |
| 6029 | |
| 6030 | // Only handle legal types. Two interesting things to note here. First, |
| 6031 | // by bailing out early, we may leave behind some dead instructions, |
| 6032 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 6033 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 6034 | // use CreateRegForValue to create registers, so it always creates |
| 6035 | // exactly one register for each non-void instruction. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6036 | EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6037 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
| 6038 | // Promote MVT::i1. |
| 6039 | if (VT == MVT::i1) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 6040 | VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT); |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 6041 | else { |
| 6042 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6043 | return false; |
| 6044 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6045 | } |
| 6046 | |
| 6047 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 6048 | |
| 6049 | unsigned Reg = F->getRegForValue(PHIOp); |
| 6050 | if (Reg == 0) { |
| 6051 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6052 | return false; |
| 6053 | } |
| 6054 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 6055 | } |
| 6056 | } |
| 6057 | |
| 6058 | return true; |
| 6059 | } |