Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1 | //===-- SelectionDAGBuild.cpp - Selection-DAG building --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This implements routines for translating from LLVM IR into SelectionDAG IR. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "isel" |
| 15 | #include "SelectionDAGBuild.h" |
| 16 | #include "llvm/ADT/BitVector.h" |
Dan Gohman | 5b22980 | 2008-09-04 20:49:27 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallSet.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/AliasAnalysis.h" |
| 19 | #include "llvm/Constants.h" |
| 20 | #include "llvm/CallingConv.h" |
| 21 | #include "llvm/DerivedTypes.h" |
| 22 | #include "llvm/Function.h" |
| 23 | #include "llvm/GlobalVariable.h" |
| 24 | #include "llvm/InlineAsm.h" |
| 25 | #include "llvm/Instructions.h" |
| 26 | #include "llvm/Intrinsics.h" |
| 27 | #include "llvm/IntrinsicInst.h" |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 28 | #include "llvm/Module.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/FastISel.h" |
| 30 | #include "llvm/CodeGen/GCStrategy.h" |
| 31 | #include "llvm/CodeGen/GCMetadata.h" |
| 32 | #include "llvm/CodeGen/MachineFunction.h" |
| 33 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 34 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 35 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
| 36 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 37 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/SelectionDAG.h" |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/DwarfWriter.h" |
| 41 | #include "llvm/Analysis/DebugInfo.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 42 | #include "llvm/Target/TargetRegisterInfo.h" |
| 43 | #include "llvm/Target/TargetData.h" |
| 44 | #include "llvm/Target/TargetFrameInfo.h" |
| 45 | #include "llvm/Target/TargetInstrInfo.h" |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 46 | #include "llvm/Target/TargetIntrinsicInfo.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 47 | #include "llvm/Target/TargetLowering.h" |
| 48 | #include "llvm/Target/TargetMachine.h" |
| 49 | #include "llvm/Target/TargetOptions.h" |
| 50 | #include "llvm/Support/Compiler.h" |
Mikhail Glushenkov | 2388a58 | 2009-01-16 07:02:28 +0000 | [diff] [blame] | 51 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 52 | #include "llvm/Support/Debug.h" |
| 53 | #include "llvm/Support/MathExtras.h" |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 54 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 55 | #include <algorithm> |
| 56 | using namespace llvm; |
| 57 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 58 | /// LimitFloatPrecision - Generate low-precision inline sequences for |
| 59 | /// some float libcalls (6, 8 or 12 bits). |
| 60 | static unsigned LimitFloatPrecision; |
| 61 | |
| 62 | static cl::opt<unsigned, true> |
| 63 | LimitFPPrecision("limit-float-precision", |
| 64 | cl::desc("Generate low-precision inline sequences " |
| 65 | "for some float libcalls"), |
| 66 | cl::location(LimitFloatPrecision), |
| 67 | cl::init(0)); |
| 68 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 69 | /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 70 | /// of insertvalue or extractvalue indices that identify a member, return |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 71 | /// the linearized index of the start of the member. |
| 72 | /// |
| 73 | static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty, |
| 74 | const unsigned *Indices, |
| 75 | const unsigned *IndicesEnd, |
| 76 | unsigned CurIndex = 0) { |
| 77 | // Base case: We're done. |
| 78 | if (Indices && Indices == IndicesEnd) |
| 79 | return CurIndex; |
| 80 | |
| 81 | // Given a struct type, recursively traverse the elements. |
| 82 | if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 83 | for (StructType::element_iterator EB = STy->element_begin(), |
| 84 | EI = EB, |
| 85 | EE = STy->element_end(); |
| 86 | EI != EE; ++EI) { |
| 87 | if (Indices && *Indices == unsigned(EI - EB)) |
| 88 | return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex); |
| 89 | CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex); |
| 90 | } |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 91 | return CurIndex; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 92 | } |
| 93 | // Given an array type, recursively traverse the elements. |
| 94 | else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 95 | const Type *EltTy = ATy->getElementType(); |
| 96 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) { |
| 97 | if (Indices && *Indices == i) |
| 98 | return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex); |
| 99 | CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex); |
| 100 | } |
Dan Gohman | 2c91d10 | 2009-01-06 22:53:52 +0000 | [diff] [blame] | 101 | return CurIndex; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 102 | } |
| 103 | // We haven't found the type we're looking for, so keep searching. |
| 104 | return CurIndex + 1; |
| 105 | } |
| 106 | |
| 107 | /// ComputeValueVTs - Given an LLVM IR type, compute a sequence of |
| 108 | /// MVTs that represent all the individual underlying |
| 109 | /// non-aggregate types that comprise it. |
| 110 | /// |
| 111 | /// If Offsets is non-null, it points to a vector to be filled in |
| 112 | /// with the in-memory offsets of each of the individual values. |
| 113 | /// |
| 114 | static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty, |
| 115 | SmallVectorImpl<MVT> &ValueVTs, |
| 116 | SmallVectorImpl<uint64_t> *Offsets = 0, |
| 117 | uint64_t StartingOffset = 0) { |
| 118 | // Given a struct type, recursively traverse the elements. |
| 119 | if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 120 | const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy); |
| 121 | for (StructType::element_iterator EB = STy->element_begin(), |
| 122 | EI = EB, |
| 123 | EE = STy->element_end(); |
| 124 | EI != EE; ++EI) |
| 125 | ComputeValueVTs(TLI, *EI, ValueVTs, Offsets, |
| 126 | StartingOffset + SL->getElementOffset(EI - EB)); |
| 127 | return; |
| 128 | } |
| 129 | // Given an array type, recursively traverse the elements. |
| 130 | if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 131 | const Type *EltTy = ATy->getElementType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 132 | uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 133 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) |
| 134 | ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets, |
| 135 | StartingOffset + i * EltSize); |
| 136 | return; |
| 137 | } |
| 138 | // Base case: we can get an MVT for this LLVM IR type. |
| 139 | ValueVTs.push_back(TLI.getValueType(Ty)); |
| 140 | if (Offsets) |
| 141 | Offsets->push_back(StartingOffset); |
| 142 | } |
| 143 | |
Dan Gohman | 2a7c671 | 2008-09-03 23:18:39 +0000 | [diff] [blame] | 144 | namespace llvm { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 145 | /// RegsForValue - This struct represents the registers (physical or virtual) |
| 146 | /// that a particular set of values is assigned, and the type information about |
| 147 | /// the value. The most common situation is to represent one value at a time, |
| 148 | /// but struct or array values are handled element-wise as multiple values. |
| 149 | /// The splitting of aggregates is performed recursively, so that we never |
| 150 | /// have aggregate-typed registers. The values at this point do not necessarily |
| 151 | /// have legal types, so each value may require one or more registers of some |
| 152 | /// legal type. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 153 | /// |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 154 | struct VISIBILITY_HIDDEN RegsForValue { |
| 155 | /// TLI - The TargetLowering object. |
| 156 | /// |
| 157 | const TargetLowering *TLI; |
| 158 | |
| 159 | /// ValueVTs - The value types of the values, which may not be legal, and |
| 160 | /// may need be promoted or synthesized from one or more registers. |
| 161 | /// |
| 162 | SmallVector<MVT, 4> ValueVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 163 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 164 | /// RegVTs - The value types of the registers. This is the same size as |
| 165 | /// ValueVTs and it records, for each value, what the type of the assigned |
| 166 | /// register or registers are. (Individual values are never synthesized |
| 167 | /// from more than one type of register.) |
| 168 | /// |
| 169 | /// With virtual registers, the contents of RegVTs is redundant with TLI's |
| 170 | /// getRegisterType member function, however when with physical registers |
| 171 | /// it is necessary to have a separate record of the types. |
| 172 | /// |
| 173 | SmallVector<MVT, 4> RegVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 174 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 175 | /// Regs - This list holds the registers assigned to the values. |
| 176 | /// Each legal or promoted value requires one register, and each |
| 177 | /// expanded value requires multiple registers. |
| 178 | /// |
| 179 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 180 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 181 | RegsForValue() : TLI(0) {} |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 182 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 183 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 184 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 185 | MVT regvt, MVT valuevt) |
| 186 | : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {} |
| 187 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 188 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 189 | const SmallVector<MVT, 4> ®vts, |
| 190 | const SmallVector<MVT, 4> &valuevts) |
| 191 | : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {} |
| 192 | RegsForValue(const TargetLowering &tli, |
| 193 | unsigned Reg, const Type *Ty) : TLI(&tli) { |
| 194 | ComputeValueVTs(tli, Ty, ValueVTs); |
| 195 | |
| 196 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 197 | MVT ValueVT = ValueVTs[Value]; |
| 198 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 199 | MVT RegisterVT = TLI->getRegisterType(ValueVT); |
| 200 | for (unsigned i = 0; i != NumRegs; ++i) |
| 201 | Regs.push_back(Reg + i); |
| 202 | RegVTs.push_back(RegisterVT); |
| 203 | Reg += NumRegs; |
| 204 | } |
| 205 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 206 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 207 | /// append - Add the specified values to this one. |
| 208 | void append(const RegsForValue &RHS) { |
| 209 | TLI = RHS.TLI; |
| 210 | ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end()); |
| 211 | RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end()); |
| 212 | Regs.append(RHS.Regs.begin(), RHS.Regs.end()); |
| 213 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 214 | |
| 215 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 216 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 217 | /// this value and returns the result as a ValueVTs value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 218 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 219 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 220 | SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 221 | SDValue &Chain, SDValue *Flag) const; |
| 222 | |
| 223 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 224 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 225 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 226 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 227 | void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 228 | SDValue &Chain, SDValue *Flag) const; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 229 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 230 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 231 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 232 | /// values added into it. |
| 233 | void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG, |
| 234 | std::vector<SDValue> &Ops) const; |
| 235 | }; |
| 236 | } |
| 237 | |
| 238 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 239 | /// 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] | 240 | /// switch or atomic instruction, which may expand to multiple basic blocks. |
| 241 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 242 | if (isa<PHINode>(I)) return true; |
| 243 | BasicBlock *BB = I->getParent(); |
| 244 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI) |
| 245 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) || |
| 246 | // FIXME: Remove switchinst special case. |
| 247 | isa<SwitchInst>(*UI)) |
| 248 | return true; |
| 249 | return false; |
| 250 | } |
| 251 | |
| 252 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
| 253 | /// entry block, return true. This includes arguments used by switches, since |
| 254 | /// the switch may expand into multiple basic blocks. |
| 255 | static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) { |
| 256 | // With FastISel active, we may be splitting blocks, so force creation |
| 257 | // of virtual registers for all non-dead arguments. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 258 | // Don't force virtual registers for byval arguments though, because |
| 259 | // fast-isel can't handle those in all cases. |
| 260 | if (EnableFastISel && !A->hasByValAttr()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 261 | return A->use_empty(); |
| 262 | |
| 263 | BasicBlock *Entry = A->getParent()->begin(); |
| 264 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
| 265 | if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) |
| 266 | return false; // Use not in entry block. |
| 267 | return true; |
| 268 | } |
| 269 | |
| 270 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli) |
| 271 | : TLI(tli) { |
| 272 | } |
| 273 | |
| 274 | void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf, |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 275 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 276 | bool EnableFastISel) { |
| 277 | Fn = &fn; |
| 278 | MF = &mf; |
| 279 | RegInfo = &MF->getRegInfo(); |
| 280 | |
| 281 | // Create a vreg for each argument register that is not dead and is used |
| 282 | // outside of the entry block for the function. |
| 283 | for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end(); |
| 284 | AI != E; ++AI) |
| 285 | if (!isOnlyUsedInEntryBlock(AI, EnableFastISel)) |
| 286 | InitializeRegForValue(AI); |
| 287 | |
| 288 | // Initialize the mapping of values to registers. This is only set up for |
| 289 | // instruction values that are used outside of the block that defines |
| 290 | // them. |
| 291 | Function::iterator BB = Fn->begin(), EB = Fn->end(); |
| 292 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 293 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 294 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { |
| 295 | const Type *Ty = AI->getAllocatedType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 296 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 297 | unsigned Align = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 298 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 299 | AI->getAlignment()); |
| 300 | |
| 301 | TySize *= CUI->getZExtValue(); // Get total allocated size. |
| 302 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
| 303 | StaticAllocaMap[AI] = |
| 304 | MF->getFrameInfo()->CreateStackObject(TySize, Align); |
| 305 | } |
| 306 | |
| 307 | for (; BB != EB; ++BB) |
| 308 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 309 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 310 | if (!isa<AllocaInst>(I) || |
| 311 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 312 | InitializeRegForValue(I); |
| 313 | |
| 314 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 315 | // also creates the initial PHI MachineInstrs, though none of the input |
| 316 | // operands are populated. |
| 317 | for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) { |
| 318 | MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB); |
| 319 | MBBMap[BB] = MBB; |
| 320 | MF->push_back(MBB); |
| 321 | |
| 322 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 323 | // appropriate. |
| 324 | PHINode *PN; |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 325 | DebugLoc DL; |
| 326 | for (BasicBlock::iterator |
| 327 | I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 328 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 329 | if (Function *F = CI->getCalledFunction()) { |
| 330 | switch (F->getIntrinsicID()) { |
| 331 | default: break; |
| 332 | case Intrinsic::dbg_stoppoint: { |
| 333 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 334 | DbgStopPointInst *SPI = cast<DbgStopPointInst>(I); |
| 335 | |
| 336 | if (DW && DW->ValidDebugInfo(SPI->getContext())) { |
| 337 | DICompileUnit CU(cast<GlobalVariable>(SPI->getContext())); |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 338 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(), |
| 339 | CU.getFilename()); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 340 | unsigned idx = MF->getOrCreateDebugLocID(SrcFile, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 341 | SPI->getLine(), |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 342 | SPI->getColumn()); |
| 343 | DL = DebugLoc::get(idx); |
| 344 | } |
| 345 | |
| 346 | break; |
| 347 | } |
| 348 | case Intrinsic::dbg_func_start: { |
| 349 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 350 | if (DW) { |
| 351 | DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I); |
| 352 | Value *SP = FSI->getSubprogram(); |
| 353 | |
| 354 | if (DW->ValidDebugInfo(SP)) { |
| 355 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 356 | DICompileUnit CU(Subprogram.getCompileUnit()); |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 357 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(), |
| 358 | CU.getFilename()); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 359 | unsigned Line = Subprogram.getLineNumber(); |
| 360 | DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0)); |
| 361 | } |
| 362 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 363 | |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 364 | break; |
| 365 | } |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | PN = dyn_cast<PHINode>(I); |
| 371 | if (!PN || PN->use_empty()) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 372 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 373 | unsigned PHIReg = ValueMap[PN]; |
| 374 | assert(PHIReg && "PHI node does not have an assigned virtual register!"); |
| 375 | |
| 376 | SmallVector<MVT, 4> ValueVTs; |
| 377 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 378 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 379 | MVT VT = ValueVTs[vti]; |
| 380 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
Dan Gohman | 6448d91 | 2008-09-04 15:39:15 +0000 | [diff] [blame] | 381 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 382 | for (unsigned i = 0; i != NumRegisters; ++i) |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 383 | BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 384 | PHIReg += NumRegisters; |
| 385 | } |
| 386 | } |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | unsigned FunctionLoweringInfo::MakeReg(MVT VT) { |
| 391 | return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 392 | } |
| 393 | |
| 394 | /// CreateRegForValue - Allocate the appropriate number of virtual registers of |
| 395 | /// the correctly promoted or expanded types. Assign these registers |
| 396 | /// consecutive vreg numbers and return the first assigned number. |
| 397 | /// |
| 398 | /// In the case that the given value has struct or array type, this function |
| 399 | /// will assign registers for each member or element. |
| 400 | /// |
| 401 | unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) { |
| 402 | SmallVector<MVT, 4> ValueVTs; |
| 403 | ComputeValueVTs(TLI, V->getType(), ValueVTs); |
| 404 | |
| 405 | unsigned FirstReg = 0; |
| 406 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 407 | MVT ValueVT = ValueVTs[Value]; |
| 408 | MVT RegisterVT = TLI.getRegisterType(ValueVT); |
| 409 | |
| 410 | unsigned NumRegs = TLI.getNumRegisters(ValueVT); |
| 411 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 412 | unsigned R = MakeReg(RegisterVT); |
| 413 | if (!FirstReg) FirstReg = R; |
| 414 | } |
| 415 | } |
| 416 | return FirstReg; |
| 417 | } |
| 418 | |
| 419 | /// getCopyFromParts - Create a value that contains the specified legal parts |
| 420 | /// combined into the value they represent. If the parts combine to a type |
| 421 | /// larger then ValueVT then AssertOp can be used to specify whether the extra |
| 422 | /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT |
| 423 | /// (ISD::AssertSext). |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 424 | static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, |
| 425 | const SDValue *Parts, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 426 | unsigned NumParts, MVT PartVT, MVT ValueVT, |
| 427 | ISD::NodeType AssertOp = ISD::DELETED_NODE) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 428 | assert(NumParts > 0 && "No parts to assemble!"); |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 429 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 430 | SDValue Val = Parts[0]; |
| 431 | |
| 432 | if (NumParts > 1) { |
| 433 | // Assemble the value from multiple parts. |
| 434 | if (!ValueVT.isVector()) { |
| 435 | unsigned PartBits = PartVT.getSizeInBits(); |
| 436 | unsigned ValueBits = ValueVT.getSizeInBits(); |
| 437 | |
| 438 | // Assemble the power of 2 part. |
| 439 | unsigned RoundParts = NumParts & (NumParts - 1) ? |
| 440 | 1 << Log2_32(NumParts) : NumParts; |
| 441 | unsigned RoundBits = PartBits * RoundParts; |
| 442 | MVT RoundVT = RoundBits == ValueBits ? |
| 443 | ValueVT : MVT::getIntegerVT(RoundBits); |
| 444 | SDValue Lo, Hi; |
| 445 | |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 446 | MVT HalfVT = ValueVT.isInteger() ? |
| 447 | MVT::getIntegerVT(RoundBits/2) : |
| 448 | MVT::getFloatingPointVT(RoundBits/2); |
| 449 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 450 | if (RoundParts > 2) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 451 | Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT); |
| 452 | Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 453 | PartVT, HalfVT); |
| 454 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 455 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]); |
| 456 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 457 | } |
| 458 | if (TLI.isBigEndian()) |
| 459 | std::swap(Lo, Hi); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 460 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 461 | |
| 462 | if (RoundParts < NumParts) { |
| 463 | // Assemble the trailing non-power-of-2 part. |
| 464 | unsigned OddParts = NumParts - RoundParts; |
| 465 | MVT OddVT = MVT::getIntegerVT(OddParts * PartBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 466 | Hi = getCopyFromParts(DAG, dl, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 467 | Parts+RoundParts, OddParts, PartVT, OddVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 468 | |
| 469 | // Combine the round and odd parts. |
| 470 | Lo = Val; |
| 471 | if (TLI.isBigEndian()) |
| 472 | std::swap(Lo, Hi); |
| 473 | MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 474 | Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi); |
| 475 | Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 476 | DAG.getConstant(Lo.getValueType().getSizeInBits(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 477 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 478 | Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo); |
| 479 | Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 480 | } |
| 481 | } else { |
| 482 | // Handle a multi-element vector. |
| 483 | MVT IntermediateVT, RegisterVT; |
| 484 | unsigned NumIntermediates; |
| 485 | unsigned NumRegs = |
| 486 | TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 487 | RegisterVT); |
| 488 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 489 | NumParts = NumRegs; // Silence a compiler warning. |
| 490 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 491 | assert(RegisterVT == Parts[0].getValueType() && |
| 492 | "Part type doesn't match part!"); |
| 493 | |
| 494 | // Assemble the parts into intermediate operands. |
| 495 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 496 | if (NumIntermediates == NumParts) { |
| 497 | // If the register was not expanded, truncate or copy the value, |
| 498 | // as appropriate. |
| 499 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 500 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 501 | PartVT, IntermediateVT); |
| 502 | } else if (NumParts > 0) { |
| 503 | // If the intermediate type was expanded, build the intermediate operands |
| 504 | // from the parts. |
| 505 | assert(NumParts % NumIntermediates == 0 && |
| 506 | "Must expand into a divisible number of parts!"); |
| 507 | unsigned Factor = NumParts / NumIntermediates; |
| 508 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 509 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 510 | PartVT, IntermediateVT); |
| 511 | } |
| 512 | |
| 513 | // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate |
| 514 | // operands. |
| 515 | Val = DAG.getNode(IntermediateVT.isVector() ? |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 516 | ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 517 | ValueVT, &Ops[0], NumIntermediates); |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | // There is now one part, held in Val. Correct it to match ValueVT. |
| 522 | PartVT = Val.getValueType(); |
| 523 | |
| 524 | if (PartVT == ValueVT) |
| 525 | return Val; |
| 526 | |
| 527 | if (PartVT.isVector()) { |
| 528 | assert(ValueVT.isVector() && "Unknown vector conversion!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 529 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | if (ValueVT.isVector()) { |
| 533 | assert(ValueVT.getVectorElementType() == PartVT && |
| 534 | ValueVT.getVectorNumElements() == 1 && |
| 535 | "Only trivial scalar-to-vector conversions should get here!"); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 536 | return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | if (PartVT.isInteger() && |
| 540 | ValueVT.isInteger()) { |
| 541 | if (ValueVT.bitsLT(PartVT)) { |
| 542 | // For a truncate, see if we have any information to |
| 543 | // indicate whether the truncated bits will always be |
| 544 | // zero or sign-extension. |
| 545 | if (AssertOp != ISD::DELETED_NODE) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 546 | Val = DAG.getNode(AssertOp, dl, PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 547 | DAG.getValueType(ValueVT)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 548 | return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 549 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 550 | return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 551 | } |
| 552 | } |
| 553 | |
| 554 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 555 | if (ValueVT.bitsLT(Val.getValueType())) |
| 556 | // FP_ROUND's are always exact here. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 557 | return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 558 | DAG.getIntPtrConstant(1)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 559 | return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 563 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 564 | |
| 565 | assert(0 && "Unknown mismatch!"); |
| 566 | return SDValue(); |
| 567 | } |
| 568 | |
| 569 | /// getCopyToParts - Create a series of nodes that contain the specified value |
| 570 | /// split into legal parts. If the parts contain more bits than Val, then, for |
| 571 | /// 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] | 572 | static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val, |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 573 | SDValue *Parts, unsigned NumParts, MVT PartVT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 574 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 575 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 576 | MVT PtrVT = TLI.getPointerTy(); |
| 577 | MVT ValueVT = Val.getValueType(); |
| 578 | unsigned PartBits = PartVT.getSizeInBits(); |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 579 | unsigned OrigNumParts = NumParts; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 580 | assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!"); |
| 581 | |
| 582 | if (!NumParts) |
| 583 | return; |
| 584 | |
| 585 | if (!ValueVT.isVector()) { |
| 586 | if (PartVT == ValueVT) { |
| 587 | assert(NumParts == 1 && "No-op copy with multiple parts!"); |
| 588 | Parts[0] = Val; |
| 589 | return; |
| 590 | } |
| 591 | |
| 592 | if (NumParts * PartBits > ValueVT.getSizeInBits()) { |
| 593 | // If the parts cover more bits than the value has, promote the value. |
| 594 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 595 | assert(NumParts == 1 && "Do not know what to promote to!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 596 | Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 597 | } else if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 598 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 599 | Val = DAG.getNode(ExtendKind, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 600 | } else { |
| 601 | assert(0 && "Unknown mismatch!"); |
| 602 | } |
| 603 | } else if (PartBits == ValueVT.getSizeInBits()) { |
| 604 | // Different types of the same size. |
| 605 | assert(NumParts == 1 && PartVT != ValueVT); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 606 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 607 | } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { |
| 608 | // If the parts cover less bits than value has, truncate the value. |
| 609 | if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 610 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 611 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 612 | } else { |
| 613 | assert(0 && "Unknown mismatch!"); |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | // The value may have changed - recompute ValueVT. |
| 618 | ValueVT = Val.getValueType(); |
| 619 | assert(NumParts * PartBits == ValueVT.getSizeInBits() && |
| 620 | "Failed to tile the value with PartVT!"); |
| 621 | |
| 622 | if (NumParts == 1) { |
| 623 | assert(PartVT == ValueVT && "Type conversion failed!"); |
| 624 | Parts[0] = Val; |
| 625 | return; |
| 626 | } |
| 627 | |
| 628 | // Expand the value into multiple parts. |
| 629 | if (NumParts & (NumParts - 1)) { |
| 630 | // The number of parts is not a power of 2. Split off and copy the tail. |
| 631 | assert(PartVT.isInteger() && ValueVT.isInteger() && |
| 632 | "Do not know what to expand to!"); |
| 633 | unsigned RoundParts = 1 << Log2_32(NumParts); |
| 634 | unsigned RoundBits = RoundParts * PartBits; |
| 635 | unsigned OddParts = NumParts - RoundParts; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 636 | SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 637 | DAG.getConstant(RoundBits, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 638 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 639 | getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 640 | if (TLI.isBigEndian()) |
| 641 | // The odd parts were reversed by getCopyToParts - unreverse them. |
| 642 | std::reverse(Parts + RoundParts, Parts + NumParts); |
| 643 | NumParts = RoundParts; |
| 644 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 645 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | // The number of parts is a power of 2. Repeatedly bisect the value using |
| 649 | // EXTRACT_ELEMENT. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 650 | Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 651 | MVT::getIntegerVT(ValueVT.getSizeInBits()), |
| 652 | Val); |
| 653 | for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { |
| 654 | for (unsigned i = 0; i < NumParts; i += StepSize) { |
| 655 | unsigned ThisBits = StepSize * PartBits / 2; |
| 656 | MVT ThisVT = MVT::getIntegerVT (ThisBits); |
| 657 | SDValue &Part0 = Parts[i]; |
| 658 | SDValue &Part1 = Parts[i+StepSize/2]; |
| 659 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 660 | Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 661 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 662 | DAG.getConstant(1, PtrVT)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 663 | Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 664 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 665 | DAG.getConstant(0, PtrVT)); |
| 666 | |
| 667 | if (ThisBits == PartBits && ThisVT != PartVT) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 668 | Part0 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 669 | PartVT, Part0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 670 | Part1 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 671 | PartVT, Part1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 672 | } |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | if (TLI.isBigEndian()) |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 677 | std::reverse(Parts, Parts + OrigNumParts); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 678 | |
| 679 | return; |
| 680 | } |
| 681 | |
| 682 | // Vector ValueVT. |
| 683 | if (NumParts == 1) { |
| 684 | if (PartVT != ValueVT) { |
| 685 | if (PartVT.isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 686 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 687 | } else { |
| 688 | assert(ValueVT.getVectorElementType() == PartVT && |
| 689 | ValueVT.getVectorNumElements() == 1 && |
| 690 | "Only trivial vector-to-scalar conversions should get here!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 691 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 692 | PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 693 | DAG.getConstant(0, PtrVT)); |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | Parts[0] = Val; |
| 698 | return; |
| 699 | } |
| 700 | |
| 701 | // Handle a multi-element vector. |
| 702 | MVT IntermediateVT, RegisterVT; |
| 703 | unsigned NumIntermediates; |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 704 | unsigned NumRegs = TLI |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 705 | .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 706 | RegisterVT); |
| 707 | unsigned NumElements = ValueVT.getVectorNumElements(); |
| 708 | |
| 709 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 710 | NumParts = NumRegs; // Silence a compiler warning. |
| 711 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 712 | |
| 713 | // Split the vector into intermediate operands. |
| 714 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 715 | for (unsigned i = 0; i != NumIntermediates; ++i) |
| 716 | if (IntermediateVT.isVector()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 717 | Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 718 | IntermediateVT, Val, |
| 719 | DAG.getConstant(i * (NumElements / NumIntermediates), |
| 720 | PtrVT)); |
| 721 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 722 | Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 723 | IntermediateVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 724 | DAG.getConstant(i, PtrVT)); |
| 725 | |
| 726 | // Split the intermediate operands into legal parts. |
| 727 | if (NumParts == NumIntermediates) { |
| 728 | // If the register was not expanded, promote or copy the value, |
| 729 | // as appropriate. |
| 730 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 731 | getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 732 | } else if (NumParts > 0) { |
| 733 | // If the intermediate type was expanded, split each the value into |
| 734 | // legal parts. |
| 735 | assert(NumParts % NumIntermediates == 0 && |
| 736 | "Must expand into a divisible number of parts!"); |
| 737 | unsigned Factor = NumParts / NumIntermediates; |
| 738 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 739 | getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 740 | } |
| 741 | } |
| 742 | |
| 743 | |
| 744 | void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) { |
| 745 | AA = &aa; |
| 746 | GFI = gfi; |
| 747 | TD = DAG.getTarget().getTargetData(); |
| 748 | } |
| 749 | |
| 750 | /// clear - Clear out the curret SelectionDAG and the associated |
| 751 | /// state and prepare this SelectionDAGLowering object to be used |
| 752 | /// for a new block. This doesn't clear out information about |
| 753 | /// additional blocks that are needed to complete switch lowering |
| 754 | /// or PHI node updating; that information is cleared out as it is |
| 755 | /// consumed. |
| 756 | void SelectionDAGLowering::clear() { |
| 757 | NodeMap.clear(); |
| 758 | PendingLoads.clear(); |
| 759 | PendingExports.clear(); |
| 760 | DAG.clear(); |
Bill Wendling | 8fcf170 | 2009-02-06 21:36:23 +0000 | [diff] [blame] | 761 | CurDebugLoc = DebugLoc::getUnknownLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 765 | /// flushing any PendingLoad items. This must be done before emitting |
| 766 | /// a store or any other node that may need to be ordered after any |
| 767 | /// prior load instructions. |
| 768 | /// |
| 769 | SDValue SelectionDAGLowering::getRoot() { |
| 770 | if (PendingLoads.empty()) |
| 771 | return DAG.getRoot(); |
| 772 | |
| 773 | if (PendingLoads.size() == 1) { |
| 774 | SDValue Root = PendingLoads[0]; |
| 775 | DAG.setRoot(Root); |
| 776 | PendingLoads.clear(); |
| 777 | return Root; |
| 778 | } |
| 779 | |
| 780 | // Otherwise, we have to make a token factor node. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 781 | SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 782 | &PendingLoads[0], PendingLoads.size()); |
| 783 | PendingLoads.clear(); |
| 784 | DAG.setRoot(Root); |
| 785 | return Root; |
| 786 | } |
| 787 | |
| 788 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 789 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 790 | /// to do this before emitting a terminator instruction. |
| 791 | /// |
| 792 | SDValue SelectionDAGLowering::getControlRoot() { |
| 793 | SDValue Root = DAG.getRoot(); |
| 794 | |
| 795 | if (PendingExports.empty()) |
| 796 | return Root; |
| 797 | |
| 798 | // Turn all of the CopyToReg chains into one factored node. |
| 799 | if (Root.getOpcode() != ISD::EntryToken) { |
| 800 | unsigned i = 0, e = PendingExports.size(); |
| 801 | for (; i != e; ++i) { |
| 802 | assert(PendingExports[i].getNode()->getNumOperands() > 1); |
| 803 | if (PendingExports[i].getNode()->getOperand(0) == Root) |
| 804 | break; // Don't add the root if we already indirectly depend on it. |
| 805 | } |
| 806 | |
| 807 | if (i == e) |
| 808 | PendingExports.push_back(Root); |
| 809 | } |
| 810 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 811 | Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 812 | &PendingExports[0], |
| 813 | PendingExports.size()); |
| 814 | PendingExports.clear(); |
| 815 | DAG.setRoot(Root); |
| 816 | return Root; |
| 817 | } |
| 818 | |
| 819 | void SelectionDAGLowering::visit(Instruction &I) { |
| 820 | visit(I.getOpcode(), I); |
| 821 | } |
| 822 | |
| 823 | void SelectionDAGLowering::visit(unsigned Opcode, User &I) { |
| 824 | // Note: this doesn't use InstVisitor, because it has to work with |
| 825 | // ConstantExpr's in addition to instructions. |
| 826 | switch (Opcode) { |
| 827 | default: assert(0 && "Unknown instruction type encountered!"); |
| 828 | abort(); |
| 829 | // Build the switch statement using the Instruction.def file. |
| 830 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 831 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 832 | #include "llvm/Instruction.def" |
| 833 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 834 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 835 | |
| 836 | void SelectionDAGLowering::visitAdd(User &I) { |
| 837 | if (I.getType()->isFPOrFPVector()) |
| 838 | visitBinary(I, ISD::FADD); |
| 839 | else |
| 840 | visitBinary(I, ISD::ADD); |
| 841 | } |
| 842 | |
| 843 | void SelectionDAGLowering::visitMul(User &I) { |
| 844 | if (I.getType()->isFPOrFPVector()) |
| 845 | visitBinary(I, ISD::FMUL); |
| 846 | else |
| 847 | visitBinary(I, ISD::MUL); |
| 848 | } |
| 849 | |
| 850 | SDValue SelectionDAGLowering::getValue(const Value *V) { |
| 851 | SDValue &N = NodeMap[V]; |
| 852 | if (N.getNode()) return N; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 853 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 854 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
| 855 | MVT VT = TLI.getValueType(V->getType(), true); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 856 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 857 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 858 | return N = DAG.getConstant(*CI, VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 859 | |
| 860 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 861 | return N = DAG.getGlobalAddress(GV, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 862 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 863 | if (isa<ConstantPointerNull>(C)) |
| 864 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 865 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 866 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 867 | return N = DAG.getConstantFP(*CFP, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 868 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 869 | if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) && |
| 870 | !V->getType()->isAggregateType()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 871 | return N = DAG.getUNDEF(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 872 | |
| 873 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 874 | visit(CE->getOpcode(), *CE); |
| 875 | SDValue N1 = NodeMap[V]; |
| 876 | assert(N1.getNode() && "visit didn't populate the ValueMap!"); |
| 877 | return N1; |
| 878 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 879 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 880 | if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { |
| 881 | SmallVector<SDValue, 4> Constants; |
| 882 | for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); |
| 883 | OI != OE; ++OI) { |
| 884 | SDNode *Val = getValue(*OI).getNode(); |
| 885 | for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) |
| 886 | Constants.push_back(SDValue(Val, i)); |
| 887 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 888 | return DAG.getMergeValues(&Constants[0], Constants.size(), |
| 889 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) { |
| 893 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 894 | "Unknown struct or array constant!"); |
| 895 | |
| 896 | SmallVector<MVT, 4> ValueVTs; |
| 897 | ComputeValueVTs(TLI, C->getType(), ValueVTs); |
| 898 | unsigned NumElts = ValueVTs.size(); |
| 899 | if (NumElts == 0) |
| 900 | return SDValue(); // empty struct |
| 901 | SmallVector<SDValue, 4> Constants(NumElts); |
| 902 | for (unsigned i = 0; i != NumElts; ++i) { |
| 903 | MVT EltVT = ValueVTs[i]; |
| 904 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 905 | Constants[i] = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 906 | else if (EltVT.isFloatingPoint()) |
| 907 | Constants[i] = DAG.getConstantFP(0, EltVT); |
| 908 | else |
| 909 | Constants[i] = DAG.getConstant(0, EltVT); |
| 910 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 911 | return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | const VectorType *VecTy = cast<VectorType>(V->getType()); |
| 915 | unsigned NumElements = VecTy->getNumElements(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 916 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 917 | // Now that we know the number and type of the elements, get that number of |
| 918 | // elements into the Ops array based on what kind of constant it is. |
| 919 | SmallVector<SDValue, 16> Ops; |
| 920 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { |
| 921 | for (unsigned i = 0; i != NumElements; ++i) |
| 922 | Ops.push_back(getValue(CP->getOperand(i))); |
| 923 | } else { |
| 924 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 925 | "Unknown vector constant!"); |
| 926 | MVT EltVT = TLI.getValueType(VecTy->getElementType()); |
| 927 | |
| 928 | SDValue Op; |
| 929 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 930 | Op = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 931 | else if (EltVT.isFloatingPoint()) |
| 932 | Op = DAG.getConstantFP(0, EltVT); |
| 933 | else |
| 934 | Op = DAG.getConstant(0, EltVT); |
| 935 | Ops.assign(NumElements, Op); |
| 936 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 937 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 938 | // Create a BUILD_VECTOR node. |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 939 | return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 940 | VT, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 941 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 942 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 943 | // If this is a static alloca, generate it as the frameindex instead of |
| 944 | // computation. |
| 945 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { |
| 946 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 947 | FuncInfo.StaticAllocaMap.find(AI); |
| 948 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 949 | return DAG.getFrameIndex(SI->second, TLI.getPointerTy()); |
| 950 | } |
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 | unsigned InReg = FuncInfo.ValueMap[V]; |
| 953 | assert(InReg && "Value not in map!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 954 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 955 | RegsForValue RFV(TLI, InReg, V->getType()); |
| 956 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 957 | return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | |
| 961 | void SelectionDAGLowering::visitRet(ReturnInst &I) { |
| 962 | if (I.getNumOperands() == 0) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 963 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 964 | MVT::Other, getControlRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 965 | return; |
| 966 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 967 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 968 | SmallVector<SDValue, 8> NewValues; |
| 969 | NewValues.push_back(getControlRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 970 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 971 | SmallVector<MVT, 4> ValueVTs; |
| 972 | ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 973 | unsigned NumValues = ValueVTs.size(); |
| 974 | if (NumValues == 0) continue; |
| 975 | |
| 976 | SDValue RetOp = getValue(I.getOperand(i)); |
| 977 | for (unsigned j = 0, f = NumValues; j != f; ++j) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 978 | MVT VT = ValueVTs[j]; |
| 979 | |
| 980 | // FIXME: C calling convention requires the return type to be promoted to |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 981 | // at least 32-bit. But this is not necessary for non-C calling |
| 982 | // conventions. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 983 | if (VT.isInteger()) { |
| 984 | MVT MinVT = TLI.getRegisterType(MVT::i32); |
| 985 | if (VT.bitsLT(MinVT)) |
| 986 | VT = MinVT; |
| 987 | } |
| 988 | |
| 989 | unsigned NumParts = TLI.getNumRegisters(VT); |
| 990 | MVT PartVT = TLI.getRegisterType(VT); |
| 991 | SmallVector<SDValue, 4> Parts(NumParts); |
| 992 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 993 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 994 | const Function *F = I.getParent()->getParent(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 995 | if (F->paramHasAttr(0, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 996 | ExtendKind = ISD::SIGN_EXTEND; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 997 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 998 | ExtendKind = ISD::ZERO_EXTEND; |
| 999 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1000 | getCopyToParts(DAG, getCurDebugLoc(), |
| 1001 | SDValue(RetOp.getNode(), RetOp.getResNo() + j), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1002 | &Parts[0], NumParts, PartVT, ExtendKind); |
| 1003 | |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1004 | // 'inreg' on function refers to return value |
| 1005 | ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1006 | if (F->paramHasAttr(0, Attribute::InReg)) |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1007 | Flags.setInReg(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1008 | for (unsigned i = 0; i < NumParts; ++i) { |
| 1009 | NewValues.push_back(Parts[i]); |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1010 | NewValues.push_back(DAG.getArgFlags(Flags)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1011 | } |
| 1012 | } |
| 1013 | } |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1014 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1015 | &NewValues[0], NewValues.size())); |
| 1016 | } |
| 1017 | |
| 1018 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1019 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1020 | /// CopyTo/FromReg. |
| 1021 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1022 | // No need to export constants. |
| 1023 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1024 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1025 | // Already exported? |
| 1026 | if (FuncInfo.isExportedInst(V)) return; |
| 1027 | |
| 1028 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1029 | CopyValueToVirtualRegister(V, Reg); |
| 1030 | } |
| 1031 | |
| 1032 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1033 | const BasicBlock *FromBB) { |
| 1034 | // The operands of the setcc have to be in this block. We don't know |
| 1035 | // how to export them from some other block. |
| 1036 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1037 | // Can export from current BB. |
| 1038 | if (VI->getParent() == FromBB) |
| 1039 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1040 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1041 | // Is already exported, noop. |
| 1042 | return FuncInfo.isExportedInst(V); |
| 1043 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1044 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1045 | // If this is an argument, we can export it if the BB is the entry block or |
| 1046 | // if it is already exported. |
| 1047 | if (isa<Argument>(V)) { |
| 1048 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1049 | return true; |
| 1050 | |
| 1051 | // Otherwise, can only export this if it is already exported. |
| 1052 | return FuncInfo.isExportedInst(V); |
| 1053 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1054 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1055 | // Otherwise, constants can always be exported. |
| 1056 | return true; |
| 1057 | } |
| 1058 | |
| 1059 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1060 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1061 | return I->getParent() == BB; |
| 1062 | return true; |
| 1063 | } |
| 1064 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1065 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1066 | /// the given LLVM IR floating-point condition code. This includes |
| 1067 | /// consideration of global floating-point math flags. |
| 1068 | /// |
| 1069 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1070 | ISD::CondCode FPC, FOC; |
| 1071 | switch (Pred) { |
| 1072 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1073 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1074 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1075 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1076 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1077 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1078 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1079 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1080 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1081 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1082 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1083 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1084 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1085 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1086 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1087 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1088 | default: |
| 1089 | assert(0 && "Invalid FCmp predicate opcode!"); |
| 1090 | FOC = FPC = ISD::SETFALSE; |
| 1091 | break; |
| 1092 | } |
| 1093 | if (FiniteOnlyFPMath()) |
| 1094 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1095 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1096 | return FPC; |
| 1097 | } |
| 1098 | |
| 1099 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1100 | /// the given LLVM IR integer condition code. |
| 1101 | /// |
| 1102 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1103 | switch (Pred) { |
| 1104 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1105 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1106 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1107 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1108 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1109 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1110 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1111 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1112 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1113 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1114 | default: |
| 1115 | assert(0 && "Invalid ICmp predicate opcode!"); |
| 1116 | return ISD::SETNE; |
| 1117 | } |
| 1118 | } |
| 1119 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1120 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1121 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1122 | /// AND operator tree. |
| 1123 | /// |
| 1124 | void |
| 1125 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1126 | MachineBasicBlock *TBB, |
| 1127 | MachineBasicBlock *FBB, |
| 1128 | MachineBasicBlock *CurBB) { |
| 1129 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1130 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1131 | // If the leaf of the tree is a comparison, merge the condition into |
| 1132 | // the caseblock. |
| 1133 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1134 | // The operands of the cmp have to be in this block. We don't know |
| 1135 | // how to export them from some other block. If this is the first block |
| 1136 | // of the sequence, no exporting is needed. |
| 1137 | if (CurBB == CurMBB || |
| 1138 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1139 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1140 | ISD::CondCode Condition; |
| 1141 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1142 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1143 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1144 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1145 | } else { |
| 1146 | Condition = ISD::SETEQ; // silence warning. |
| 1147 | assert(0 && "Unknown compare instruction"); |
| 1148 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1149 | |
| 1150 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1151 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1152 | SwitchCases.push_back(CB); |
| 1153 | return; |
| 1154 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | // Create a CaseBlock record representing this branch. |
| 1158 | CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(), |
| 1159 | NULL, TBB, FBB, CurBB); |
| 1160 | SwitchCases.push_back(CB); |
| 1161 | } |
| 1162 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1163 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1164 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1165 | MachineBasicBlock *TBB, |
| 1166 | MachineBasicBlock *FBB, |
| 1167 | MachineBasicBlock *CurBB, |
| 1168 | unsigned Opc) { |
| 1169 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1170 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1171 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1172 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1173 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1174 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1175 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1176 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1177 | return; |
| 1178 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1179 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1180 | // Create TmpBB after CurBB. |
| 1181 | MachineFunction::iterator BBI = CurBB; |
| 1182 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1183 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1184 | CurBB->getParent()->insert(++BBI, TmpBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1185 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1186 | if (Opc == Instruction::Or) { |
| 1187 | // Codegen X | Y as: |
| 1188 | // jmp_if_X TBB |
| 1189 | // jmp TmpBB |
| 1190 | // TmpBB: |
| 1191 | // jmp_if_Y TBB |
| 1192 | // jmp FBB |
| 1193 | // |
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 LHS condition. |
| 1196 | FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1197 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1198 | // Emit the RHS condition into TmpBB. |
| 1199 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1200 | } else { |
| 1201 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1202 | // Codegen X & Y as: |
| 1203 | // jmp_if_X TmpBB |
| 1204 | // jmp FBB |
| 1205 | // TmpBB: |
| 1206 | // jmp_if_Y TBB |
| 1207 | // jmp FBB |
| 1208 | // |
| 1209 | // This requires creation of TmpBB after CurBB. |
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 LHS condition. |
| 1212 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1213 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1214 | // Emit the RHS condition into TmpBB. |
| 1215 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1216 | } |
| 1217 | } |
| 1218 | |
| 1219 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1220 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1221 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1222 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1223 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1224 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1225 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1226 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1227 | // will get folded into a single comparison, so don't emit two blocks. |
| 1228 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1229 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1230 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1231 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1232 | return false; |
| 1233 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1234 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1235 | return true; |
| 1236 | } |
| 1237 | |
| 1238 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1239 | // Update machine-CFG edges. |
| 1240 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1241 | |
| 1242 | // Figure out which block is immediately after the current one. |
| 1243 | MachineBasicBlock *NextBlock = 0; |
| 1244 | MachineFunction::iterator BBI = CurMBB; |
| 1245 | if (++BBI != CurMBB->getParent()->end()) |
| 1246 | NextBlock = BBI; |
| 1247 | |
| 1248 | if (I.isUnconditional()) { |
| 1249 | // Update machine-CFG edges. |
| 1250 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1251 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1252 | // If this is not a fall-through branch, emit the branch. |
| 1253 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1254 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1255 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1256 | DAG.getBasicBlock(Succ0MBB))); |
| 1257 | return; |
| 1258 | } |
| 1259 | |
| 1260 | // If this condition is one of the special cases we handle, do special stuff |
| 1261 | // now. |
| 1262 | Value *CondVal = I.getCondition(); |
| 1263 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1264 | |
| 1265 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1266 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1267 | // For example, instead of something like: |
| 1268 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1269 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1270 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1271 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1272 | // or C, F |
| 1273 | // jnz foo |
| 1274 | // Emit: |
| 1275 | // cmp A, B |
| 1276 | // je foo |
| 1277 | // cmp D, E |
| 1278 | // jle foo |
| 1279 | // |
| 1280 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1281 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1282 | (BOp->getOpcode() == Instruction::And || |
| 1283 | BOp->getOpcode() == Instruction::Or)) { |
| 1284 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1285 | // If the compares in later blocks need to use values not currently |
| 1286 | // exported from this block, export them now. This block should always |
| 1287 | // be the first entry. |
| 1288 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1289 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1290 | // Allow some cases to be rejected. |
| 1291 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1292 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1293 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1294 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1295 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1296 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1297 | // Emit the branch for this block. |
| 1298 | visitSwitchCase(SwitchCases[0]); |
| 1299 | SwitchCases.erase(SwitchCases.begin()); |
| 1300 | return; |
| 1301 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1302 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1303 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1304 | // SwitchCases. |
| 1305 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
| 1306 | CurMBB->getParent()->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1307 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1308 | SwitchCases.clear(); |
| 1309 | } |
| 1310 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1311 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1312 | // Create a CaseBlock record representing this branch. |
| 1313 | CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(), |
| 1314 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1315 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1316 | // cond branch. |
| 1317 | visitSwitchCase(CB); |
| 1318 | } |
| 1319 | |
| 1320 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1321 | /// the binary search tree resulting from lowering a switch instruction. |
| 1322 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1323 | SDValue Cond; |
| 1324 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1325 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1326 | |
| 1327 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1328 | if (CB.CmpMHS == NULL) { |
| 1329 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1330 | // handle common cases produced by branch lowering. |
| 1331 | if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ) |
| 1332 | Cond = CondLHS; |
| 1333 | else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) { |
| 1334 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1335 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1336 | } else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1337 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1338 | } else { |
| 1339 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1340 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1341 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1342 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1343 | |
| 1344 | SDValue CmpOp = getValue(CB.CmpMHS); |
| 1345 | MVT VT = CmpOp.getValueType(); |
| 1346 | |
| 1347 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1348 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1349 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1350 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1351 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1352 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1353 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1354 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1355 | } |
| 1356 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1357 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1358 | // Update successor info |
| 1359 | CurMBB->addSuccessor(CB.TrueBB); |
| 1360 | CurMBB->addSuccessor(CB.FalseBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1361 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1362 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1363 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1364 | MachineBasicBlock *NextBlock = 0; |
| 1365 | MachineFunction::iterator BBI = CurMBB; |
| 1366 | if (++BBI != CurMBB->getParent()->end()) |
| 1367 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1368 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1369 | // If the lhs block is the next block, invert the condition so that we can |
| 1370 | // fall through to the lhs instead of the rhs block. |
| 1371 | if (CB.TrueBB == NextBlock) { |
| 1372 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1373 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1374 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1375 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1376 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1377 | MVT::Other, getControlRoot(), Cond, |
| 1378 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1379 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1380 | // If the branch was constant folded, fix up the CFG. |
| 1381 | if (BrCond.getOpcode() == ISD::BR) { |
| 1382 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1383 | DAG.setRoot(BrCond); |
| 1384 | } else { |
| 1385 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1386 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1387 | CurMBB->removeSuccessor(CB.TrueBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1388 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1389 | if (CB.FalseBB == NextBlock) |
| 1390 | DAG.setRoot(BrCond); |
| 1391 | else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1392 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1393 | DAG.getBasicBlock(CB.FalseBB))); |
| 1394 | } |
| 1395 | } |
| 1396 | |
| 1397 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1398 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1399 | // Emit the code for the jump table |
| 1400 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
| 1401 | MVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1402 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1403 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1404 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1405 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1406 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1407 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1408 | } |
| 1409 | |
| 1410 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1411 | /// in the JumpTable from switch case. |
| 1412 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1413 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1414 | // Subtract the lowest switch case value from the value being switched on and |
| 1415 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1416 | // difference between smallest and largest cases. |
| 1417 | SDValue SwitchOp = getValue(JTH.SValue); |
| 1418 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1419 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1420 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1421 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1422 | // The SDNode we just created, which holds the value being switched on minus |
| 1423 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1424 | // can be used as an index into the jump table in a subsequent basic block. |
| 1425 | // This value may be smaller or larger than the target's pointer type, and |
| 1426 | // therefore require extension or truncating. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1427 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1428 | SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1429 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1430 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1431 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1432 | TLI.getPointerTy(), SUB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1433 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1434 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1435 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1436 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1437 | JT.Reg = JumpTableReg; |
| 1438 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1439 | // Emit the range check for the jump table, and branch to the default block |
| 1440 | // for the switch statement if the value being switched on exceeds the largest |
| 1441 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1442 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1443 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1444 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1445 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1446 | |
| 1447 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1448 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1449 | MachineBasicBlock *NextBlock = 0; |
| 1450 | MachineFunction::iterator BBI = CurMBB; |
| 1451 | if (++BBI != CurMBB->getParent()->end()) |
| 1452 | NextBlock = BBI; |
| 1453 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1454 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1455 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1456 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1457 | |
| 1458 | if (JT.MBB == NextBlock) |
| 1459 | DAG.setRoot(BrCond); |
| 1460 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1461 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1462 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1463 | } |
| 1464 | |
| 1465 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1466 | /// suitable for "bit tests" |
| 1467 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1468 | // Subtract the minimum value |
| 1469 | SDValue SwitchOp = getValue(B.SValue); |
| 1470 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1471 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1472 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1473 | |
| 1474 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1475 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1476 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1477 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1478 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1479 | |
| 1480 | SDValue ShiftOp; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1481 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1482 | ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1483 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1484 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1485 | ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1486 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1487 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1488 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1489 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1490 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1491 | |
| 1492 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1493 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1494 | MachineBasicBlock *NextBlock = 0; |
| 1495 | MachineFunction::iterator BBI = CurMBB; |
| 1496 | if (++BBI != CurMBB->getParent()->end()) |
| 1497 | NextBlock = BBI; |
| 1498 | |
| 1499 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1500 | |
| 1501 | CurMBB->addSuccessor(B.Default); |
| 1502 | CurMBB->addSuccessor(MBB); |
| 1503 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1504 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1505 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1506 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1507 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1508 | if (MBB == NextBlock) |
| 1509 | DAG.setRoot(BrRange); |
| 1510 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1511 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1512 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1513 | } |
| 1514 | |
| 1515 | /// visitBitTestCase - this function produces one "bit test" |
| 1516 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1517 | unsigned Reg, |
| 1518 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1519 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1520 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1521 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1522 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1523 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1524 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1525 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1526 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1527 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1528 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1529 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1530 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1531 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1532 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1533 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1534 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1535 | |
| 1536 | CurMBB->addSuccessor(B.TargetBB); |
| 1537 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1538 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1539 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1540 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1541 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1542 | |
| 1543 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1544 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1545 | MachineBasicBlock *NextBlock = 0; |
| 1546 | MachineFunction::iterator BBI = CurMBB; |
| 1547 | if (++BBI != CurMBB->getParent()->end()) |
| 1548 | NextBlock = BBI; |
| 1549 | |
| 1550 | if (NextMBB == NextBlock) |
| 1551 | DAG.setRoot(BrAnd); |
| 1552 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1553 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1554 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
| 1557 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1558 | // Retrieve successors. |
| 1559 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1560 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1561 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1562 | const Value *Callee(I.getCalledValue()); |
| 1563 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1564 | visitInlineAsm(&I); |
| 1565 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1566 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1567 | |
| 1568 | // If the value of the invoke is used outside of its defining block, make it |
| 1569 | // available as a virtual register. |
| 1570 | if (!I.use_empty()) { |
| 1571 | DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I); |
| 1572 | if (VMI != FuncInfo.ValueMap.end()) |
| 1573 | CopyValueToVirtualRegister(&I, VMI->second); |
| 1574 | } |
| 1575 | |
| 1576 | // Update successor info |
| 1577 | CurMBB->addSuccessor(Return); |
| 1578 | CurMBB->addSuccessor(LandingPad); |
| 1579 | |
| 1580 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1581 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1582 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1583 | DAG.getBasicBlock(Return))); |
| 1584 | } |
| 1585 | |
| 1586 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1587 | } |
| 1588 | |
| 1589 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1590 | /// small case ranges). |
| 1591 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1592 | CaseRecVector& WorkList, |
| 1593 | Value* SV, |
| 1594 | MachineBasicBlock* Default) { |
| 1595 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1596 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1597 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1598 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1599 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1600 | return false; |
| 1601 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1602 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1603 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1604 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1605 | |
| 1606 | // Figure out which block is immediately after the current one. |
| 1607 | MachineBasicBlock *NextBlock = 0; |
| 1608 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1609 | |
| 1610 | if (++BBI != CurMBB->getParent()->end()) |
| 1611 | NextBlock = BBI; |
| 1612 | |
| 1613 | // TODO: If any two of the cases has the same destination, and if one value |
| 1614 | // is the same as the other, but has one bit unset that the other has set, |
| 1615 | // use bit manipulation to do two compares at once. For example: |
| 1616 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1617 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1618 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1619 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1620 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1621 | // branches in this order. See if rearranging a case value would help. |
| 1622 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1623 | if (I->BB == NextBlock) { |
| 1624 | std::swap(*I, BackCase); |
| 1625 | break; |
| 1626 | } |
| 1627 | } |
| 1628 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1629 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1630 | // Create a CaseBlock record representing a conditional branch to |
| 1631 | // the Case's target mbb if the value being switched on SV is equal |
| 1632 | // to C. |
| 1633 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1634 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1635 | MachineBasicBlock *FallThrough; |
| 1636 | if (I != E-1) { |
| 1637 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1638 | CurMF->insert(BBI, FallThrough); |
| 1639 | } else { |
| 1640 | // If the last case doesn't match, go to the default block. |
| 1641 | FallThrough = Default; |
| 1642 | } |
| 1643 | |
| 1644 | Value *RHS, *LHS, *MHS; |
| 1645 | ISD::CondCode CC; |
| 1646 | if (I->High == I->Low) { |
| 1647 | // This is just small small case range :) containing exactly 1 case |
| 1648 | CC = ISD::SETEQ; |
| 1649 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1650 | } else { |
| 1651 | CC = ISD::SETLE; |
| 1652 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1653 | } |
| 1654 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1655 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1656 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1657 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1658 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1659 | // before the next MBB. |
| 1660 | if (CurBlock == CurMBB) |
| 1661 | visitSwitchCase(CB); |
| 1662 | else |
| 1663 | SwitchCases.push_back(CB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1664 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1665 | CurBlock = FallThrough; |
| 1666 | } |
| 1667 | |
| 1668 | return true; |
| 1669 | } |
| 1670 | |
| 1671 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1672 | return !DisableJumpTables && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 1673 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1674 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1675 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1676 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1677 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1678 | APInt LastExt(Last), FirstExt(First); |
| 1679 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1680 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1681 | return (LastExt - FirstExt + 1ULL); |
| 1682 | } |
| 1683 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1684 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1685 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1686 | CaseRecVector& WorkList, |
| 1687 | Value* SV, |
| 1688 | MachineBasicBlock* Default) { |
| 1689 | Case& FrontCase = *CR.Range.first; |
| 1690 | Case& BackCase = *(CR.Range.second-1); |
| 1691 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1692 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1693 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1694 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1695 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1696 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1697 | I!=E; ++I) |
| 1698 | TSize += I->size(); |
| 1699 | |
| 1700 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1701 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1702 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1703 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1704 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1705 | if (Density < 0.4) |
| 1706 | return false; |
| 1707 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1708 | DEBUG(errs() << "Lowering jump table\n" |
| 1709 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1710 | << "Range: " << Range |
| 1711 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1712 | |
| 1713 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1714 | // inserting any additional MBBs necessary to represent the switch. |
| 1715 | MachineFunction *CurMF = CurMBB->getParent(); |
| 1716 | |
| 1717 | // Figure out which block is immediately after the current one. |
| 1718 | MachineBasicBlock *NextBlock = 0; |
| 1719 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1720 | |
| 1721 | if (++BBI != CurMBB->getParent()->end()) |
| 1722 | NextBlock = BBI; |
| 1723 | |
| 1724 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1725 | |
| 1726 | // Create a new basic block to hold the code for loading the address |
| 1727 | // of the jump table, and jumping to it. Update successor information; |
| 1728 | // we will either branch to the default case for the switch, or the jump |
| 1729 | // table. |
| 1730 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1731 | CurMF->insert(BBI, JumpTableBB); |
| 1732 | CR.CaseBB->addSuccessor(Default); |
| 1733 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1734 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1735 | // Build a vector of destination BBs, corresponding to each target |
| 1736 | // of the jump table. If the value of the jump table slot corresponds to |
| 1737 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1738 | // the default BB. |
| 1739 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1740 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1741 | 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] | 1742 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1743 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1744 | |
| 1745 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1746 | DestBBs.push_back(I->BB); |
| 1747 | if (TEI==High) |
| 1748 | ++I; |
| 1749 | } else { |
| 1750 | DestBBs.push_back(Default); |
| 1751 | } |
| 1752 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1753 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1754 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1755 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1756 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1757 | E = DestBBs.end(); I != E; ++I) { |
| 1758 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1759 | SuccsHandled[(*I)->getNumber()] = true; |
| 1760 | JumpTableBB->addSuccessor(*I); |
| 1761 | } |
| 1762 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1763 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1764 | // Create a jump table index for this jump table, or return an existing |
| 1765 | // one. |
| 1766 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1767 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1768 | // Set the jump table information so that we can codegen it as a second |
| 1769 | // MachineBasicBlock |
| 1770 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1771 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1772 | if (CR.CaseBB == CurMBB) |
| 1773 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1774 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1775 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1776 | |
| 1777 | return true; |
| 1778 | } |
| 1779 | |
| 1780 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1781 | /// 2 subtrees. |
| 1782 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1783 | CaseRecVector& WorkList, |
| 1784 | Value* SV, |
| 1785 | MachineBasicBlock* Default) { |
| 1786 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1787 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1788 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1789 | |
| 1790 | // Figure out which block is immediately after the current one. |
| 1791 | MachineBasicBlock *NextBlock = 0; |
| 1792 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1793 | |
| 1794 | if (++BBI != CurMBB->getParent()->end()) |
| 1795 | NextBlock = BBI; |
| 1796 | |
| 1797 | Case& FrontCase = *CR.Range.first; |
| 1798 | Case& BackCase = *(CR.Range.second-1); |
| 1799 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1800 | |
| 1801 | // Size is the number of Cases represented by this range. |
| 1802 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1803 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1804 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1805 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1806 | double FMetric = 0; |
| 1807 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1808 | |
| 1809 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1810 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1811 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1812 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1813 | I!=E; ++I) |
| 1814 | TSize += I->size(); |
| 1815 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1816 | size_t LSize = FrontCase.size(); |
| 1817 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1818 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1819 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1820 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1821 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1822 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1823 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1824 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1825 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1826 | assert((Range - 2ULL).isNonNegative() && |
| 1827 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1828 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1829 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1830 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1831 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1832 | DEBUG(errs() <<"=>Step\n" |
| 1833 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1834 | << "LDensity: " << LDensity |
| 1835 | << ", RDensity: " << RDensity << '\n' |
| 1836 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1837 | if (FMetric < Metric) { |
| 1838 | Pivot = J; |
| 1839 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1840 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1841 | } |
| 1842 | |
| 1843 | LSize += J->size(); |
| 1844 | RSize -= J->size(); |
| 1845 | } |
| 1846 | if (areJTsAllowed(TLI)) { |
| 1847 | // If our case is dense we *really* should handle it earlier! |
| 1848 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1849 | } else { |
| 1850 | Pivot = CR.Range.first + Size/2; |
| 1851 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1852 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1853 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1854 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1855 | Constant *C = Pivot->Low; |
| 1856 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1857 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1858 | // 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] | 1859 | // 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] | 1860 | // 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] | 1861 | // 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] | 1862 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1863 | // rather than creating a leaf node for it. |
| 1864 | if ((LHSR.second - LHSR.first) == 1 && |
| 1865 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1866 | cast<ConstantInt>(C)->getValue() == |
| 1867 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1868 | TrueBB = LHSR.first->BB; |
| 1869 | } else { |
| 1870 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1871 | CurMF->insert(BBI, TrueBB); |
| 1872 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
| 1873 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1874 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1875 | // Similar to the optimization above, if the Value being switched on is |
| 1876 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1877 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1878 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1879 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1880 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1881 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1882 | FalseBB = RHSR.first->BB; |
| 1883 | } else { |
| 1884 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1885 | CurMF->insert(BBI, FalseBB); |
| 1886 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
| 1887 | } |
| 1888 | |
| 1889 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1890 | // 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] | 1891 | // Otherwise, branch to LHS. |
| 1892 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1893 | |
| 1894 | if (CR.CaseBB == CurMBB) |
| 1895 | visitSwitchCase(CB); |
| 1896 | else |
| 1897 | SwitchCases.push_back(CB); |
| 1898 | |
| 1899 | return true; |
| 1900 | } |
| 1901 | |
| 1902 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1903 | /// range span less, than machine word bitwidth, encode case range into series |
| 1904 | /// of masks and emit bit tests with these masks. |
| 1905 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1906 | CaseRecVector& WorkList, |
| 1907 | Value* SV, |
| 1908 | MachineBasicBlock* Default){ |
| 1909 | unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits(); |
| 1910 | |
| 1911 | Case& FrontCase = *CR.Range.first; |
| 1912 | Case& BackCase = *(CR.Range.second-1); |
| 1913 | |
| 1914 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1915 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1916 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1917 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1918 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1919 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1920 | I!=E; ++I) { |
| 1921 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1922 | numCmps += (I->Low == I->High ? 1 : 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1923 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1924 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1925 | // Count unique destinations |
| 1926 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1927 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1928 | Dests.insert(I->BB); |
| 1929 | if (Dests.size() > 3) |
| 1930 | // Don't bother the code below, if there are too much unique destinations |
| 1931 | return false; |
| 1932 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1933 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1934 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1935 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1936 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1937 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1938 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1939 | APInt cmpRange = maxValue - minValue; |
| 1940 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1941 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1942 | << "Low bound: " << minValue << '\n' |
| 1943 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1944 | |
| 1945 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1946 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1947 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1948 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1949 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1950 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1951 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1952 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1953 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1954 | // Optimize the case where all the case values fit in a |
| 1955 | // word without having to subtract minValue. In this case, |
| 1956 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1957 | if (minValue.isNonNegative() && |
| 1958 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1959 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1960 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1961 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1962 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1963 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1964 | CaseBitsVector CasesBits; |
| 1965 | unsigned i, count = 0; |
| 1966 | |
| 1967 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1968 | MachineBasicBlock* Dest = I->BB; |
| 1969 | for (i = 0; i < count; ++i) |
| 1970 | if (Dest == CasesBits[i].BB) |
| 1971 | break; |
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 | if (i == count) { |
| 1974 | assert((count < 3) && "Too much destinations to test!"); |
| 1975 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1976 | count++; |
| 1977 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1978 | |
| 1979 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1980 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1981 | |
| 1982 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 1983 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 1984 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1985 | for (uint64_t j = lo; j <= hi; j++) { |
| 1986 | CasesBits[i].Mask |= 1ULL << j; |
| 1987 | CasesBits[i].Bits++; |
| 1988 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1989 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1990 | } |
| 1991 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1992 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1993 | BitTestInfo BTC; |
| 1994 | |
| 1995 | // Figure out which block is immediately after the current one. |
| 1996 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1997 | ++BBI; |
| 1998 | |
| 1999 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 2000 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2001 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2002 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2003 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2004 | << ", Bits: " << CasesBits[i].Bits |
| 2005 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2006 | |
| 2007 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2008 | CurMF->insert(BBI, CaseBB); |
| 2009 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2010 | CaseBB, |
| 2011 | CasesBits[i].BB)); |
| 2012 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2013 | |
| 2014 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2015 | -1U, (CR.CaseBB == CurMBB), |
| 2016 | CR.CaseBB, Default, BTC); |
| 2017 | |
| 2018 | if (CR.CaseBB == CurMBB) |
| 2019 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2020 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2021 | BitTestCases.push_back(BTB); |
| 2022 | |
| 2023 | return true; |
| 2024 | } |
| 2025 | |
| 2026 | |
| 2027 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2028 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2029 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2030 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2031 | |
| 2032 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2033 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2034 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2035 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2036 | SI.getSuccessorValue(i), |
| 2037 | SMBB)); |
| 2038 | } |
| 2039 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2040 | |
| 2041 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2042 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2043 | // Must recompute end() each iteration because it may be |
| 2044 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2045 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2046 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2047 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2048 | MachineBasicBlock* nextBB = J->BB; |
| 2049 | MachineBasicBlock* currentBB = I->BB; |
| 2050 | |
| 2051 | // If the two neighboring cases go to the same destination, merge them |
| 2052 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2053 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2054 | I->High = J->High; |
| 2055 | J = Cases.erase(J); |
| 2056 | } else { |
| 2057 | I = J++; |
| 2058 | } |
| 2059 | } |
| 2060 | |
| 2061 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2062 | if (I->Low != I->High) |
| 2063 | // A range counts double, since it requires two compares. |
| 2064 | ++numCmps; |
| 2065 | } |
| 2066 | |
| 2067 | return numCmps; |
| 2068 | } |
| 2069 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2070 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2071 | // Figure out which block is immediately after the current one. |
| 2072 | MachineBasicBlock *NextBlock = 0; |
| 2073 | MachineFunction::iterator BBI = CurMBB; |
| 2074 | |
| 2075 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2076 | |
| 2077 | // If there is only the default destination, branch to it if it is not the |
| 2078 | // next basic block. Otherwise, just fall through. |
| 2079 | if (SI.getNumOperands() == 2) { |
| 2080 | // Update machine-CFG edges. |
| 2081 | |
| 2082 | // If this is not a fall-through branch, emit the branch. |
| 2083 | CurMBB->addSuccessor(Default); |
| 2084 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2085 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2086 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2087 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2088 | return; |
| 2089 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2090 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2091 | // If there are any non-default case statements, create a vector of Cases |
| 2092 | // representing each one, and sort the vector so that we can efficiently |
| 2093 | // create a binary search tree from them. |
| 2094 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2095 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2096 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2097 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2098 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2099 | |
| 2100 | // Get the Value to be switched on and default basic blocks, which will be |
| 2101 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2102 | // search tree. |
| 2103 | Value *SV = SI.getOperand(0); |
| 2104 | |
| 2105 | // Push the initial CaseRec onto the worklist |
| 2106 | CaseRecVector WorkList; |
| 2107 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2108 | |
| 2109 | while (!WorkList.empty()) { |
| 2110 | // Grab a record representing a case range to process off the worklist |
| 2111 | CaseRec CR = WorkList.back(); |
| 2112 | WorkList.pop_back(); |
| 2113 | |
| 2114 | if (handleBitTestsSwitchCase(CR, WorkList, SV, Default)) |
| 2115 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2116 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2117 | // If the range has few cases (two or less) emit a series of specific |
| 2118 | // tests. |
| 2119 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2120 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2121 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2122 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2123 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2124 | // lowering the switch to a binary tree of conditional branches. |
| 2125 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2126 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2127 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2128 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2129 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2130 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | |
| 2135 | void SelectionDAGLowering::visitSub(User &I) { |
| 2136 | // -0.0 - X --> fneg |
| 2137 | const Type *Ty = I.getType(); |
| 2138 | if (isa<VectorType>(Ty)) { |
| 2139 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2140 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2141 | const Type *ElTy = DestTy->getElementType(); |
| 2142 | if (ElTy->isFloatingPoint()) { |
| 2143 | unsigned VL = DestTy->getNumElements(); |
| 2144 | std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy)); |
| 2145 | Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size()); |
| 2146 | if (CV == CNZ) { |
| 2147 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2148 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2149 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2150 | return; |
| 2151 | } |
| 2152 | } |
| 2153 | } |
| 2154 | } |
| 2155 | if (Ty->isFloatingPoint()) { |
| 2156 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
| 2157 | if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) { |
| 2158 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2159 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2160 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2161 | return; |
| 2162 | } |
| 2163 | } |
| 2164 | |
| 2165 | visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB); |
| 2166 | } |
| 2167 | |
| 2168 | void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) { |
| 2169 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2170 | SDValue Op2 = getValue(I.getOperand(1)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2171 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2172 | setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2173 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 2177 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2178 | SDValue Op2 = getValue(I.getOperand(1)); |
| 2179 | if (!isa<VectorType>(I.getType())) { |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2180 | if (TLI.getPointerTy().bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2181 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2182 | TLI.getPointerTy(), Op2); |
| 2183 | else if (TLI.getPointerTy().bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2184 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2185 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2186 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2187 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2188 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2189 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2190 | } |
| 2191 | |
| 2192 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2193 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2194 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2195 | predicate = IC->getPredicate(); |
| 2196 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2197 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2198 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2199 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2200 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2201 | setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2202 | } |
| 2203 | |
| 2204 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2205 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2206 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2207 | predicate = FC->getPredicate(); |
| 2208 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2209 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2210 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2211 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2212 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2213 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2214 | } |
| 2215 | |
| 2216 | void SelectionDAGLowering::visitVICmp(User &I) { |
| 2217 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2218 | if (VICmpInst *IC = dyn_cast<VICmpInst>(&I)) |
| 2219 | predicate = IC->getPredicate(); |
| 2220 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2221 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2222 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2223 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2224 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2225 | setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2226 | Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2227 | } |
| 2228 | |
| 2229 | void SelectionDAGLowering::visitVFCmp(User &I) { |
| 2230 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2231 | if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I)) |
| 2232 | predicate = FC->getPredicate(); |
| 2233 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2234 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2235 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2236 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2237 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2238 | MVT DestVT = TLI.getValueType(I.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2239 | |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2240 | setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | void SelectionDAGLowering::visitSelect(User &I) { |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2244 | SmallVector<MVT, 4> ValueVTs; |
| 2245 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2246 | unsigned NumValues = ValueVTs.size(); |
| 2247 | if (NumValues != 0) { |
| 2248 | SmallVector<SDValue, 4> Values(NumValues); |
| 2249 | SDValue Cond = getValue(I.getOperand(0)); |
| 2250 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2251 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2252 | |
| 2253 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2254 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2255 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2256 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2257 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2258 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2259 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2260 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2261 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2262 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2263 | } |
| 2264 | |
| 2265 | |
| 2266 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2267 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2268 | SDValue N = getValue(I.getOperand(0)); |
| 2269 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2270 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2271 | } |
| 2272 | |
| 2273 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2274 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2275 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2276 | SDValue N = getValue(I.getOperand(0)); |
| 2277 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2278 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2279 | } |
| 2280 | |
| 2281 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2282 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2283 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2284 | SDValue N = getValue(I.getOperand(0)); |
| 2285 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2286 | setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2287 | } |
| 2288 | |
| 2289 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2290 | // FPTrunc is never a no-op cast, no need to check |
| 2291 | SDValue N = getValue(I.getOperand(0)); |
| 2292 | MVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2293 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2294 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2295 | } |
| 2296 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2297 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2298 | // FPTrunc is never a no-op cast, no need to check |
| 2299 | SDValue N = getValue(I.getOperand(0)); |
| 2300 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2301 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2302 | } |
| 2303 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2304 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2305 | // FPToUI is never a no-op cast, no need to check |
| 2306 | SDValue N = getValue(I.getOperand(0)); |
| 2307 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2308 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2312 | // FPToSI is never a no-op cast, no need to check |
| 2313 | SDValue N = getValue(I.getOperand(0)); |
| 2314 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2315 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2316 | } |
| 2317 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2318 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2319 | // UIToFP is never a no-op cast, no need to check |
| 2320 | SDValue N = getValue(I.getOperand(0)); |
| 2321 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2322 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2323 | } |
| 2324 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2325 | void SelectionDAGLowering::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2326 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2327 | SDValue N = getValue(I.getOperand(0)); |
| 2328 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2329 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2330 | } |
| 2331 | |
| 2332 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2333 | // What to do depends on the size of the integer and the size of the pointer. |
| 2334 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2335 | SDValue N = getValue(I.getOperand(0)); |
| 2336 | MVT SrcVT = N.getValueType(); |
| 2337 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2338 | SDValue Result; |
| 2339 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2340 | Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2341 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2342 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2343 | Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2344 | setValue(&I, Result); |
| 2345 | } |
| 2346 | |
| 2347 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2348 | // What to do depends on the size of the integer and the size of the pointer. |
| 2349 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2350 | SDValue N = getValue(I.getOperand(0)); |
| 2351 | MVT SrcVT = N.getValueType(); |
| 2352 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2353 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2354 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2355 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2356 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2357 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2358 | DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2359 | } |
| 2360 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2361 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2362 | SDValue N = getValue(I.getOperand(0)); |
| 2363 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2364 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2365 | // 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] | 2366 | // is either a BIT_CONVERT or a no-op. |
| 2367 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2368 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2369 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2370 | else |
| 2371 | setValue(&I, N); // noop cast. |
| 2372 | } |
| 2373 | |
| 2374 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2375 | SDValue InVec = getValue(I.getOperand(0)); |
| 2376 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2377 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2378 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2379 | getValue(I.getOperand(2))); |
| 2380 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2381 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2382 | TLI.getValueType(I.getType()), |
| 2383 | InVec, InVal, InIdx)); |
| 2384 | } |
| 2385 | |
| 2386 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2387 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2388 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2389 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2390 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2391 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2392 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2393 | } |
| 2394 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2395 | |
| 2396 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2397 | // from SIndx and increasing to the element length (undefs are allowed). |
| 2398 | static bool SequentialMask(SDValue Mask, unsigned SIndx) { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2399 | unsigned MaskNumElts = Mask.getNumOperands(); |
| 2400 | for (unsigned i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2401 | if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) { |
| 2402 | unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue(); |
| 2403 | if (Idx != i + SIndx) |
| 2404 | return false; |
| 2405 | } |
| 2406 | } |
| 2407 | return true; |
| 2408 | } |
| 2409 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2410 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2411 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2412 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2413 | SDValue Mask = getValue(I.getOperand(2)); |
| 2414 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2415 | MVT VT = TLI.getValueType(I.getType()); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2416 | MVT SrcVT = Src1.getValueType(); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2417 | int MaskNumElts = Mask.getNumOperands(); |
| 2418 | int SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2419 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2420 | if (SrcNumElts == MaskNumElts) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2421 | setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2422 | VT, Src1, Src2, Mask)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2423 | return; |
| 2424 | } |
| 2425 | |
| 2426 | // 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] | 2427 | MVT MaskEltVT = Mask.getValueType().getVectorElementType(); |
| 2428 | |
| 2429 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2430 | // Mask is longer than the source vectors and is a multiple of the source |
| 2431 | // 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] | 2432 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2433 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2434 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2435 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2436 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2437 | return; |
| 2438 | } |
| 2439 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2440 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2441 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2442 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2443 | |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2444 | SDValue* MOps1 = new SDValue[NumConcat]; |
| 2445 | SDValue* MOps2 = new SDValue[NumConcat]; |
| 2446 | MOps1[0] = Src1; |
| 2447 | MOps2[0] = Src2; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2448 | for (unsigned i = 1; i != NumConcat; ++i) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2449 | MOps1[i] = UndefVal; |
| 2450 | MOps2[i] = UndefVal; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2451 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2452 | Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2453 | VT, MOps1, NumConcat); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2454 | Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2455 | VT, MOps2, NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2456 | |
| 2457 | delete [] MOps1; |
| 2458 | delete [] MOps2; |
| 2459 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2460 | // Readjust mask for new input vector length. |
| 2461 | SmallVector<SDValue, 8> MappedOps; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2462 | for (int i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2463 | if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) { |
| 2464 | MappedOps.push_back(Mask.getOperand(i)); |
| 2465 | } else { |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2466 | int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue(); |
| 2467 | if (Idx < SrcNumElts) |
| 2468 | MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT)); |
| 2469 | else |
| 2470 | MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts, |
| 2471 | MaskEltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2472 | } |
| 2473 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2474 | Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2475 | Mask.getValueType(), |
| 2476 | &MappedOps[0], MappedOps.size()); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2477 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2478 | setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2479 | VT, Src1, Src2, Mask)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2480 | return; |
| 2481 | } |
| 2482 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2483 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2484 | // Resulting vector is shorter than the incoming vector. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2485 | if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2486 | // Shuffle extracts 1st vector. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2487 | setValue(&I, Src1); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2488 | return; |
| 2489 | } |
| 2490 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2491 | if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2492 | // Shuffle extracts 2nd vector. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2493 | setValue(&I, Src2); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2494 | return; |
| 2495 | } |
| 2496 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2497 | // Analyze the access pattern of the vector to see if we can extract |
| 2498 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2499 | // the range of elements the mask access on both vectors. |
| 2500 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2501 | int MaxRange[2] = {-1, -1}; |
| 2502 | |
| 2503 | for (int i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2504 | SDValue Arg = Mask.getOperand(i); |
| 2505 | if (Arg.getOpcode() != ISD::UNDEF) { |
| 2506 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2507 | int Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
| 2508 | int Input = 0; |
| 2509 | if (Idx >= SrcNumElts) { |
| 2510 | Input = 1; |
| 2511 | Idx -= SrcNumElts; |
| 2512 | } |
| 2513 | if (Idx > MaxRange[Input]) |
| 2514 | MaxRange[Input] = Idx; |
| 2515 | if (Idx < MinRange[Input]) |
| 2516 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2517 | } |
| 2518 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2519 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2520 | // Check if the access is smaller than the vector size and can we find |
| 2521 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2522 | 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] | 2523 | int StartIdx[2]; // StartIdx to extract from |
| 2524 | for (int Input=0; Input < 2; ++Input) { |
| 2525 | if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) { |
| 2526 | RangeUse[Input] = 0; // Unused |
| 2527 | StartIdx[Input] = 0; |
| 2528 | } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) { |
| 2529 | // 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] | 2530 | // start index that is a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2531 | if (MaxRange[Input] < MaskNumElts) { |
| 2532 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2533 | StartIdx[Input] = 0; |
| 2534 | } else { |
| 2535 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Mon P Wang | 6cce3da | 2008-11-23 04:35:05 +0000 | [diff] [blame] | 2536 | if (MaxRange[Input] - StartIdx[Input] < MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2537 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2538 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2539 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2540 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2541 | } |
| 2542 | |
| 2543 | if (RangeUse[0] == 0 && RangeUse[0] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2544 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2545 | return; |
| 2546 | } |
| 2547 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2548 | // Extract appropriate subvector and generate a vector shuffle |
| 2549 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2550 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2551 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2552 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2553 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2554 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2555 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2556 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2557 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2558 | // Calculate new mask. |
| 2559 | SmallVector<SDValue, 8> MappedOps; |
| 2560 | for (int i = 0; i != MaskNumElts; ++i) { |
| 2561 | SDValue Arg = Mask.getOperand(i); |
| 2562 | if (Arg.getOpcode() == ISD::UNDEF) { |
| 2563 | MappedOps.push_back(Arg); |
| 2564 | } else { |
| 2565 | int Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
| 2566 | if (Idx < SrcNumElts) |
| 2567 | MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT)); |
| 2568 | else { |
| 2569 | Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts; |
| 2570 | MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2571 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2572 | } |
| 2573 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2574 | Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2575 | Mask.getValueType(), |
| 2576 | &MappedOps[0], MappedOps.size()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2577 | setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2578 | VT, Src1, Src2, Mask)); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2579 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2580 | } |
| 2581 | } |
| 2582 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2583 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2584 | // replacing the shuffle with extract and build vector. |
| 2585 | // to insert and build vector. |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2586 | MVT EltVT = VT.getVectorElementType(); |
| 2587 | MVT PtrVT = TLI.getPointerTy(); |
| 2588 | SmallVector<SDValue,8> Ops; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2589 | for (int i = 0; i != MaskNumElts; ++i) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2590 | SDValue Arg = Mask.getOperand(i); |
| 2591 | if (Arg.getOpcode() == ISD::UNDEF) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2592 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2593 | } else { |
| 2594 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2595 | int Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
| 2596 | if (Idx < SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2597 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2598 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2599 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2600 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2601 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2602 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2603 | } |
| 2604 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2605 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2606 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2607 | } |
| 2608 | |
| 2609 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2610 | const Value *Op0 = I.getOperand(0); |
| 2611 | const Value *Op1 = I.getOperand(1); |
| 2612 | const Type *AggTy = I.getType(); |
| 2613 | const Type *ValTy = Op1->getType(); |
| 2614 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2615 | bool FromUndef = isa<UndefValue>(Op1); |
| 2616 | |
| 2617 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2618 | I.idx_begin(), I.idx_end()); |
| 2619 | |
| 2620 | SmallVector<MVT, 4> AggValueVTs; |
| 2621 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
| 2622 | SmallVector<MVT, 4> ValValueVTs; |
| 2623 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2624 | |
| 2625 | unsigned NumAggValues = AggValueVTs.size(); |
| 2626 | unsigned NumValValues = ValValueVTs.size(); |
| 2627 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2628 | |
| 2629 | SDValue Agg = getValue(Op0); |
| 2630 | SDValue Val = getValue(Op1); |
| 2631 | unsigned i = 0; |
| 2632 | // Copy the beginning value(s) from the original aggregate. |
| 2633 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2634 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2635 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2636 | // Copy values from the inserted value(s). |
| 2637 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2638 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2639 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2640 | // Copy remaining value(s) from the original aggregate. |
| 2641 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2642 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2643 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 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(&AggValueVTs[0], NumAggValues), |
| 2647 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2648 | } |
| 2649 | |
| 2650 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2651 | const Value *Op0 = I.getOperand(0); |
| 2652 | const Type *AggTy = Op0->getType(); |
| 2653 | const Type *ValTy = I.getType(); |
| 2654 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2655 | |
| 2656 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2657 | I.idx_begin(), I.idx_end()); |
| 2658 | |
| 2659 | SmallVector<MVT, 4> ValValueVTs; |
| 2660 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2661 | |
| 2662 | unsigned NumValValues = ValValueVTs.size(); |
| 2663 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2664 | |
| 2665 | SDValue Agg = getValue(Op0); |
| 2666 | // Copy out the selected value(s). |
| 2667 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2668 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2669 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2670 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2671 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2672 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2673 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2674 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2675 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2676 | } |
| 2677 | |
| 2678 | |
| 2679 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2680 | SDValue N = getValue(I.getOperand(0)); |
| 2681 | const Type *Ty = I.getOperand(0)->getType(); |
| 2682 | |
| 2683 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2684 | OI != E; ++OI) { |
| 2685 | Value *Idx = *OI; |
| 2686 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2687 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2688 | if (Field) { |
| 2689 | // N = N + Offset |
| 2690 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2691 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2692 | DAG.getIntPtrConstant(Offset)); |
| 2693 | } |
| 2694 | Ty = StTy->getElementType(Field); |
| 2695 | } else { |
| 2696 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2697 | |
| 2698 | // If this is a constant subscript, handle it quickly. |
| 2699 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2700 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2701 | uint64_t Offs = |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2702 | TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2703 | SDValue OffsVal; |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2704 | unsigned PtrBits = TLI.getPointerTy().getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2705 | if (PtrBits < 64) { |
| 2706 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2707 | TLI.getPointerTy(), |
| 2708 | DAG.getConstant(Offs, MVT::i64)); |
| 2709 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2710 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2711 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2712 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2713 | continue; |
| 2714 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2715 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2716 | // N = N + Idx * ElementSize; |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2717 | uint64_t ElementSize = TD->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2718 | SDValue IdxN = getValue(Idx); |
| 2719 | |
| 2720 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2721 | // it. |
| 2722 | if (IdxN.getValueType().bitsLT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2723 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2724 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2725 | else if (IdxN.getValueType().bitsGT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2726 | IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2727 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2728 | |
| 2729 | // If this is a multiply by a power of two, turn it into a shl |
| 2730 | // immediately. This is a very common case. |
| 2731 | if (ElementSize != 1) { |
| 2732 | if (isPowerOf2_64(ElementSize)) { |
| 2733 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2734 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2735 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2736 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2737 | } else { |
| 2738 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2739 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2740 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2741 | } |
| 2742 | } |
| 2743 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2744 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2745 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2746 | } |
| 2747 | } |
| 2748 | setValue(&I, N); |
| 2749 | } |
| 2750 | |
| 2751 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2752 | // If this is a fixed sized alloca in the entry block of the function, |
| 2753 | // allocate it statically on the stack. |
| 2754 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2755 | return; // getValue will auto-populate this. |
| 2756 | |
| 2757 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2758 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2759 | unsigned Align = |
| 2760 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2761 | I.getAlignment()); |
| 2762 | |
| 2763 | SDValue AllocSize = getValue(I.getArraySize()); |
| 2764 | MVT IntPtr = TLI.getPointerTy(); |
| 2765 | if (IntPtr.bitsLT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2766 | AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2767 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2768 | else if (IntPtr.bitsGT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2769 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2770 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2771 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2772 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr, AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2773 | DAG.getIntPtrConstant(TySize)); |
| 2774 | |
| 2775 | // Handle alignment. If the requested alignment is less than or equal to |
| 2776 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2777 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2778 | unsigned StackAlign = |
| 2779 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2780 | if (Align <= StackAlign) |
| 2781 | Align = 0; |
| 2782 | |
| 2783 | // Round the size of the allocation up to the stack alignment size |
| 2784 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2785 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2786 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2787 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2788 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2789 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2790 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2791 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2792 | |
| 2793 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
| 2794 | const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(), |
| 2795 | MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2796 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2797 | VTs, 2, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2798 | setValue(&I, DSA); |
| 2799 | DAG.setRoot(DSA.getValue(1)); |
| 2800 | |
| 2801 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2802 | // object. |
| 2803 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 2804 | } |
| 2805 | |
| 2806 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2807 | const Value *SV = I.getOperand(0); |
| 2808 | SDValue Ptr = getValue(SV); |
| 2809 | |
| 2810 | const Type *Ty = I.getType(); |
| 2811 | bool isVolatile = I.isVolatile(); |
| 2812 | unsigned Alignment = I.getAlignment(); |
| 2813 | |
| 2814 | SmallVector<MVT, 4> ValueVTs; |
| 2815 | SmallVector<uint64_t, 4> Offsets; |
| 2816 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2817 | unsigned NumValues = ValueVTs.size(); |
| 2818 | if (NumValues == 0) |
| 2819 | return; |
| 2820 | |
| 2821 | SDValue Root; |
| 2822 | bool ConstantMemory = false; |
| 2823 | if (I.isVolatile()) |
| 2824 | // Serialize volatile loads with other side effects. |
| 2825 | Root = getRoot(); |
| 2826 | else if (AA->pointsToConstantMemory(SV)) { |
| 2827 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2828 | Root = DAG.getEntryNode(); |
| 2829 | ConstantMemory = true; |
| 2830 | } else { |
| 2831 | // Do not serialize non-volatile loads against each other. |
| 2832 | Root = DAG.getRoot(); |
| 2833 | } |
| 2834 | |
| 2835 | SmallVector<SDValue, 4> Values(NumValues); |
| 2836 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2837 | MVT PtrVT = Ptr.getValueType(); |
| 2838 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2839 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2840 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2841 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2842 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2843 | SV, Offsets[i], |
| 2844 | isVolatile, Alignment); |
| 2845 | Values[i] = L; |
| 2846 | Chains[i] = L.getValue(1); |
| 2847 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2848 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2849 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2850 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2851 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2852 | &Chains[0], NumValues); |
| 2853 | if (isVolatile) |
| 2854 | DAG.setRoot(Chain); |
| 2855 | else |
| 2856 | PendingLoads.push_back(Chain); |
| 2857 | } |
| 2858 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2859 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2860 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2861 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2862 | } |
| 2863 | |
| 2864 | |
| 2865 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2866 | Value *SrcV = I.getOperand(0); |
| 2867 | Value *PtrV = I.getOperand(1); |
| 2868 | |
| 2869 | SmallVector<MVT, 4> ValueVTs; |
| 2870 | SmallVector<uint64_t, 4> Offsets; |
| 2871 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2872 | unsigned NumValues = ValueVTs.size(); |
| 2873 | if (NumValues == 0) |
| 2874 | return; |
| 2875 | |
| 2876 | // Get the lowered operands. Note that we do this after |
| 2877 | // checking if NumResults is zero, because with zero results |
| 2878 | // the operands won't have values in the map. |
| 2879 | SDValue Src = getValue(SrcV); |
| 2880 | SDValue Ptr = getValue(PtrV); |
| 2881 | |
| 2882 | SDValue Root = getRoot(); |
| 2883 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2884 | MVT PtrVT = Ptr.getValueType(); |
| 2885 | bool isVolatile = I.isVolatile(); |
| 2886 | unsigned Alignment = I.getAlignment(); |
| 2887 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2888 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2889 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2890 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2891 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2892 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2893 | PtrV, Offsets[i], |
| 2894 | isVolatile, Alignment); |
| 2895 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2896 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2897 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2898 | } |
| 2899 | |
| 2900 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2901 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2902 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2903 | unsigned Intrinsic) { |
| 2904 | bool HasChain = !I.doesNotAccessMemory(); |
| 2905 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2906 | |
| 2907 | // Build the operand list. |
| 2908 | SmallVector<SDValue, 8> Ops; |
| 2909 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2910 | if (OnlyLoad) { |
| 2911 | // We don't need to serialize loads against other loads. |
| 2912 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2913 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2914 | Ops.push_back(getRoot()); |
| 2915 | } |
| 2916 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2917 | |
| 2918 | // Info is set by getTgtMemInstrinsic |
| 2919 | TargetLowering::IntrinsicInfo Info; |
| 2920 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2921 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2922 | // 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] | 2923 | if (!IsTgtIntrinsic) |
| 2924 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2925 | |
| 2926 | // Add all operands of the call to the operand list. |
| 2927 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2928 | SDValue Op = getValue(I.getOperand(i)); |
| 2929 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2930 | "Intrinsic uses a non-legal type?"); |
| 2931 | Ops.push_back(Op); |
| 2932 | } |
| 2933 | |
| 2934 | std::vector<MVT> VTs; |
| 2935 | if (I.getType() != Type::VoidTy) { |
| 2936 | MVT VT = TLI.getValueType(I.getType()); |
| 2937 | if (VT.isVector()) { |
| 2938 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2939 | MVT EltVT = TLI.getValueType(DestTy->getElementType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2940 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2941 | VT = MVT::getVectorVT(EltVT, DestTy->getNumElements()); |
| 2942 | assert(VT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 2943 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2944 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2945 | assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?"); |
| 2946 | VTs.push_back(VT); |
| 2947 | } |
| 2948 | if (HasChain) |
| 2949 | VTs.push_back(MVT::Other); |
| 2950 | |
| 2951 | const MVT *VTList = DAG.getNodeValueTypes(VTs); |
| 2952 | |
| 2953 | // Create the node. |
| 2954 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2955 | if (IsTgtIntrinsic) { |
| 2956 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2957 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2958 | VTList, VTs.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2959 | &Ops[0], Ops.size(), |
| 2960 | Info.memVT, Info.ptrVal, Info.offset, |
| 2961 | Info.align, Info.vol, |
| 2962 | Info.readMem, Info.writeMem); |
| 2963 | } |
| 2964 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2965 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2966 | VTList, VTs.size(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2967 | &Ops[0], Ops.size()); |
| 2968 | else if (I.getType() != Type::VoidTy) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2969 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2970 | VTList, VTs.size(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2971 | &Ops[0], Ops.size()); |
| 2972 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2973 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2974 | VTList, VTs.size(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2975 | &Ops[0], Ops.size()); |
| 2976 | |
| 2977 | if (HasChain) { |
| 2978 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 2979 | if (OnlyLoad) |
| 2980 | PendingLoads.push_back(Chain); |
| 2981 | else |
| 2982 | DAG.setRoot(Chain); |
| 2983 | } |
| 2984 | if (I.getType() != Type::VoidTy) { |
| 2985 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
| 2986 | MVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2987 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2988 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2989 | setValue(&I, Result); |
| 2990 | } |
| 2991 | } |
| 2992 | |
| 2993 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 2994 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 2995 | V = V->stripPointerCasts(); |
| 2996 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 2997 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 2998 | "TypeInfo must be a global variable or NULL"); |
| 2999 | return GV; |
| 3000 | } |
| 3001 | |
| 3002 | namespace llvm { |
| 3003 | |
| 3004 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 3005 | /// call, and add them to the specified machine basic block. |
| 3006 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 3007 | MachineBasicBlock *MBB) { |
| 3008 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 3009 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 3010 | assert(CE->getOpcode() == Instruction::BitCast && |
| 3011 | isa<Function>(CE->getOperand(0)) && |
| 3012 | "Personality should be a function"); |
| 3013 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 3014 | |
| 3015 | // Gather all the type infos for this landing pad and pass them along to |
| 3016 | // MachineModuleInfo. |
| 3017 | std::vector<GlobalVariable *> TyInfo; |
| 3018 | unsigned N = I.getNumOperands(); |
| 3019 | |
| 3020 | for (unsigned i = N - 1; i > 2; --i) { |
| 3021 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 3022 | unsigned FilterLength = CI->getZExtValue(); |
| 3023 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 3024 | assert (FirstCatch <= N && "Invalid filter length"); |
| 3025 | |
| 3026 | if (FirstCatch < N) { |
| 3027 | TyInfo.reserve(N - FirstCatch); |
| 3028 | for (unsigned j = FirstCatch; j < N; ++j) |
| 3029 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3030 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3031 | TyInfo.clear(); |
| 3032 | } |
| 3033 | |
| 3034 | if (!FilterLength) { |
| 3035 | // Cleanup. |
| 3036 | MMI->addCleanup(MBB); |
| 3037 | } else { |
| 3038 | // Filter. |
| 3039 | TyInfo.reserve(FilterLength - 1); |
| 3040 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 3041 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3042 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 3043 | TyInfo.clear(); |
| 3044 | } |
| 3045 | |
| 3046 | N = i; |
| 3047 | } |
| 3048 | } |
| 3049 | |
| 3050 | if (N > 3) { |
| 3051 | TyInfo.reserve(N - 3); |
| 3052 | for (unsigned j = 3; j < N; ++j) |
| 3053 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3054 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3055 | } |
| 3056 | } |
| 3057 | |
| 3058 | } |
| 3059 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3060 | /// GetSignificand - Get the significand and build it into a floating-point |
| 3061 | /// number with exponent of 1: |
| 3062 | /// |
| 3063 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 3064 | /// |
| 3065 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3066 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3067 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
| 3068 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3069 | DAG.getConstant(0x007fffff, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3070 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3071 | DAG.getConstant(0x3f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3072 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3073 | } |
| 3074 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3075 | /// GetExponent - Get the exponent: |
| 3076 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3077 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3078 | /// |
| 3079 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3080 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3081 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3082 | DebugLoc dl) { |
| 3083 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3084 | DAG.getConstant(0x7f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3085 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3086 | DAG.getConstant(23, TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3087 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3088 | DAG.getConstant(127, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3089 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3090 | } |
| 3091 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3092 | /// getF32Constant - Get 32-bit floating point constant. |
| 3093 | static SDValue |
| 3094 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
| 3095 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
| 3096 | } |
| 3097 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3098 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3099 | /// visitIntrinsicCall: I is a call instruction |
| 3100 | /// Op is the associated NodeType for I |
| 3101 | const char * |
| 3102 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3103 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3104 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3105 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3106 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3107 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3108 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3109 | getValue(I.getOperand(2)), |
| 3110 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3111 | setValue(&I, L); |
| 3112 | DAG.setRoot(L.getValue(1)); |
| 3113 | return 0; |
| 3114 | } |
| 3115 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3116 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3117 | const char * |
| 3118 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3119 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3120 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3121 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3122 | MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 }; |
| 3123 | SDValue Ops[] = { Op1, Op2 }; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3124 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3125 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3126 | DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3127 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3128 | setValue(&I, Result); |
| 3129 | return 0; |
| 3130 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3131 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3132 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3133 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3134 | void |
| 3135 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3136 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3137 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3138 | |
| 3139 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3140 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3141 | SDValue Op = getValue(I.getOperand(1)); |
| 3142 | |
| 3143 | // Put the exponent in the right bit position for later addition to the |
| 3144 | // final result: |
| 3145 | // |
| 3146 | // #define LOG2OFe 1.4426950f |
| 3147 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3148 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3149 | getF32Constant(DAG, 0x3fb8aa3b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3150 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3151 | |
| 3152 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3153 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3154 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3155 | |
| 3156 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3157 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3158 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3159 | |
| 3160 | if (LimitFloatPrecision <= 6) { |
| 3161 | // For floating-point precision of 6: |
| 3162 | // |
| 3163 | // TwoToFractionalPartOfX = |
| 3164 | // 0.997535578f + |
| 3165 | // (0.735607626f + 0.252464424f * x) * x; |
| 3166 | // |
| 3167 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3168 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3169 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3170 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3171 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3172 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3173 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3174 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3175 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3176 | |
| 3177 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3178 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3179 | TwoToFracPartOfX, IntegerPartOfX); |
| 3180 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3181 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3182 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3183 | // For floating-point precision of 12: |
| 3184 | // |
| 3185 | // TwoToFractionalPartOfX = |
| 3186 | // 0.999892986f + |
| 3187 | // (0.696457318f + |
| 3188 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3189 | // |
| 3190 | // 0.000107046256 error, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3191 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3192 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3193 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3194 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3195 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3196 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3197 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3198 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3199 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3200 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3201 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3202 | |
| 3203 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3204 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3205 | TwoToFracPartOfX, IntegerPartOfX); |
| 3206 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3207 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3208 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3209 | // For floating-point precision of 18: |
| 3210 | // |
| 3211 | // TwoToFractionalPartOfX = |
| 3212 | // 0.999999982f + |
| 3213 | // (0.693148872f + |
| 3214 | // (0.240227044f + |
| 3215 | // (0.554906021e-1f + |
| 3216 | // (0.961591928e-2f + |
| 3217 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3218 | // |
| 3219 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3220 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3221 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3222 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3223 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3224 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3225 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3226 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3227 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3228 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3229 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3230 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3231 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3232 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3233 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3234 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3235 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3236 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3237 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3238 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3239 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3240 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3241 | |
| 3242 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3243 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3244 | TwoToFracPartOfX, IntegerPartOfX); |
| 3245 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3246 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3247 | } |
| 3248 | } else { |
| 3249 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3250 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3251 | getValue(I.getOperand(1)).getValueType(), |
| 3252 | getValue(I.getOperand(1))); |
| 3253 | } |
| 3254 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3255 | setValue(&I, result); |
| 3256 | } |
| 3257 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3258 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3259 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3260 | void |
| 3261 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3262 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3263 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3264 | |
| 3265 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3266 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3267 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3268 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3269 | |
| 3270 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3271 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3272 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3273 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3274 | |
| 3275 | // Get the significand and build it into a floating-point number with |
| 3276 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3277 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3278 | |
| 3279 | if (LimitFloatPrecision <= 6) { |
| 3280 | // For floating-point precision of 6: |
| 3281 | // |
| 3282 | // LogofMantissa = |
| 3283 | // -1.1609546f + |
| 3284 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3285 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3286 | // error 0.0034276066, which is better than 8 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3287 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3288 | getF32Constant(DAG, 0xbe74c456)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3289 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3290 | getF32Constant(DAG, 0x3fb3a2b1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3291 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3292 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3293 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3294 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3295 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3296 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3297 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3298 | // For floating-point precision of 12: |
| 3299 | // |
| 3300 | // LogOfMantissa = |
| 3301 | // -1.7417939f + |
| 3302 | // (2.8212026f + |
| 3303 | // (-1.4699568f + |
| 3304 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3305 | // |
| 3306 | // error 0.000061011436, which is 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3307 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3308 | getF32Constant(DAG, 0xbd67b6d6)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3309 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3310 | getF32Constant(DAG, 0x3ee4f4b8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3311 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3312 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3313 | getF32Constant(DAG, 0x3fbc278b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3314 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3315 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3316 | getF32Constant(DAG, 0x40348e95)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3317 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3318 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3319 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3320 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3321 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3322 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3323 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3324 | // For floating-point precision of 18: |
| 3325 | // |
| 3326 | // LogOfMantissa = |
| 3327 | // -2.1072184f + |
| 3328 | // (4.2372794f + |
| 3329 | // (-3.7029485f + |
| 3330 | // (2.2781945f + |
| 3331 | // (-0.87823314f + |
| 3332 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3333 | // |
| 3334 | // error 0.0000023660568, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3335 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3336 | getF32Constant(DAG, 0xbc91e5ac)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3337 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3338 | getF32Constant(DAG, 0x3e4350aa)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3339 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3340 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3341 | getF32Constant(DAG, 0x3f60d3e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3342 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3343 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3344 | getF32Constant(DAG, 0x4011cdf0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3345 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3346 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3347 | getF32Constant(DAG, 0x406cfd1c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3348 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3349 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3350 | getF32Constant(DAG, 0x408797cb)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3351 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3352 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3353 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3354 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3355 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3356 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3357 | } |
| 3358 | } else { |
| 3359 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3360 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3361 | getValue(I.getOperand(1)).getValueType(), |
| 3362 | getValue(I.getOperand(1))); |
| 3363 | } |
| 3364 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3365 | setValue(&I, result); |
| 3366 | } |
| 3367 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3368 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3369 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3370 | void |
| 3371 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3372 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3373 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3374 | |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3375 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3376 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3377 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3378 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3379 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3380 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3381 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3382 | |
| 3383 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3384 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3385 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3386 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3387 | // Different possible minimax approximations of significand in |
| 3388 | // floating-point for various degrees of accuracy over [1,2]. |
| 3389 | if (LimitFloatPrecision <= 6) { |
| 3390 | // For floating-point precision of 6: |
| 3391 | // |
| 3392 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3393 | // |
| 3394 | // error 0.0049451742, which is more than 7 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3395 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3396 | getF32Constant(DAG, 0xbeb08fe0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3397 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3398 | getF32Constant(DAG, 0x40019463)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3399 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3400 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3401 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3402 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3403 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3404 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3405 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3406 | // For floating-point precision of 12: |
| 3407 | // |
| 3408 | // Log2ofMantissa = |
| 3409 | // -2.51285454f + |
| 3410 | // (4.07009056f + |
| 3411 | // (-2.12067489f + |
| 3412 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3413 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3414 | // error 0.0000876136000, which is better than 13 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3415 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3416 | getF32Constant(DAG, 0xbda7262e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3417 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3418 | getF32Constant(DAG, 0x3f25280b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3419 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3420 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3421 | getF32Constant(DAG, 0x4007b923)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3422 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3423 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3424 | getF32Constant(DAG, 0x40823e2f)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3425 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3426 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3427 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3428 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3429 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3430 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3431 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3432 | // For floating-point precision of 18: |
| 3433 | // |
| 3434 | // Log2ofMantissa = |
| 3435 | // -3.0400495f + |
| 3436 | // (6.1129976f + |
| 3437 | // (-5.3420409f + |
| 3438 | // (3.2865683f + |
| 3439 | // (-1.2669343f + |
| 3440 | // (0.27515199f - |
| 3441 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3442 | // |
| 3443 | // error 0.0000018516, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3444 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3445 | getF32Constant(DAG, 0xbcd2769e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3446 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3447 | getF32Constant(DAG, 0x3e8ce0b9)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3448 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3449 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3450 | getF32Constant(DAG, 0x3fa22ae7)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3451 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3452 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3453 | getF32Constant(DAG, 0x40525723)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3454 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3455 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3456 | getF32Constant(DAG, 0x40aaf200)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3457 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3458 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3459 | getF32Constant(DAG, 0x40c39dad)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3460 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3461 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3462 | getF32Constant(DAG, 0x4042902c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3463 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3464 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3465 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3466 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3467 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3468 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3469 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3470 | getValue(I.getOperand(1)).getValueType(), |
| 3471 | getValue(I.getOperand(1))); |
| 3472 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3473 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3474 | setValue(&I, result); |
| 3475 | } |
| 3476 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3477 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3478 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3479 | void |
| 3480 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3481 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3482 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3483 | |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3484 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3485 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3486 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3487 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3488 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3489 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3490 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3491 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3492 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3493 | |
| 3494 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3495 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3496 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3497 | |
| 3498 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3499 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3500 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3501 | // Log10ofMantissa = |
| 3502 | // -0.50419619f + |
| 3503 | // (0.60948995f - 0.10380950f * x) * x; |
| 3504 | // |
| 3505 | // error 0.0014886165, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3506 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3507 | getF32Constant(DAG, 0xbdd49a13)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3508 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3509 | getF32Constant(DAG, 0x3f1c0789)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3510 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3511 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3512 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3513 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3514 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3515 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3516 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3517 | // For floating-point precision of 12: |
| 3518 | // |
| 3519 | // Log10ofMantissa = |
| 3520 | // -0.64831180f + |
| 3521 | // (0.91751397f + |
| 3522 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3523 | // |
| 3524 | // error 0.00019228036, which is better than 12 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3525 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3526 | getF32Constant(DAG, 0x3d431f31)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3527 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3528 | getF32Constant(DAG, 0x3ea21fb2)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3529 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3530 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3531 | getF32Constant(DAG, 0x3f6ae232)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3532 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3533 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3534 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3535 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3536 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3537 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3538 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3539 | // For floating-point precision of 18: |
| 3540 | // |
| 3541 | // Log10ofMantissa = |
| 3542 | // -0.84299375f + |
| 3543 | // (1.5327582f + |
| 3544 | // (-1.0688956f + |
| 3545 | // (0.49102474f + |
| 3546 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3547 | // |
| 3548 | // error 0.0000037995730, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3549 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3550 | getF32Constant(DAG, 0x3c5d51ce)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3551 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3552 | getF32Constant(DAG, 0x3e00685a)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3553 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3554 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3555 | getF32Constant(DAG, 0x3efb6798)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3556 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3557 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3558 | getF32Constant(DAG, 0x3f88d192)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3559 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3560 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3561 | getF32Constant(DAG, 0x3fc4316c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3562 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3563 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3564 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3565 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3566 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3567 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3568 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3569 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3570 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3571 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3572 | getValue(I.getOperand(1)).getValueType(), |
| 3573 | getValue(I.getOperand(1))); |
| 3574 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3575 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3576 | setValue(&I, result); |
| 3577 | } |
| 3578 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3579 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3580 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3581 | void |
| 3582 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3583 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3584 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3585 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3586 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3587 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3588 | SDValue Op = getValue(I.getOperand(1)); |
| 3589 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3590 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3591 | |
| 3592 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3593 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3594 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3595 | |
| 3596 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3597 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3598 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3599 | |
| 3600 | if (LimitFloatPrecision <= 6) { |
| 3601 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3602 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3603 | // TwoToFractionalPartOfX = |
| 3604 | // 0.997535578f + |
| 3605 | // (0.735607626f + 0.252464424f * x) * x; |
| 3606 | // |
| 3607 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3608 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3609 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3610 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3611 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3612 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3613 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3614 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3615 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3616 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3617 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3618 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3619 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3620 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3621 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3622 | // For floating-point precision of 12: |
| 3623 | // |
| 3624 | // TwoToFractionalPartOfX = |
| 3625 | // 0.999892986f + |
| 3626 | // (0.696457318f + |
| 3627 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3628 | // |
| 3629 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3630 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3631 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3632 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3633 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3634 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3635 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3636 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3637 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3638 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3639 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3640 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3641 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3642 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3643 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3644 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3645 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3646 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3647 | // For floating-point precision of 18: |
| 3648 | // |
| 3649 | // TwoToFractionalPartOfX = |
| 3650 | // 0.999999982f + |
| 3651 | // (0.693148872f + |
| 3652 | // (0.240227044f + |
| 3653 | // (0.554906021e-1f + |
| 3654 | // (0.961591928e-2f + |
| 3655 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3656 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3657 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3658 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3659 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3660 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3661 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3662 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3663 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3664 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3665 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3666 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3667 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3668 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3669 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3670 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3671 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3672 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3673 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3674 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3675 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3676 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3677 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3678 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3679 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3680 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3681 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3682 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3683 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3684 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3685 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3686 | getValue(I.getOperand(1)).getValueType(), |
| 3687 | getValue(I.getOperand(1))); |
| 3688 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3689 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3690 | setValue(&I, result); |
| 3691 | } |
| 3692 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3693 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3694 | /// limited-precision mode with x == 10.0f. |
| 3695 | void |
| 3696 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3697 | SDValue result; |
| 3698 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3699 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3700 | bool IsExp10 = false; |
| 3701 | |
| 3702 | if (getValue(Val).getValueType() == MVT::f32 && |
Bill Wendling | 277fc24 | 2008-09-10 00:24:59 +0000 | [diff] [blame] | 3703 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3704 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3705 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3706 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3707 | APFloat Ten(10.0f); |
| 3708 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3709 | } |
| 3710 | } |
| 3711 | } |
| 3712 | |
| 3713 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3714 | SDValue Op = getValue(I.getOperand(2)); |
| 3715 | |
| 3716 | // Put the exponent in the right bit position for later addition to the |
| 3717 | // final result: |
| 3718 | // |
| 3719 | // #define LOG2OF10 3.3219281f |
| 3720 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3721 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3722 | getF32Constant(DAG, 0x40549a78)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3723 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3724 | |
| 3725 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3726 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3727 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3728 | |
| 3729 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3730 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3731 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3732 | |
| 3733 | if (LimitFloatPrecision <= 6) { |
| 3734 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3735 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3736 | // twoToFractionalPartOfX = |
| 3737 | // 0.997535578f + |
| 3738 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3739 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3740 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3741 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3742 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3743 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3744 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3745 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3746 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3747 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3748 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3749 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3750 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3751 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3752 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
| 3753 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3754 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3755 | // For floating-point precision of 12: |
| 3756 | // |
| 3757 | // TwoToFractionalPartOfX = |
| 3758 | // 0.999892986f + |
| 3759 | // (0.696457318f + |
| 3760 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3761 | // |
| 3762 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3763 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3764 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3765 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3766 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3767 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3768 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3769 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3770 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3771 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3772 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3773 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3774 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3775 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3776 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3777 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3778 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3779 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3780 | // For floating-point precision of 18: |
| 3781 | // |
| 3782 | // TwoToFractionalPartOfX = |
| 3783 | // 0.999999982f + |
| 3784 | // (0.693148872f + |
| 3785 | // (0.240227044f + |
| 3786 | // (0.554906021e-1f + |
| 3787 | // (0.961591928e-2f + |
| 3788 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3789 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3790 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3791 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3792 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3793 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3794 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3795 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3796 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3797 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3798 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3799 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3800 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3801 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3802 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3803 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3804 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3805 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3806 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3807 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3808 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3809 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3810 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3811 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3812 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3813 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3814 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3815 | } |
| 3816 | } else { |
| 3817 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3818 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3819 | getValue(I.getOperand(1)).getValueType(), |
| 3820 | getValue(I.getOperand(1)), |
| 3821 | getValue(I.getOperand(2))); |
| 3822 | } |
| 3823 | |
| 3824 | setValue(&I, result); |
| 3825 | } |
| 3826 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3827 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3828 | /// we want to emit this as a call to a named external function, return the name |
| 3829 | /// otherwise lower it and return null. |
| 3830 | const char * |
| 3831 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3832 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3833 | switch (Intrinsic) { |
| 3834 | default: |
| 3835 | // By default, turn this into a target intrinsic node. |
| 3836 | visitTargetIntrinsic(I, Intrinsic); |
| 3837 | return 0; |
| 3838 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3839 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3840 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3841 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3842 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3843 | getValue(I.getOperand(1)))); |
| 3844 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3845 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3846 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3847 | getValue(I.getOperand(1)))); |
| 3848 | return 0; |
| 3849 | case Intrinsic::setjmp: |
| 3850 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3851 | break; |
| 3852 | case Intrinsic::longjmp: |
| 3853 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3854 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3855 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3856 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3857 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3858 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3859 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3860 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3861 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3862 | return 0; |
| 3863 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3864 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3865 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3866 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3867 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3868 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3869 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3870 | I.getOperand(1), 0)); |
| 3871 | return 0; |
| 3872 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3873 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3874 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3875 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3876 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3877 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3878 | |
| 3879 | // If the source and destination are known to not be aliases, we can |
| 3880 | // lower memmove as memcpy. |
| 3881 | uint64_t Size = -1ULL; |
| 3882 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3883 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3884 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3885 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3886 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3887 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3888 | return 0; |
| 3889 | } |
| 3890 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3891 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3892 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3893 | return 0; |
| 3894 | } |
| 3895 | case Intrinsic::dbg_stoppoint: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3896 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3897 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3898 | if (DW && DW->ValidDebugInfo(SPI.getContext())) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3899 | MachineFunction &MF = DAG.getMachineFunction(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3900 | DAG.setRoot(DAG.getDbgStopPoint(getRoot(), |
| 3901 | SPI.getLine(), |
| 3902 | SPI.getColumn(), |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3903 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3904 | DICompileUnit CU(cast<GlobalVariable>(SPI.getContext())); |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3905 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(), |
| 3906 | CU.getFilename()); |
| 3907 | unsigned idx = MF.getOrCreateDebugLocID(SrcFile, |
| 3908 | SPI.getLine(), SPI.getColumn()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3909 | setCurDebugLoc(DebugLoc::get(idx)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3910 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3911 | return 0; |
| 3912 | } |
| 3913 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3914 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3915 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3916 | if (DW && DW->ValidDebugInfo(RSI.getContext())) { |
| 3917 | unsigned LabelID = |
| 3918 | DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext())); |
Bill Wendling | dfdacee | 2009-02-19 21:12:54 +0000 | [diff] [blame] | 3919 | if (Fast) |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 3920 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3921 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3922 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3923 | |
| 3924 | return 0; |
| 3925 | } |
| 3926 | case Intrinsic::dbg_region_end: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3927 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3928 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3929 | if (DW && DW->ValidDebugInfo(REI.getContext())) { |
| 3930 | unsigned LabelID = |
| 3931 | DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext())); |
Bill Wendling | dfdacee | 2009-02-19 21:12:54 +0000 | [diff] [blame] | 3932 | if (Fast) |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 3933 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3934 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3935 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3936 | |
| 3937 | return 0; |
| 3938 | } |
| 3939 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3940 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 3941 | if (!DW) return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3942 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
| 3943 | Value *SP = FSI.getSubprogram(); |
Devang Patel | cf3a448 | 2009-01-15 23:41:32 +0000 | [diff] [blame] | 3944 | if (SP && DW->ValidDebugInfo(SP)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3945 | // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is |
| 3946 | // what (most?) gdb expects. |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3947 | MachineFunction &MF = DAG.getMachineFunction(); |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3948 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 3949 | DICompileUnit CompileUnit = Subprogram.getCompileUnit(); |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3950 | unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(), |
| 3951 | CompileUnit.getFilename()); |
Bill Wendling | 9bc96a5 | 2009-02-03 00:55:04 +0000 | [diff] [blame] | 3952 | |
Devang Patel | 20dd046 | 2008-11-06 00:30:09 +0000 | [diff] [blame] | 3953 | // Record the source line but does not create a label for the normal |
| 3954 | // function start. It will be emitted at asm emission time. However, |
| 3955 | // create a label if this is a beginning of inlined function. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3956 | unsigned Line = Subprogram.getLineNumber(); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3957 | |
Bill Wendling | 5aa4977 | 2009-02-24 02:35:30 +0000 | [diff] [blame] | 3958 | if (Fast) { |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 3959 | unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile); |
| 3960 | if (DW->getRecordSourceLineCount() != 1) |
| 3961 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3962 | getRoot(), LabelID)); |
| 3963 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3964 | |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3965 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3966 | } |
| 3967 | |
| 3968 | return 0; |
| 3969 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3970 | case Intrinsic::dbg_declare: { |
Bill Wendling | 5aa4977 | 2009-02-24 02:35:30 +0000 | [diff] [blame] | 3971 | if (Fast) { |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 3972 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 3973 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 3974 | Value *Variable = DI.getVariable(); |
| 3975 | if (DW && DW->ValidDebugInfo(Variable)) |
| 3976 | DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(), |
| 3977 | getValue(DI.getAddress()), getValue(Variable))); |
| 3978 | } else { |
| 3979 | // FIXME: Do something sensible here when we support debug declare. |
| 3980 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3981 | return 0; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3982 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3983 | case Intrinsic::eh_exception: { |
| 3984 | if (!CurMBB->isLandingPad()) { |
| 3985 | // FIXME: Mark exception register as live in. Hack for PR1508. |
| 3986 | unsigned Reg = TLI.getExceptionAddressRegister(); |
| 3987 | if (Reg) CurMBB->addLiveIn(Reg); |
| 3988 | } |
| 3989 | // Insert the EXCEPTIONADDR instruction. |
| 3990 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
| 3991 | SDValue Ops[1]; |
| 3992 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3993 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3994 | setValue(&I, Op); |
| 3995 | DAG.setRoot(Op.getValue(1)); |
| 3996 | return 0; |
| 3997 | } |
| 3998 | |
| 3999 | case Intrinsic::eh_selector_i32: |
| 4000 | case Intrinsic::eh_selector_i64: { |
| 4001 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4002 | MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? |
| 4003 | MVT::i32 : MVT::i64); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4004 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4005 | if (MMI) { |
| 4006 | if (CurMBB->isLandingPad()) |
| 4007 | AddCatchInfo(I, MMI, CurMBB); |
| 4008 | else { |
| 4009 | #ifndef NDEBUG |
| 4010 | FuncInfo.CatchInfoLost.insert(&I); |
| 4011 | #endif |
| 4012 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 4013 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 4014 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4015 | } |
| 4016 | |
| 4017 | // Insert the EHSELECTION instruction. |
| 4018 | SDVTList VTs = DAG.getVTList(VT, MVT::Other); |
| 4019 | SDValue Ops[2]; |
| 4020 | Ops[0] = getValue(I.getOperand(1)); |
| 4021 | Ops[1] = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4022 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4023 | setValue(&I, Op); |
| 4024 | DAG.setRoot(Op.getValue(1)); |
| 4025 | } else { |
| 4026 | setValue(&I, DAG.getConstant(0, VT)); |
| 4027 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4028 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4029 | return 0; |
| 4030 | } |
| 4031 | |
| 4032 | case Intrinsic::eh_typeid_for_i32: |
| 4033 | case Intrinsic::eh_typeid_for_i64: { |
| 4034 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4035 | MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
| 4036 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4037 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4038 | if (MMI) { |
| 4039 | // Find the type id for the given typeinfo. |
| 4040 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4041 | |
| 4042 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4043 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4044 | } else { |
| 4045 | // Return something different to eh_selector. |
| 4046 | setValue(&I, DAG.getConstant(1, VT)); |
| 4047 | } |
| 4048 | |
| 4049 | return 0; |
| 4050 | } |
| 4051 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4052 | case Intrinsic::eh_return_i32: |
| 4053 | case Intrinsic::eh_return_i64: |
| 4054 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4055 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4056 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4057 | MVT::Other, |
| 4058 | getControlRoot(), |
| 4059 | getValue(I.getOperand(1)), |
| 4060 | getValue(I.getOperand(2)))); |
| 4061 | } else { |
| 4062 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4063 | } |
| 4064 | |
| 4065 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4066 | case Intrinsic::eh_unwind_init: |
| 4067 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4068 | MMI->setCallsUnwindInit(true); |
| 4069 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4070 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4071 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4072 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4073 | case Intrinsic::eh_dwarf_cfa: { |
| 4074 | MVT VT = getValue(I.getOperand(1)).getValueType(); |
| 4075 | SDValue CfaArg; |
| 4076 | if (VT.bitsGT(TLI.getPointerTy())) |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4077 | CfaArg = DAG.getNode(ISD::TRUNCATE, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4078 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
| 4079 | else |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4080 | CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4081 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4082 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4083 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4084 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4085 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4086 | TLI.getPointerTy()), |
| 4087 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4088 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4089 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4090 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4091 | TLI.getPointerTy(), |
| 4092 | DAG.getConstant(0, |
| 4093 | TLI.getPointerTy())), |
| 4094 | Offset)); |
| 4095 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4096 | } |
| 4097 | |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4098 | case Intrinsic::convertff: |
| 4099 | case Intrinsic::convertfsi: |
| 4100 | case Intrinsic::convertfui: |
| 4101 | case Intrinsic::convertsif: |
| 4102 | case Intrinsic::convertuif: |
| 4103 | case Intrinsic::convertss: |
| 4104 | case Intrinsic::convertsu: |
| 4105 | case Intrinsic::convertus: |
| 4106 | case Intrinsic::convertuu: { |
| 4107 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4108 | switch (Intrinsic) { |
| 4109 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4110 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4111 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4112 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4113 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4114 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4115 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4116 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4117 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4118 | } |
| 4119 | MVT DestVT = TLI.getValueType(I.getType()); |
| 4120 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4121 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4122 | DAG.getValueType(DestVT), |
| 4123 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4124 | getValue(I.getOperand(2)), |
| 4125 | getValue(I.getOperand(3)), |
| 4126 | Code)); |
| 4127 | return 0; |
| 4128 | } |
| 4129 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4130 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4131 | setValue(&I, DAG.getNode(ISD::FSQRT, 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::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4136 | setValue(&I, DAG.getNode(ISD::FPOWI, 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 | getValue(I.getOperand(2)))); |
| 4140 | return 0; |
| 4141 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4142 | setValue(&I, DAG.getNode(ISD::FSIN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4143 | getValue(I.getOperand(1)).getValueType(), |
| 4144 | getValue(I.getOperand(1)))); |
| 4145 | return 0; |
| 4146 | case Intrinsic::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4147 | setValue(&I, DAG.getNode(ISD::FCOS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4148 | getValue(I.getOperand(1)).getValueType(), |
| 4149 | getValue(I.getOperand(1)))); |
| 4150 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4151 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4152 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4153 | return 0; |
| 4154 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4155 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4156 | return 0; |
| 4157 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4158 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4159 | return 0; |
| 4160 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4161 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4162 | return 0; |
| 4163 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4164 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4165 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4166 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4167 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4168 | return 0; |
| 4169 | case Intrinsic::pcmarker: { |
| 4170 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4171 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4172 | return 0; |
| 4173 | } |
| 4174 | case Intrinsic::readcyclecounter: { |
| 4175 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4176 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4177 | DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2, |
| 4178 | &Op, 1); |
| 4179 | setValue(&I, Tmp); |
| 4180 | DAG.setRoot(Tmp.getValue(1)); |
| 4181 | return 0; |
| 4182 | } |
| 4183 | case Intrinsic::part_select: { |
| 4184 | // Currently not implemented: just abort |
| 4185 | assert(0 && "part_select intrinsic not implemented"); |
| 4186 | abort(); |
| 4187 | } |
| 4188 | case Intrinsic::part_set: { |
| 4189 | // Currently not implemented: just abort |
| 4190 | assert(0 && "part_set intrinsic not implemented"); |
| 4191 | abort(); |
| 4192 | } |
| 4193 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4194 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4195 | getValue(I.getOperand(1)).getValueType(), |
| 4196 | getValue(I.getOperand(1)))); |
| 4197 | return 0; |
| 4198 | case Intrinsic::cttz: { |
| 4199 | SDValue Arg = getValue(I.getOperand(1)); |
| 4200 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4201 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4202 | setValue(&I, result); |
| 4203 | return 0; |
| 4204 | } |
| 4205 | case Intrinsic::ctlz: { |
| 4206 | SDValue Arg = getValue(I.getOperand(1)); |
| 4207 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4208 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4209 | setValue(&I, result); |
| 4210 | return 0; |
| 4211 | } |
| 4212 | case Intrinsic::ctpop: { |
| 4213 | SDValue Arg = getValue(I.getOperand(1)); |
| 4214 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4215 | SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4216 | setValue(&I, result); |
| 4217 | return 0; |
| 4218 | } |
| 4219 | case Intrinsic::stacksave: { |
| 4220 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4221 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4222 | DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1); |
| 4223 | setValue(&I, Tmp); |
| 4224 | DAG.setRoot(Tmp.getValue(1)); |
| 4225 | return 0; |
| 4226 | } |
| 4227 | case Intrinsic::stackrestore: { |
| 4228 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4229 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4230 | return 0; |
| 4231 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4232 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4233 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4234 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4235 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 4236 | MVT PtrTy = TLI.getPointerTy(); |
| 4237 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4238 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4239 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4240 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4241 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4242 | MFI->setStackProtectorIndex(FI); |
| 4243 | |
| 4244 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4245 | |
| 4246 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4247 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4248 | PseudoSourceValue::getFixedStack(FI), |
| 4249 | 0, true); |
| 4250 | setValue(&I, Result); |
| 4251 | DAG.setRoot(Result); |
| 4252 | return 0; |
| 4253 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4254 | case Intrinsic::var_annotation: |
| 4255 | // Discard annotate attributes |
| 4256 | return 0; |
| 4257 | |
| 4258 | case Intrinsic::init_trampoline: { |
| 4259 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4260 | |
| 4261 | SDValue Ops[6]; |
| 4262 | Ops[0] = getRoot(); |
| 4263 | Ops[1] = getValue(I.getOperand(1)); |
| 4264 | Ops[2] = getValue(I.getOperand(2)); |
| 4265 | Ops[3] = getValue(I.getOperand(3)); |
| 4266 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4267 | Ops[5] = DAG.getSrcValue(F); |
| 4268 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4269 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4270 | DAG.getNodeValueTypes(TLI.getPointerTy(), |
| 4271 | MVT::Other), 2, |
| 4272 | Ops, 6); |
| 4273 | |
| 4274 | setValue(&I, Tmp); |
| 4275 | DAG.setRoot(Tmp.getValue(1)); |
| 4276 | return 0; |
| 4277 | } |
| 4278 | |
| 4279 | case Intrinsic::gcroot: |
| 4280 | if (GFI) { |
| 4281 | Value *Alloca = I.getOperand(1); |
| 4282 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4283 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4284 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4285 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4286 | } |
| 4287 | return 0; |
| 4288 | |
| 4289 | case Intrinsic::gcread: |
| 4290 | case Intrinsic::gcwrite: |
| 4291 | assert(0 && "GC failed to lower gcread/gcwrite intrinsics!"); |
| 4292 | return 0; |
| 4293 | |
| 4294 | case Intrinsic::flt_rounds: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4295 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4296 | return 0; |
| 4297 | } |
| 4298 | |
| 4299 | case Intrinsic::trap: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4300 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4301 | return 0; |
| 4302 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4303 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4304 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4305 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4306 | case Intrinsic::sadd_with_overflow: |
| 4307 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4308 | case Intrinsic::usub_with_overflow: |
| 4309 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4310 | case Intrinsic::ssub_with_overflow: |
| 4311 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4312 | case Intrinsic::umul_with_overflow: |
| 4313 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4314 | case Intrinsic::smul_with_overflow: |
| 4315 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4316 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4317 | case Intrinsic::prefetch: { |
| 4318 | SDValue Ops[4]; |
| 4319 | Ops[0] = getRoot(); |
| 4320 | Ops[1] = getValue(I.getOperand(1)); |
| 4321 | Ops[2] = getValue(I.getOperand(2)); |
| 4322 | Ops[3] = getValue(I.getOperand(3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4323 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4324 | return 0; |
| 4325 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4326 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4327 | case Intrinsic::memory_barrier: { |
| 4328 | SDValue Ops[6]; |
| 4329 | Ops[0] = getRoot(); |
| 4330 | for (int x = 1; x < 6; ++x) |
| 4331 | Ops[x] = getValue(I.getOperand(x)); |
| 4332 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4333 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4334 | return 0; |
| 4335 | } |
| 4336 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4337 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4338 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4339 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4340 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4341 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4342 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4343 | getValue(I.getOperand(2)), |
| 4344 | getValue(I.getOperand(3)), |
| 4345 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4346 | setValue(&I, L); |
| 4347 | DAG.setRoot(L.getValue(1)); |
| 4348 | return 0; |
| 4349 | } |
| 4350 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4351 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4352 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4353 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4354 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4355 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4356 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4357 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4358 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4359 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4360 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4361 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4362 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4363 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4364 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4365 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4366 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4367 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4368 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4369 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4370 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4371 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4372 | } |
| 4373 | } |
| 4374 | |
| 4375 | |
| 4376 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
| 4377 | bool IsTailCall, |
| 4378 | MachineBasicBlock *LandingPad) { |
| 4379 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4380 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4381 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4382 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4383 | |
| 4384 | TargetLowering::ArgListTy Args; |
| 4385 | TargetLowering::ArgListEntry Entry; |
| 4386 | Args.reserve(CS.arg_size()); |
| 4387 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 4388 | i != e; ++i) { |
| 4389 | SDValue ArgNode = getValue(*i); |
| 4390 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4391 | |
| 4392 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4393 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4394 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4395 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4396 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4397 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4398 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4399 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4400 | Args.push_back(Entry); |
| 4401 | } |
| 4402 | |
| 4403 | if (LandingPad && MMI) { |
| 4404 | // Insert a label before the invoke call to mark the try range. This can be |
| 4405 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4406 | BeginLabel = MMI->NextLabelID(); |
| 4407 | // Both PendingLoads and PendingExports must be flushed here; |
| 4408 | // this call might not return. |
| 4409 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4410 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4411 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4412 | } |
| 4413 | |
| 4414 | std::pair<SDValue,SDValue> Result = |
| 4415 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4416 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4417 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
| 4418 | CS.paramHasAttr(0, Attribute::InReg), |
| 4419 | CS.getCallingConv(), |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 4420 | IsTailCall && PerformTailCallOpt, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4421 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4422 | if (CS.getType() != Type::VoidTy) |
| 4423 | setValue(CS.getInstruction(), Result.first); |
| 4424 | DAG.setRoot(Result.second); |
| 4425 | |
| 4426 | if (LandingPad && MMI) { |
| 4427 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4428 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4429 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4430 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4431 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4432 | |
| 4433 | // Inform MachineModuleInfo of range. |
| 4434 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4435 | } |
| 4436 | } |
| 4437 | |
| 4438 | |
| 4439 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4440 | const char *RenameFn = 0; |
| 4441 | if (Function *F = I.getCalledFunction()) { |
| 4442 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4443 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4444 | if (II) { |
| 4445 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4446 | RenameFn = visitIntrinsicCall(I, IID); |
| 4447 | if (!RenameFn) |
| 4448 | return; |
| 4449 | } |
| 4450 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4451 | if (unsigned IID = F->getIntrinsicID()) { |
| 4452 | RenameFn = visitIntrinsicCall(I, IID); |
| 4453 | if (!RenameFn) |
| 4454 | return; |
| 4455 | } |
| 4456 | } |
| 4457 | |
| 4458 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4459 | // can't be a library call. |
| 4460 | unsigned NameLen = F->getNameLen(); |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 4461 | if (!F->hasLocalLinkage() && NameLen) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4462 | const char *NameStr = F->getNameStart(); |
| 4463 | if (NameStr[0] == 'c' && |
| 4464 | ((NameLen == 8 && !strcmp(NameStr, "copysign")) || |
| 4465 | (NameLen == 9 && !strcmp(NameStr, "copysignf")))) { |
| 4466 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4467 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4468 | I.getType() == I.getOperand(1)->getType() && |
| 4469 | I.getType() == I.getOperand(2)->getType()) { |
| 4470 | SDValue LHS = getValue(I.getOperand(1)); |
| 4471 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4472 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4473 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4474 | return; |
| 4475 | } |
| 4476 | } else if (NameStr[0] == 'f' && |
| 4477 | ((NameLen == 4 && !strcmp(NameStr, "fabs")) || |
| 4478 | (NameLen == 5 && !strcmp(NameStr, "fabsf")) || |
| 4479 | (NameLen == 5 && !strcmp(NameStr, "fabsl")))) { |
| 4480 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4481 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4482 | I.getType() == I.getOperand(1)->getType()) { |
| 4483 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4484 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4485 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4486 | return; |
| 4487 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4488 | } else if (NameStr[0] == 's' && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4489 | ((NameLen == 3 && !strcmp(NameStr, "sin")) || |
| 4490 | (NameLen == 4 && !strcmp(NameStr, "sinf")) || |
| 4491 | (NameLen == 4 && !strcmp(NameStr, "sinl")))) { |
| 4492 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4493 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4494 | I.getType() == I.getOperand(1)->getType()) { |
| 4495 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4496 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4497 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4498 | return; |
| 4499 | } |
| 4500 | } else if (NameStr[0] == 'c' && |
| 4501 | ((NameLen == 3 && !strcmp(NameStr, "cos")) || |
| 4502 | (NameLen == 4 && !strcmp(NameStr, "cosf")) || |
| 4503 | (NameLen == 4 && !strcmp(NameStr, "cosl")))) { |
| 4504 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4505 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4506 | I.getType() == I.getOperand(1)->getType()) { |
| 4507 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4508 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4509 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4510 | return; |
| 4511 | } |
| 4512 | } |
| 4513 | } |
| 4514 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4515 | visitInlineAsm(&I); |
| 4516 | return; |
| 4517 | } |
| 4518 | |
| 4519 | SDValue Callee; |
| 4520 | if (!RenameFn) |
| 4521 | Callee = getValue(I.getOperand(0)); |
| 4522 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4523 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4524 | |
| 4525 | LowerCallTo(&I, Callee, I.isTailCall()); |
| 4526 | } |
| 4527 | |
| 4528 | |
| 4529 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4530 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4531 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4532 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4533 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4534 | SDValue &Chain, |
| 4535 | SDValue *Flag) const { |
| 4536 | // Assemble the legal parts into the final values. |
| 4537 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4538 | SmallVector<SDValue, 8> Parts; |
| 4539 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4540 | // Copy the legal parts from the registers. |
| 4541 | MVT ValueVT = ValueVTs[Value]; |
| 4542 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 4543 | MVT RegisterVT = RegVTs[Value]; |
| 4544 | |
| 4545 | Parts.resize(NumRegs); |
| 4546 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4547 | SDValue P; |
| 4548 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4549 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4550 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4551 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4552 | *Flag = P.getValue(2); |
| 4553 | } |
| 4554 | Chain = P.getValue(1); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4555 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4556 | // If the source register was virtual and if we know something about it, |
| 4557 | // add an assert node. |
| 4558 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4559 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4560 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4561 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4562 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4563 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4564 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4565 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4566 | unsigned NumSignBits = LOI.NumSignBits; |
| 4567 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4568 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4569 | // FIXME: We capture more information than the dag can represent. For |
| 4570 | // now, just use the tightest assertzext/assertsext possible. |
| 4571 | bool isSExt = true; |
| 4572 | MVT FromVT(MVT::Other); |
| 4573 | if (NumSignBits == RegSize) |
| 4574 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
| 4575 | else if (NumZeroBits >= RegSize-1) |
| 4576 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
| 4577 | else if (NumSignBits > RegSize-8) |
| 4578 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
| 4579 | else if (NumZeroBits >= RegSize-9) |
| 4580 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
| 4581 | else if (NumSignBits > RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4582 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4583 | else if (NumZeroBits >= RegSize-17) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4584 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4585 | else if (NumSignBits > RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4586 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4587 | else if (NumZeroBits >= RegSize-33) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4588 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4589 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4590 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4591 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4592 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4593 | |
| 4594 | } |
| 4595 | } |
| 4596 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4597 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4598 | Parts[i] = P; |
| 4599 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4600 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4601 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4602 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4603 | Part += NumRegs; |
| 4604 | Parts.clear(); |
| 4605 | } |
| 4606 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4607 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4608 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4609 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4610 | } |
| 4611 | |
| 4612 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4613 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4614 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4615 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4616 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4617 | SDValue &Chain, SDValue *Flag) const { |
| 4618 | // Get the list of the values's legal parts. |
| 4619 | unsigned NumRegs = Regs.size(); |
| 4620 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4621 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4622 | MVT ValueVT = ValueVTs[Value]; |
| 4623 | unsigned NumParts = TLI->getNumRegisters(ValueVT); |
| 4624 | MVT RegisterVT = RegVTs[Value]; |
| 4625 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4626 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4627 | &Parts[Part], NumParts, RegisterVT); |
| 4628 | Part += NumParts; |
| 4629 | } |
| 4630 | |
| 4631 | // Copy the parts into the registers. |
| 4632 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4633 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4634 | SDValue Part; |
| 4635 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4636 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4637 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4638 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4639 | *Flag = Part.getValue(1); |
| 4640 | } |
| 4641 | Chains[i] = Part.getValue(0); |
| 4642 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4643 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4644 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4645 | // 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] | 4646 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4647 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4648 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4649 | // user as well as a successor (the TF operands are flagged to the user). |
| 4650 | // c1, f1 = CopyToReg |
| 4651 | // c2, f2 = CopyToReg |
| 4652 | // c3 = TokenFactor c1, c2 |
| 4653 | // ... |
| 4654 | // = op c3, ..., f2 |
| 4655 | Chain = Chains[NumRegs-1]; |
| 4656 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4657 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4658 | } |
| 4659 | |
| 4660 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4661 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4662 | /// values added into it. |
| 4663 | void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG, |
| 4664 | std::vector<SDValue> &Ops) const { |
| 4665 | MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
| 4666 | Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy)); |
| 4667 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4668 | unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]); |
| 4669 | MVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4670 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4671 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4672 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4673 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4674 | } |
| 4675 | } |
| 4676 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4677 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4678 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4679 | /// register class for the register. Otherwise, return null. |
| 4680 | static const TargetRegisterClass * |
| 4681 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4682 | const TargetLowering &TLI, |
| 4683 | const TargetRegisterInfo *TRI) { |
| 4684 | MVT FoundVT = MVT::Other; |
| 4685 | const TargetRegisterClass *FoundRC = 0; |
| 4686 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4687 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
| 4688 | MVT ThisVT = MVT::Other; |
| 4689 | |
| 4690 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4691 | // 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] | 4692 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4693 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4694 | I != E; ++I) { |
| 4695 | if (TLI.isTypeLegal(*I)) { |
| 4696 | // If we have already found this register in a different register class, |
| 4697 | // choose the one with the largest VT specified. For example, on |
| 4698 | // PowerPC, we favor f64 register classes over f32. |
| 4699 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
| 4700 | ThisVT = *I; |
| 4701 | break; |
| 4702 | } |
| 4703 | } |
| 4704 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4705 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4706 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4707 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4708 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4709 | // frame pointer in functions that need it (due to them not being taken |
| 4710 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4711 | // yet). This is a slight code pessimization, but should still work. |
| 4712 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4713 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4714 | if (*I == Reg) { |
| 4715 | // We found a matching register class. Keep looking at others in case |
| 4716 | // we find one with larger registers that this physreg is also in. |
| 4717 | FoundRC = RC; |
| 4718 | FoundVT = ThisVT; |
| 4719 | break; |
| 4720 | } |
| 4721 | } |
| 4722 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4723 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4724 | |
| 4725 | |
| 4726 | namespace llvm { |
| 4727 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4728 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4729 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4730 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4731 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4732 | /// CallOperand - If this is the result output operand or a clobber |
| 4733 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4734 | /// This gets modified as the asm is processed. |
| 4735 | SDValue CallOperand; |
| 4736 | |
| 4737 | /// AssignedRegs - If this is a register or register class operand, this |
| 4738 | /// contains the set of register corresponding to the operand. |
| 4739 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4740 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4741 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4742 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4743 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4744 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4745 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4746 | /// busy in OutputRegs/InputRegs. |
| 4747 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4748 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4749 | std::set<unsigned> &InputRegs, |
| 4750 | const TargetRegisterInfo &TRI) const { |
| 4751 | if (isOutReg) { |
| 4752 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4753 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4754 | } |
| 4755 | if (isInReg) { |
| 4756 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4757 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4758 | } |
| 4759 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4760 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4761 | /// getCallOperandValMVT - Return the MVT of the Value* that this operand |
| 4762 | /// corresponds to. If there is no Value* for this operand, it returns |
| 4763 | /// MVT::Other. |
| 4764 | MVT getCallOperandValMVT(const TargetLowering &TLI, |
| 4765 | const TargetData *TD) const { |
| 4766 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4767 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4768 | if (isa<BasicBlock>(CallOperandVal)) |
| 4769 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4770 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4771 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4772 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4773 | // If this is an indirect operand, the operand is a pointer to the |
| 4774 | // accessed type. |
| 4775 | if (isIndirect) |
| 4776 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4777 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4778 | // If OpTy is not a single value, it may be a struct/union that we |
| 4779 | // can tile with integers. |
| 4780 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4781 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4782 | switch (BitSize) { |
| 4783 | default: break; |
| 4784 | case 1: |
| 4785 | case 8: |
| 4786 | case 16: |
| 4787 | case 32: |
| 4788 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4789 | case 128: |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4790 | OpTy = IntegerType::get(BitSize); |
| 4791 | break; |
| 4792 | } |
| 4793 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4794 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4795 | return TLI.getValueType(OpTy, true); |
| 4796 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4797 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4798 | private: |
| 4799 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4800 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4801 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4802 | const TargetRegisterInfo &TRI) { |
| 4803 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4804 | Regs.insert(Reg); |
| 4805 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4806 | for (; *Aliases; ++Aliases) |
| 4807 | Regs.insert(*Aliases); |
| 4808 | } |
| 4809 | }; |
| 4810 | } // end llvm namespace. |
| 4811 | |
| 4812 | |
| 4813 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4814 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4815 | /// register allocator handle the assignment process. However, if the asm uses |
| 4816 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4817 | /// allocation. This produces generally horrible, but correct, code. |
| 4818 | /// |
| 4819 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4820 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4821 | /// |
| 4822 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4823 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4824 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4825 | std::set<unsigned> &InputRegs) { |
| 4826 | // Compute whether this value requires an input register, an output register, |
| 4827 | // or both. |
| 4828 | bool isOutReg = false; |
| 4829 | bool isInReg = false; |
| 4830 | switch (OpInfo.Type) { |
| 4831 | case InlineAsm::isOutput: |
| 4832 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4833 | |
| 4834 | // 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] | 4835 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4836 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4837 | break; |
| 4838 | case InlineAsm::isInput: |
| 4839 | isInReg = true; |
| 4840 | isOutReg = false; |
| 4841 | break; |
| 4842 | case InlineAsm::isClobber: |
| 4843 | isOutReg = true; |
| 4844 | isInReg = true; |
| 4845 | break; |
| 4846 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4847 | |
| 4848 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4849 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4850 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4851 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4852 | // If this is a constraint for a single physreg, or a constraint for a |
| 4853 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4854 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4855 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4856 | OpInfo.ConstraintVT); |
| 4857 | |
| 4858 | unsigned NumRegs = 1; |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4859 | if (OpInfo.ConstraintVT != MVT::Other) { |
| 4860 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4861 | // cast of the input value. More generally, handle any case where the input |
| 4862 | // value disagrees with the register class we plan to stick this in. |
| 4863 | if (OpInfo.Type == InlineAsm::isInput && |
| 4864 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
| 4865 | // Try to convert to the first MVT that the reg class contains. If the |
| 4866 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4867 | // vector types). |
| 4868 | MVT RegVT = *PhysReg.second->vt_begin(); |
| 4869 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4870 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4871 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4872 | OpInfo.ConstraintVT = RegVT; |
| 4873 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4874 | // If the input is a FP value and we want it in FP registers, do a |
| 4875 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4876 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4877 | // machine. |
| 4878 | RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4879 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4880 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4881 | OpInfo.ConstraintVT = RegVT; |
| 4882 | } |
| 4883 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4884 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4885 | NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4886 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4887 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4888 | MVT RegVT; |
| 4889 | MVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4890 | |
| 4891 | // If this is a constraint for a specific physical register, like {r17}, |
| 4892 | // assign it now. |
| 4893 | if (PhysReg.first) { |
| 4894 | if (OpInfo.ConstraintVT == MVT::Other) |
| 4895 | ValueVT = *PhysReg.second->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4896 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4897 | // Get the actual register value type. This is important, because the user |
| 4898 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4899 | // remember that AX is actually i16 to get the right extension. |
| 4900 | RegVT = *PhysReg.second->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4901 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4902 | // This is a explicit reference to a physical register. |
| 4903 | Regs.push_back(PhysReg.first); |
| 4904 | |
| 4905 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4906 | if (NumRegs != 1) { |
| 4907 | TargetRegisterClass::iterator I = PhysReg.second->begin(); |
| 4908 | for (; *I != PhysReg.first; ++I) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4909 | assert(I != PhysReg.second->end() && "Didn't find reg!"); |
| 4910 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4911 | // Already added the first reg. |
| 4912 | --NumRegs; ++I; |
| 4913 | for (; NumRegs; --NumRegs, ++I) { |
| 4914 | assert(I != PhysReg.second->end() && "Ran out of registers to allocate!"); |
| 4915 | Regs.push_back(*I); |
| 4916 | } |
| 4917 | } |
| 4918 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4919 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4920 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4921 | return; |
| 4922 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4923 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4924 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 4925 | // for this reference. |
| 4926 | std::vector<unsigned> RegClassRegs; |
| 4927 | const TargetRegisterClass *RC = PhysReg.second; |
| 4928 | if (RC) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4929 | // If this is a tied register, our regalloc doesn't know how to maintain |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4930 | // the constraint, so we have to pick a register to pin the input/output to. |
| 4931 | // If it isn't a matched constraint, go ahead and create vreg and let the |
| 4932 | // regalloc do its thing. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4933 | if (!OpInfo.hasMatchingInput()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4934 | RegVT = *PhysReg.second->vt_begin(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4935 | if (OpInfo.ConstraintVT == MVT::Other) |
| 4936 | ValueVT = RegVT; |
| 4937 | |
| 4938 | // Create the appropriate number of virtual registers. |
| 4939 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 4940 | for (; NumRegs; --NumRegs) |
| 4941 | Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4942 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4943 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 4944 | return; |
| 4945 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4946 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4947 | // Otherwise, we can't allocate it. Let the code below figure out how to |
| 4948 | // maintain these constraints. |
| 4949 | RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4950 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4951 | } else { |
| 4952 | // This is a reference to a register class that doesn't directly correspond |
| 4953 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 4954 | // registers from the class. |
| 4955 | RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4956 | OpInfo.ConstraintVT); |
| 4957 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4958 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4959 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 4960 | unsigned NumAllocated = 0; |
| 4961 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 4962 | unsigned Reg = RegClassRegs[i]; |
| 4963 | // See if this register is available. |
| 4964 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 4965 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 4966 | // Make sure we find consecutive registers. |
| 4967 | NumAllocated = 0; |
| 4968 | continue; |
| 4969 | } |
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 | // Check to see if this register is allocatable (i.e. don't give out the |
| 4972 | // stack pointer). |
| 4973 | if (RC == 0) { |
| 4974 | RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 4975 | if (!RC) { // Couldn't allocate this register. |
| 4976 | // Reset NumAllocated to make sure we return consecutive registers. |
| 4977 | NumAllocated = 0; |
| 4978 | continue; |
| 4979 | } |
| 4980 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4981 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4982 | // Okay, this register is good, we can use it. |
| 4983 | ++NumAllocated; |
| 4984 | |
| 4985 | // If we allocated enough consecutive registers, succeed. |
| 4986 | if (NumAllocated == NumRegs) { |
| 4987 | unsigned RegStart = (i-NumAllocated)+1; |
| 4988 | unsigned RegEnd = i+1; |
| 4989 | // Mark all of the allocated registers used. |
| 4990 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 4991 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4992 | |
| 4993 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4994 | OpInfo.ConstraintVT); |
| 4995 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 4996 | return; |
| 4997 | } |
| 4998 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4999 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5000 | // Otherwise, we couldn't allocate enough registers for this. |
| 5001 | } |
| 5002 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5003 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 5004 | /// processed uses a memory 'm' constraint. |
| 5005 | static bool |
| 5006 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 5007 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5008 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 5009 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 5010 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 5011 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 5012 | if (CType == TargetLowering::C_Memory) |
| 5013 | return true; |
| 5014 | } |
| 5015 | } |
| 5016 | |
| 5017 | return false; |
| 5018 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5019 | |
| 5020 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 5021 | /// |
| 5022 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 5023 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 5024 | |
| 5025 | /// ConstraintOperands - Information about all of the constraints. |
| 5026 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
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 | SDValue Chain = getRoot(); |
| 5029 | SDValue Flag; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5030 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5031 | std::set<unsigned> OutputRegs, InputRegs; |
| 5032 | |
| 5033 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 5034 | // ConstraintOperands list. |
| 5035 | std::vector<InlineAsm::ConstraintInfo> |
| 5036 | ConstraintInfos = IA->ParseConstraints(); |
| 5037 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5038 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5039 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5040 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5041 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5042 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5043 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5044 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5045 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5046 | MVT OpVT = MVT::Other; |
| 5047 | |
| 5048 | // Compute the value type for each operand. |
| 5049 | switch (OpInfo.Type) { |
| 5050 | case InlineAsm::isOutput: |
| 5051 | // Indirect outputs just consume an argument. |
| 5052 | if (OpInfo.isIndirect) { |
| 5053 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5054 | break; |
| 5055 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5056 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5057 | // The return value of the call is this value. As such, there is no |
| 5058 | // corresponding argument. |
| 5059 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5060 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5061 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5062 | } else { |
| 5063 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5064 | OpVT = TLI.getValueType(CS.getType()); |
| 5065 | } |
| 5066 | ++ResNo; |
| 5067 | break; |
| 5068 | case InlineAsm::isInput: |
| 5069 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5070 | break; |
| 5071 | case InlineAsm::isClobber: |
| 5072 | // Nothing to do. |
| 5073 | break; |
| 5074 | } |
| 5075 | |
| 5076 | // If this is an input or an indirect output, process the call argument. |
| 5077 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5078 | if (OpInfo.CallOperandVal) { |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5079 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5080 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5081 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5082 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5083 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5084 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5085 | OpVT = OpInfo.getCallOperandValMVT(TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5086 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5087 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5088 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5089 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5090 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5091 | // Second pass over the constraints: compute which constraint option to use |
| 5092 | // and assign registers to constraints that want a specific physreg. |
| 5093 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5094 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5095 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5096 | // 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] | 5097 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5098 | // other is floating point, or their sizes are different, flag it as an |
| 5099 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5100 | if (OpInfo.hasMatchingInput()) { |
| 5101 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5102 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5103 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5104 | Input.ConstraintVT.isInteger()) || |
| 5105 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5106 | Input.ConstraintVT.getSizeInBits())) { |
| 5107 | cerr << "Unsupported asm: input constraint with a matching output " |
| 5108 | << "constraint of incompatible type!\n"; |
| 5109 | exit(1); |
| 5110 | } |
| 5111 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5112 | } |
| 5113 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5114 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5115 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5116 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5117 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5118 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5119 | // need to to provide an address for the memory input. |
| 5120 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5121 | !OpInfo.isIndirect) { |
| 5122 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5123 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5124 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5125 | // Memory operands really want the address of the value. If we don't have |
| 5126 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5127 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5128 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5129 | // If the operand is a float, integer, or vector constant, spill to a |
| 5130 | // constant pool entry to get its address. |
| 5131 | Value *OpVal = OpInfo.CallOperandVal; |
| 5132 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5133 | isa<ConstantVector>(OpVal)) { |
| 5134 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5135 | TLI.getPointerTy()); |
| 5136 | } else { |
| 5137 | // Otherwise, create a stack slot and emit a store to it before the |
| 5138 | // asm. |
| 5139 | const Type *Ty = OpVal->getType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5140 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5141 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5142 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5143 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5144 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5145 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5146 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5147 | OpInfo.CallOperand = StackSlot; |
| 5148 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5149 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5150 | // There is no longer a Value* corresponding to this operand. |
| 5151 | OpInfo.CallOperandVal = 0; |
| 5152 | // It is now an indirect operand. |
| 5153 | OpInfo.isIndirect = true; |
| 5154 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5155 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5156 | // If this constraint is for a specific register, allocate it before |
| 5157 | // anything else. |
| 5158 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5159 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5160 | } |
| 5161 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5162 | |
| 5163 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5164 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5165 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5166 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5167 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5168 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5169 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5170 | // to be. |
| 5171 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5172 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5173 | } |
| 5174 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5175 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5176 | std::vector<SDValue> AsmNodeOperands; |
| 5177 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5178 | AsmNodeOperands.push_back( |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5179 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5180 | |
| 5181 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5182 | // Loop over all of the inputs, copying the operand values into the |
| 5183 | // appropriate registers and processing the output regs. |
| 5184 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5185 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5186 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5187 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5188 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5189 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5190 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5191 | |
| 5192 | switch (OpInfo.Type) { |
| 5193 | case InlineAsm::isOutput: { |
| 5194 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5195 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5196 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5197 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5198 | |
| 5199 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5200 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5201 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5202 | TLI.getPointerTy())); |
| 5203 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5204 | break; |
| 5205 | } |
| 5206 | |
| 5207 | // Otherwise, this is a register or register class output. |
| 5208 | |
| 5209 | // Copy the output from the appropriate register. Find a register that |
| 5210 | // we can use. |
| 5211 | if (OpInfo.AssignedRegs.Regs.empty()) { |
| 5212 | cerr << "Couldn't allocate output reg for constraint '" |
| 5213 | << OpInfo.ConstraintCode << "'!\n"; |
| 5214 | exit(1); |
| 5215 | } |
| 5216 | |
| 5217 | // If this is an indirect operand, store through the pointer after the |
| 5218 | // asm. |
| 5219 | if (OpInfo.isIndirect) { |
| 5220 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5221 | OpInfo.CallOperandVal)); |
| 5222 | } else { |
| 5223 | // This is the result value of the call. |
| 5224 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5225 | // Concatenate this output onto the outputs list. |
| 5226 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5227 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5228 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5229 | // Add information to the INLINEASM node to know that this register is |
| 5230 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5231 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5232 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5233 | 2 /* REGDEF */ , |
| 5234 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5235 | break; |
| 5236 | } |
| 5237 | case InlineAsm::isInput: { |
| 5238 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5239 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5240 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5241 | // If this is required to match an output register we have already set, |
| 5242 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5243 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5244 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5245 | // Scan until we find the definition we already emitted of this operand. |
| 5246 | // When we find it, create a RegsForValue operand. |
| 5247 | unsigned CurOp = 2; // The first operand. |
| 5248 | for (; OperandNo; --OperandNo) { |
| 5249 | // Advance to the next operand. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5250 | unsigned NumOps = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5251 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5252 | assert(((NumOps & 7) == 2 /*REGDEF*/ || |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5253 | (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5254 | (NumOps & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5255 | "Skipped past definitions?"); |
| 5256 | CurOp += (NumOps>>3)+1; |
| 5257 | } |
| 5258 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5259 | unsigned NumOps = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5260 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5261 | if ((NumOps & 7) == 2 /*REGDEF*/ |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5262 | || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5263 | // Add NumOps>>3 registers to MatchedRegs. |
| 5264 | RegsForValue MatchedRegs; |
| 5265 | MatchedRegs.TLI = &TLI; |
| 5266 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
| 5267 | MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType()); |
| 5268 | for (unsigned i = 0, e = NumOps>>3; i != e; ++i) { |
| 5269 | unsigned Reg = |
| 5270 | cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg(); |
| 5271 | MatchedRegs.Regs.push_back(Reg); |
| 5272 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5273 | |
| 5274 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5275 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5276 | Chain, &Flag); |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5277 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5278 | break; |
| 5279 | } else { |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5280 | assert(((NumOps & 7) == 4) && "Unknown matching constraint!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5281 | assert((NumOps >> 3) == 1 && "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5282 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5283 | AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5284 | TLI.getPointerTy())); |
| 5285 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5286 | break; |
| 5287 | } |
| 5288 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5289 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5290 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5291 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5292 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5293 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5294 | std::vector<SDValue> Ops; |
| 5295 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5296 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5297 | if (Ops.empty()) { |
| 5298 | cerr << "Invalid operand for inline asm constraint '" |
| 5299 | << OpInfo.ConstraintCode << "'!\n"; |
| 5300 | exit(1); |
| 5301 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5302 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5303 | // Add information to the INLINEASM node to know about this input. |
| 5304 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5305 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5306 | TLI.getPointerTy())); |
| 5307 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5308 | break; |
| 5309 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5310 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5311 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5312 | "Memory operands expect pointer values"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5313 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5314 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5315 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5316 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5317 | TLI.getPointerTy())); |
| 5318 | AsmNodeOperands.push_back(InOperandVal); |
| 5319 | break; |
| 5320 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5321 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5322 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5323 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5324 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5325 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5326 | "Don't know how to handle indirect register inputs yet!"); |
| 5327 | |
| 5328 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5329 | if (OpInfo.AssignedRegs.Regs.empty()) { |
| 5330 | cerr << "Couldn't allocate output reg for constraint '" |
| 5331 | << OpInfo.ConstraintCode << "'!\n"; |
| 5332 | exit(1); |
| 5333 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5334 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5335 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5336 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5337 | |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5338 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, |
| 5339 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5340 | break; |
| 5341 | } |
| 5342 | case InlineAsm::isClobber: { |
| 5343 | // Add the clobbered value to the operand list, so that the register |
| 5344 | // allocator is aware that the physreg got clobbered. |
| 5345 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5346 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
| 5347 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5348 | break; |
| 5349 | } |
| 5350 | } |
| 5351 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5352 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5353 | // Finish up input operands. |
| 5354 | AsmNodeOperands[0] = Chain; |
| 5355 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5356 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5357 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5358 | DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2, |
| 5359 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5360 | Flag = Chain.getValue(1); |
| 5361 | |
| 5362 | // If this asm returns a register value, copy the result from that register |
| 5363 | // and set it as the value of the call. |
| 5364 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5365 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5366 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5367 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5368 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5369 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
| 5370 | MVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5371 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5372 | // If any of the results of the inline asm is a vector, it may have the |
| 5373 | // wrong width/num elts. This can happen for register classes that can |
| 5374 | // contain multiple different value types. The preg or vreg allocated may |
| 5375 | // not have the same VT as was expected. Convert it to the right type |
| 5376 | // with bit_convert. |
| 5377 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5378 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5379 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5380 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5381 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5382 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5383 | // If a result value was tied to an input value, the computed result may |
| 5384 | // have a wider width than the expected result. Extract the relevant |
| 5385 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5386 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5387 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5388 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5389 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5390 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5391 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5392 | setValue(CS.getInstruction(), Val); |
| 5393 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5394 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5395 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5396 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5397 | // Process indirect outputs, first output all of the flagged copies out of |
| 5398 | // physregs. |
| 5399 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5400 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5401 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5402 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5403 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5404 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
| 5405 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5406 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5407 | // Emit the non-flagged stores from the physregs. |
| 5408 | SmallVector<SDValue, 8> OutChains; |
| 5409 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5410 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5411 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5412 | getValue(StoresToEmit[i].second), |
| 5413 | StoresToEmit[i].second, 0)); |
| 5414 | if (!OutChains.empty()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5415 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5416 | &OutChains[0], OutChains.size()); |
| 5417 | DAG.setRoot(Chain); |
| 5418 | } |
| 5419 | |
| 5420 | |
| 5421 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5422 | SDValue Src = getValue(I.getOperand(0)); |
| 5423 | |
| 5424 | MVT IntPtr = TLI.getPointerTy(); |
| 5425 | |
| 5426 | if (IntPtr.bitsLT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5427 | Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5428 | else if (IntPtr.bitsGT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5429 | Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5430 | |
| 5431 | // Scale the source by the type size. |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5432 | uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5433 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5434 | Src, DAG.getIntPtrConstant(ElementSize)); |
| 5435 | |
| 5436 | TargetLowering::ArgListTy Args; |
| 5437 | TargetLowering::ArgListEntry Entry; |
| 5438 | Entry.Node = Src; |
| 5439 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5440 | Args.push_back(Entry); |
| 5441 | |
| 5442 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5443 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5444 | CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5445 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5446 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5447 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5448 | DAG.setRoot(Result.second); |
| 5449 | } |
| 5450 | |
| 5451 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5452 | TargetLowering::ArgListTy Args; |
| 5453 | TargetLowering::ArgListEntry Entry; |
| 5454 | Entry.Node = getValue(I.getOperand(0)); |
| 5455 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5456 | Args.push_back(Entry); |
| 5457 | MVT IntPtr = TLI.getPointerTy(); |
| 5458 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5459 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false, |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5460 | CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5461 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5462 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5463 | DAG.setRoot(Result.second); |
| 5464 | } |
| 5465 | |
| 5466 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5467 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5468 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5469 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5470 | DAG.getSrcValue(I.getOperand(1)))); |
| 5471 | } |
| 5472 | |
| 5473 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5474 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5475 | getRoot(), getValue(I.getOperand(0)), |
| 5476 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5477 | setValue(&I, V); |
| 5478 | DAG.setRoot(V.getValue(1)); |
| 5479 | } |
| 5480 | |
| 5481 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5482 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5483 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5484 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5485 | DAG.getSrcValue(I.getOperand(1)))); |
| 5486 | } |
| 5487 | |
| 5488 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5489 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5490 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5491 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5492 | getValue(I.getOperand(2)), |
| 5493 | DAG.getSrcValue(I.getOperand(1)), |
| 5494 | DAG.getSrcValue(I.getOperand(2)))); |
| 5495 | } |
| 5496 | |
| 5497 | /// TargetLowering::LowerArguments - This is the default LowerArguments |
| 5498 | /// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5499 | /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5500 | /// integrated into SDISel. |
| 5501 | void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5502 | SmallVectorImpl<SDValue> &ArgValues, |
| 5503 | DebugLoc dl) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5504 | // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node. |
| 5505 | SmallVector<SDValue, 3+16> Ops; |
| 5506 | Ops.push_back(DAG.getRoot()); |
| 5507 | Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy())); |
| 5508 | Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy())); |
| 5509 | |
| 5510 | // Add one result value for each formal argument. |
| 5511 | SmallVector<MVT, 16> RetVals; |
| 5512 | unsigned j = 1; |
| 5513 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5514 | I != E; ++I, ++j) { |
| 5515 | SmallVector<MVT, 4> ValueVTs; |
| 5516 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5517 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5518 | Value != NumValues; ++Value) { |
| 5519 | MVT VT = ValueVTs[Value]; |
| 5520 | const Type *ArgTy = VT.getTypeForMVT(); |
| 5521 | ISD::ArgFlagsTy Flags; |
| 5522 | unsigned OriginalAlignment = |
| 5523 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5524 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5525 | if (F.paramHasAttr(j, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5526 | Flags.setZExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5527 | if (F.paramHasAttr(j, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5528 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5529 | if (F.paramHasAttr(j, Attribute::InReg)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5530 | Flags.setInReg(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5531 | if (F.paramHasAttr(j, Attribute::StructRet)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5532 | Flags.setSRet(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5533 | if (F.paramHasAttr(j, Attribute::ByVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5534 | Flags.setByVal(); |
| 5535 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5536 | const Type *ElementTy = Ty->getElementType(); |
| 5537 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5538 | unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5539 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5540 | // this info is not there but there are cases it cannot get right. |
| 5541 | if (F.getParamAlignment(j)) |
| 5542 | FrameAlign = F.getParamAlignment(j); |
| 5543 | Flags.setByValAlign(FrameAlign); |
| 5544 | Flags.setByValSize(FrameSize); |
| 5545 | } |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5546 | if (F.paramHasAttr(j, Attribute::Nest)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5547 | Flags.setNest(); |
| 5548 | Flags.setOrigAlign(OriginalAlignment); |
| 5549 | |
| 5550 | MVT RegisterVT = getRegisterType(VT); |
| 5551 | unsigned NumRegs = getNumRegisters(VT); |
| 5552 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5553 | RetVals.push_back(RegisterVT); |
| 5554 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5555 | if (NumRegs > 1 && i == 0) |
| 5556 | MyFlags.setSplit(); |
| 5557 | // if it isn't first piece, alignment must be 1 |
| 5558 | else if (i > 0) |
| 5559 | MyFlags.setOrigAlign(1); |
| 5560 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5561 | } |
| 5562 | } |
| 5563 | } |
| 5564 | |
| 5565 | RetVals.push_back(MVT::Other); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5566 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5567 | // Create the node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5568 | SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5569 | DAG.getVTList(&RetVals[0], RetVals.size()), |
| 5570 | &Ops[0], Ops.size()).getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5571 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5572 | // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but |
| 5573 | // allows exposing the loads that may be part of the argument access to the |
| 5574 | // first DAGCombiner pass. |
| 5575 | SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5576 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5577 | // The number of results should match up, except that the lowered one may have |
| 5578 | // an extra flag result. |
| 5579 | assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() || |
| 5580 | (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() && |
| 5581 | TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag)) |
| 5582 | && "Lowering produced unexpected number of results!"); |
| 5583 | |
| 5584 | // The FORMAL_ARGUMENTS node itself is likely no longer needed. |
| 5585 | if (Result != TmpRes.getNode() && Result->use_empty()) { |
| 5586 | HandleSDNode Dummy(DAG.getRoot()); |
| 5587 | DAG.RemoveDeadNode(Result); |
| 5588 | } |
| 5589 | |
| 5590 | Result = TmpRes.getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5591 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5592 | unsigned NumArgRegs = Result->getNumValues() - 1; |
| 5593 | DAG.setRoot(SDValue(Result, NumArgRegs)); |
| 5594 | |
| 5595 | // Set up the return result vector. |
| 5596 | unsigned i = 0; |
| 5597 | unsigned Idx = 1; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5598 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5599 | ++I, ++Idx) { |
| 5600 | SmallVector<MVT, 4> ValueVTs; |
| 5601 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5602 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5603 | Value != NumValues; ++Value) { |
| 5604 | MVT VT = ValueVTs[Value]; |
| 5605 | MVT PartVT = getRegisterType(VT); |
| 5606 | |
| 5607 | unsigned NumParts = getNumRegisters(VT); |
| 5608 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5609 | for (unsigned j = 0; j != NumParts; ++j) |
| 5610 | Parts[j] = SDValue(Result, i++); |
| 5611 | |
| 5612 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5613 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5614 | AssertOp = ISD::AssertSext; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5615 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5616 | AssertOp = ISD::AssertZext; |
| 5617 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5618 | ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts, |
| 5619 | PartVT, VT, AssertOp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5620 | } |
| 5621 | } |
| 5622 | assert(i == NumArgRegs && "Argument register count mismatch!"); |
| 5623 | } |
| 5624 | |
| 5625 | |
| 5626 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
| 5627 | /// implementation, which just inserts an ISD::CALL node, which is later custom |
| 5628 | /// lowered by the target to something concrete. FIXME: When all targets are |
| 5629 | /// migrated to using ISD::CALL, this hook should be integrated into SDISel. |
| 5630 | std::pair<SDValue, SDValue> |
| 5631 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5632 | bool RetSExt, bool RetZExt, bool isVarArg, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5633 | bool isInreg, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5634 | unsigned CallingConv, bool isTailCall, |
| 5635 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5636 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5637 | assert((!isTailCall || PerformTailCallOpt) && |
| 5638 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5639 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5640 | SmallVector<SDValue, 32> Ops; |
| 5641 | Ops.push_back(Chain); // Op#0 - Chain |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5642 | Ops.push_back(Callee); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5643 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5644 | // Handle all of the outgoing arguments. |
| 5645 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 5646 | SmallVector<MVT, 4> ValueVTs; |
| 5647 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5648 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5649 | Value != NumValues; ++Value) { |
| 5650 | MVT VT = ValueVTs[Value]; |
| 5651 | const Type *ArgTy = VT.getTypeForMVT(); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5652 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5653 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5654 | ISD::ArgFlagsTy Flags; |
| 5655 | unsigned OriginalAlignment = |
| 5656 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5657 | |
| 5658 | if (Args[i].isZExt) |
| 5659 | Flags.setZExt(); |
| 5660 | if (Args[i].isSExt) |
| 5661 | Flags.setSExt(); |
| 5662 | if (Args[i].isInReg) |
| 5663 | Flags.setInReg(); |
| 5664 | if (Args[i].isSRet) |
| 5665 | Flags.setSRet(); |
| 5666 | if (Args[i].isByVal) { |
| 5667 | Flags.setByVal(); |
| 5668 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5669 | const Type *ElementTy = Ty->getElementType(); |
| 5670 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5671 | unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5672 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5673 | // info is not there but there are cases it cannot get right. |
| 5674 | if (Args[i].Alignment) |
| 5675 | FrameAlign = Args[i].Alignment; |
| 5676 | Flags.setByValAlign(FrameAlign); |
| 5677 | Flags.setByValSize(FrameSize); |
| 5678 | } |
| 5679 | if (Args[i].isNest) |
| 5680 | Flags.setNest(); |
| 5681 | Flags.setOrigAlign(OriginalAlignment); |
| 5682 | |
| 5683 | MVT PartVT = getRegisterType(VT); |
| 5684 | unsigned NumParts = getNumRegisters(VT); |
| 5685 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5686 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5687 | |
| 5688 | if (Args[i].isSExt) |
| 5689 | ExtendKind = ISD::SIGN_EXTEND; |
| 5690 | else if (Args[i].isZExt) |
| 5691 | ExtendKind = ISD::ZERO_EXTEND; |
| 5692 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5693 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5694 | |
| 5695 | for (unsigned i = 0; i != NumParts; ++i) { |
| 5696 | // if it isn't first piece, alignment must be 1 |
| 5697 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5698 | if (NumParts > 1 && i == 0) |
| 5699 | MyFlags.setSplit(); |
| 5700 | else if (i != 0) |
| 5701 | MyFlags.setOrigAlign(1); |
| 5702 | |
| 5703 | Ops.push_back(Parts[i]); |
| 5704 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5705 | } |
| 5706 | } |
| 5707 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5708 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5709 | // Figure out the result value types. We start by making a list of |
| 5710 | // the potentially illegal return value types. |
| 5711 | SmallVector<MVT, 4> LoweredRetTys; |
| 5712 | SmallVector<MVT, 4> RetTys; |
| 5713 | ComputeValueVTs(*this, RetTy, RetTys); |
| 5714 | |
| 5715 | // Then we translate that to a list of legal types. |
| 5716 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5717 | MVT VT = RetTys[I]; |
| 5718 | MVT RegisterVT = getRegisterType(VT); |
| 5719 | unsigned NumRegs = getNumRegisters(VT); |
| 5720 | for (unsigned i = 0; i != NumRegs; ++i) |
| 5721 | LoweredRetTys.push_back(RegisterVT); |
| 5722 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5723 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5724 | LoweredRetTys.push_back(MVT::Other); // Always has a chain. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5725 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5726 | // Create the CALL node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5727 | SDValue Res = DAG.getCall(CallingConv, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5728 | isVarArg, isTailCall, isInreg, |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5729 | DAG.getVTList(&LoweredRetTys[0], |
| 5730 | LoweredRetTys.size()), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5731 | &Ops[0], Ops.size() |
| 5732 | ); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5733 | Chain = Res.getValue(LoweredRetTys.size() - 1); |
| 5734 | |
| 5735 | // Gather up the call result into a single value. |
Dan Gohman | b5cc34d | 2008-10-07 00:12:37 +0000 | [diff] [blame] | 5736 | if (RetTy != Type::VoidTy && !RetTys.empty()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5737 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5738 | |
| 5739 | if (RetSExt) |
| 5740 | AssertOp = ISD::AssertSext; |
| 5741 | else if (RetZExt) |
| 5742 | AssertOp = ISD::AssertZext; |
| 5743 | |
| 5744 | SmallVector<SDValue, 4> ReturnValues; |
| 5745 | unsigned RegNo = 0; |
| 5746 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5747 | MVT VT = RetTys[I]; |
| 5748 | MVT RegisterVT = getRegisterType(VT); |
| 5749 | unsigned NumRegs = getNumRegisters(VT); |
| 5750 | unsigned RegNoEnd = NumRegs + RegNo; |
| 5751 | SmallVector<SDValue, 4> Results; |
| 5752 | for (; RegNo != RegNoEnd; ++RegNo) |
| 5753 | Results.push_back(Res.getValue(RegNo)); |
| 5754 | SDValue ReturnValue = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5755 | getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5756 | AssertOp); |
| 5757 | ReturnValues.push_back(ReturnValue); |
| 5758 | } |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5759 | Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 5760 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5761 | &ReturnValues[0], ReturnValues.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5762 | } |
| 5763 | |
| 5764 | return std::make_pair(Res, Chain); |
| 5765 | } |
| 5766 | |
Duncan Sands | 9fbc7e2 | 2009-01-21 09:00:29 +0000 | [diff] [blame] | 5767 | void TargetLowering::LowerOperationWrapper(SDNode *N, |
| 5768 | SmallVectorImpl<SDValue> &Results, |
| 5769 | SelectionDAG &DAG) { |
| 5770 | SDValue Res = LowerOperation(SDValue(N, 0), DAG); |
Sanjiv Gupta | bb326bb | 2009-01-21 04:48:39 +0000 | [diff] [blame] | 5771 | if (Res.getNode()) |
| 5772 | Results.push_back(Res); |
| 5773 | } |
| 5774 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5775 | SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
| 5776 | assert(0 && "LowerOperation not implemented for this target!"); |
| 5777 | abort(); |
| 5778 | return SDValue(); |
| 5779 | } |
| 5780 | |
| 5781 | |
| 5782 | void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) { |
| 5783 | SDValue Op = getValue(V); |
| 5784 | assert((Op.getOpcode() != ISD::CopyFromReg || |
| 5785 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
| 5786 | "Copy from a reg to the same reg!"); |
| 5787 | assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); |
| 5788 | |
| 5789 | RegsForValue RFV(TLI, Reg, V->getType()); |
| 5790 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5791 | RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5792 | PendingExports.push_back(Chain); |
| 5793 | } |
| 5794 | |
| 5795 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 5796 | |
| 5797 | void SelectionDAGISel:: |
| 5798 | LowerArguments(BasicBlock *LLVMBB) { |
| 5799 | // If this is the entry block, emit arguments. |
| 5800 | Function &F = *LLVMBB->getParent(); |
| 5801 | SDValue OldRoot = SDL->DAG.getRoot(); |
| 5802 | SmallVector<SDValue, 16> Args; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5803 | TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5804 | |
| 5805 | unsigned a = 0; |
| 5806 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 5807 | AI != E; ++AI) { |
| 5808 | SmallVector<MVT, 4> ValueVTs; |
| 5809 | ComputeValueVTs(TLI, AI->getType(), ValueVTs); |
| 5810 | unsigned NumValues = ValueVTs.size(); |
| 5811 | if (!AI->use_empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5812 | SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues, |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 5813 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5814 | // If this argument is live outside of the entry block, insert a copy from |
| 5815 | // whereever we got it to the vreg that other BB's will reference it as. |
| 5816 | DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI); |
| 5817 | if (VMI != FuncInfo->ValueMap.end()) { |
| 5818 | SDL->CopyValueToVirtualRegister(AI, VMI->second); |
| 5819 | } |
| 5820 | } |
| 5821 | a += NumValues; |
| 5822 | } |
| 5823 | |
| 5824 | // Finally, if the target has anything special to do, allow it to do so. |
| 5825 | // FIXME: this should insert code into the DAG! |
| 5826 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5827 | } |
| 5828 | |
| 5829 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5830 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5831 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5832 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5833 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5834 | /// the end. |
| 5835 | /// |
| 5836 | void |
| 5837 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5838 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5839 | |
| 5840 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5841 | |
| 5842 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5843 | // from this block. |
| 5844 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5845 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5846 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5847 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5848 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5849 | // If this terminator has multiple identical successors (common for |
| 5850 | // switches), only handle each succ once. |
| 5851 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5852 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5853 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5854 | PHINode *PN; |
| 5855 | |
| 5856 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5857 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5858 | // emitted yet. |
| 5859 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5860 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5861 | // Ignore dead phi's. |
| 5862 | if (PN->use_empty()) continue; |
| 5863 | |
| 5864 | unsigned Reg; |
| 5865 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5866 | |
| 5867 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5868 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5869 | if (RegOut == 0) { |
| 5870 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5871 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5872 | } |
| 5873 | Reg = RegOut; |
| 5874 | } else { |
| 5875 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5876 | if (Reg == 0) { |
| 5877 | assert(isa<AllocaInst>(PHIOp) && |
| 5878 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5879 | "Didn't codegen value into a register!??"); |
| 5880 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5881 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5882 | } |
| 5883 | } |
| 5884 | |
| 5885 | // Remember that this register needs to added to the machine PHI node as |
| 5886 | // the input for this MBB. |
| 5887 | SmallVector<MVT, 4> ValueVTs; |
| 5888 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5889 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 5890 | MVT VT = ValueVTs[vti]; |
| 5891 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
| 5892 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5893 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5894 | Reg += NumRegisters; |
| 5895 | } |
| 5896 | } |
| 5897 | } |
| 5898 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5899 | } |
| 5900 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5901 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5902 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5903 | /// creating SelectionDAG nodes. |
| 5904 | /// |
| 5905 | bool |
| 5906 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 5907 | FastISel *F) { |
| 5908 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5909 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5910 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5911 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 5912 | |
| 5913 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5914 | // from this block. |
| 5915 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5916 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5917 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5918 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5919 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5920 | // If this terminator has multiple identical successors (common for |
| 5921 | // switches), only handle each succ once. |
| 5922 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5923 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5924 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5925 | PHINode *PN; |
| 5926 | |
| 5927 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5928 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5929 | // emitted yet. |
| 5930 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5931 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5932 | // Ignore dead phi's. |
| 5933 | if (PN->use_empty()) continue; |
| 5934 | |
| 5935 | // Only handle legal types. Two interesting things to note here. First, |
| 5936 | // by bailing out early, we may leave behind some dead instructions, |
| 5937 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 5938 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 5939 | // use CreateRegForValue to create registers, so it always creates |
| 5940 | // exactly one register for each non-void instruction. |
| 5941 | MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 5942 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 5943 | // Promote MVT::i1. |
| 5944 | if (VT == MVT::i1) |
| 5945 | VT = TLI.getTypeToTransformTo(VT); |
| 5946 | else { |
| 5947 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 5948 | return false; |
| 5949 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5950 | } |
| 5951 | |
| 5952 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5953 | |
| 5954 | unsigned Reg = F->getRegForValue(PHIOp); |
| 5955 | if (Reg == 0) { |
| 5956 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 5957 | return false; |
| 5958 | } |
| 5959 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 5960 | } |
| 5961 | } |
| 5962 | |
| 5963 | return true; |
| 5964 | } |